/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables - Design Tokens */
:root {
    /* Colors */
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(215, 25%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(215, 25%, 15%);
    --primary: hsl(215, 50%, 23%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(210, 15%, 95%);
    --secondary-foreground: hsl(215, 25%, 15%);
    --muted: hsl(210, 15%, 93%);
    --muted-foreground: hsl(215, 15%, 45%);
    --accent: hsl(38, 92%, 50%);
    --accent-foreground: hsl(215, 25%, 12%);
    --border: hsl(210, 20%, 88%);

    /* Gradients & Shadows */
    --hero-gradient: linear-gradient(135deg, hsl(215, 50%, 23%) 0%, hsl(215, 40%, 35%) 100%);
    --accent-gradient: linear-gradient(135deg, hsl(38, 92%, 50%) 0%, hsl(28, 90%, 55%) 100%);
    --gradient-subtle: linear-gradient(180deg, hsl(210, 15%, 95%) 0%, hsl(210, 20%, 98%) 100%);
    --gradient-accent-subtle: linear-gradient(135deg, hsla(38, 92%, 50%, 0.05) 0%, hsla(28, 90%, 55%, 0.08) 100%);
    --shadow-soft: 0 4px 20px -2px hsla(215, 50%, 23%, 0.1);
    --shadow-medium: 0 8px 30px -4px hsla(215, 50%, 23%, 0.15);
    --shadow-accent: 0 8px 25px -5px hsla(38, 92%, 50%, 0.4);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Sizing */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 5rem;
    /* Compensa a altura do header fixed */
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.bg-pattern {
    position: relative;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/pattern-light.png');
    background-size: 300px;
    opacity: 0.3;
    pointer-events: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: var(--shadow-medium);
}

.btn-accent {
    background: var(--accent-gradient);
    color: var(--accent-foreground);
    font-weight: 700;
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    filter: brightness(1.1);
}

.btn-hero {
    background: var(--accent-gradient);
    color: var(--accent-foreground);
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: var(--shadow-accent);
}

.btn-hero:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: transparent;
    color: var(--primary-foreground);
    border: 2px solid hsla(0, 0%, 100%, 0.3);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-hero-outline:hover {
    background: hsla(0, 0%, 100%, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid hsla(210, 20%, 88%, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    padding: 0.5rem 0;
    /* Adiciona padding vertical para dar espaço ao logo */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0;
    /* Garante alinhamento à esquerda */
    flex-shrink: 0;
    /* Impede que o logo seja comprimido */
}

.custom-logo {
    max-height: 40px;
    /* Reduzido para caber melhor no espaço disponível */
    width: auto;
    height: auto;
    object-fit: contain;
    /* Mantém proporções */
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    /* Melhora alinhamento vertical */
}

.logo-subtext {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1;
    /* Melhora alinhamento vertical */
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu li a {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsla(215, 25%, 15%, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    color: var(--primary);
}

.nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsla(215, 25%, 15%, 0.8);
}

.nav a:hover {
    color: var(--primary);
}

.header-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

.mobile-menu {
    display: none;
    padding: 1rem;
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid hsla(210, 20%, 88%, 0.5);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    margin: 0;
}

.mobile-menu-list li a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: hsla(215, 25%, 15%, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-list li a:hover,
.mobile-menu-list li.current-menu-item a,
.mobile-menu-list li.current_page_item a {
    color: var(--primary);
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: hsla(215, 25%, 15%, 0.8);
}

.mobile-menu-footer {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(215, 50%, 23%, 0.95), hsla(215, 50%, 23%, 0.8), hsla(215, 50%, 23%, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsla(38, 92%, 50%, 0.2);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 2rem;
    max-width: 36rem;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsla(0, 0%, 100%, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-benefit svg {
    color: var(--accent);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6rem;
    background: linear-gradient(to top, var(--background), transparent);
    z-index: 10;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 4rem;
}

.section-label {
    display: block;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

/* Services Section */
.services {
    background: var(--gradient-subtle);
    position: relative;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.service-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 1.5rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background: hsla(38, 92%, 50%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
}

.service-link:hover {
    opacity: 0.8;
}

.services-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

/* Why Choose Us */
.why-choose-us {
    position: relative;
    overflow: hidden;
    background: var(--gradient-accent-subtle);
}

.why-grid {
    display: grid;
    gap: 3rem;
}

.why-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.why-content p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.features-grid {
    display: grid;
    gap: 1rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: hsla(38, 92%, 50%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.feature-card h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Testimonials */
.testimonials {
    background: hsla(210, 15%, 95%, 0.3);
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card {
    position: relative;
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-medium);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: hsla(38, 92%, 50%, 0.2);
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.rating svg {
    color: var(--accent);
    fill: var(--accent);
}

.testimonial-text {
    color: hsla(215, 25%, 15%, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
}

.author-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.service-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: hsla(38, 92%, 50%, 0.1);
    color: var(--accent);
}

/* Contact Section */
.contact {
    background: var(--hero-gradient);
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

.contact-content>p {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(4px);
}

.contact-item-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-foreground);
}

.contact-item-label {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
}

.contact-item-value {
    font-weight: 600;
    color: var(--primary-foreground);
}

.contact-item a:hover {
    color: var(--accent);
}

/* Contact Form */
.contact-form {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px hsla(38, 92%, 50%, 0.2);
}

.form-control::placeholder {
    color: var(--muted-foreground);
}

textarea.form-control {
    resize: none;
    min-height: 100px;
}

.form-row {
    display: grid;
    gap: 1rem;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 1rem;
    max-width: 28rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: hsla(0, 0%, 100%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 0.875rem;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    text-align: center;
    color: hsla(0, 0%, 100%, 0.5);
    font-size: 0.875rem;
}

/* Page Hero (for subpages) */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-content {
    max-width: 40rem;
}

/* Service Detail Cards */
.service-detail-grid {
    display: grid;
    gap: 2rem;
}

.service-detail-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-medium);
}

.service-detail-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius);
    background: hsla(38, 92%, 50%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.service-detail-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.service-detail-card>p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: hsla(215, 25%, 15%, 0.8);
}

.feature-list svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Page CTA Box */
.cta-box {
    background: var(--hero-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.cta-box p {
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 2rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--foreground);
}

.benefit-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Section with Secondary Background */
.section-secondary {
    background: hsla(210, 15%, 95%, 0.5);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Ajustes do header para telas maiores */
    .header-inner {
        padding: 0.75rem 0;
        /* Mais espaço em telas maiores */
    }

    .custom-logo {
        max-height: 45px;
        /* Logo um pouco maior em telas maiores */
    }
}

@media (max-width: 767px) {

    /* Ajustes específicos para mobile */
    .header-inner {
        padding: 0.5rem 0;
        /* Mantém padding adequado no mobile */
    }

    .custom-logo {
        max-height: 35px;
        /* Logo menor no mobile para caber melhor */
    }

    .logo-text {
        font-size: 1.25rem;
        /* Texto menor no mobile */
    }

    .logo-subtext {
        font-size: 0.75rem;
        /* Subtexto menor no mobile */
    }
}

@media (min-width: 768px) {
    section {
        padding: 7rem 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .service-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
    }

    .header-cta {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .service-detail-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
}