/* Modern Apple-inspired Dark Theme with Elegant Colors */
:root {
    --background: #000000;
    --foreground: #f5f5f7;
    --card: #1d1d1f;
    --card-foreground: #f5f5f7;
    --popover: #1d1d1f;
    --popover-foreground: #f5f5f7;
    --primary: #8e8e93;
    --primary-foreground: #ffffff;
    --secondary: #30d158;
    --secondary-foreground: #000000;
    --muted: #1d1d1f;
    --muted-foreground: #a1a1a6;
    --accent: #ff9f0a;
    --accent-foreground: #000000;
    --destructive: #ff453a;
    --destructive-foreground: #ffffff;
    --border: #424245;
    --input: #1d1d1f;
    --ring: rgba(142, 142, 147, 0.3);
    --radius: 0.75rem;
    --sidebar: #161618;
    --sidebar-foreground: #f5f5f7;
    --sidebar-primary: #8e8e93;
    --sidebar-primary-foreground: #000000;
    --sidebar-accent: #ff9f0a;
    --sidebar-accent-foreground: #000000;
    --sidebar-border: #424245;

    /* Apple-inspired gradients and glass effects */
    --glass-bg: rgba(29, 29, 31, 0.98);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #8e8e93 0%, #a1a1a6 100%);
    --gradient-secondary: linear-gradient(135deg, #30d158 0%, #8e8e93 100%);
    --gradient-accent: linear-gradient(135deg, #ff9f0a 0%, #ff9f0a 100%);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 16px 64px rgba(0, 0, 0, 0.4);
    --shadow-strong: 0 24px 96px rgba(0, 0, 0, 0.5);
}

/* Reset e controle específico para imagens de logo */
img.logo-image {
    height: 55px !important;
    width: auto !important;
    max-width: 180px !important;
    max-height: 55px !important;
    object-fit: contain !important;
    display: block !important;
    position: static !important;
    z-index: auto !important;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-color: var(--border);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-primary {
    color: var(--primary);
}

/* Utility classes */
.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    z-index: 50;
    transition: all 0.3s ease;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    max-width: 220px;
}

.logo-icon {
    background: var(--gradient-accent);
    color: var(--background);
    border-radius: var(--radius);
    padding: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.logo-image {
    height: 70px;
    width: auto;
    max-width: 200px;
    max-height: 70px;
    object-fit: contain;
    display: block;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

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

.nav a {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Modern Apple-style Buttons */
.btn-primary {
    background: var(--gradient-accent);
    color: var(--background);
    border: none;
    border-radius: var(--radius);
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    filter: brightness(1.1);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--accent-foreground);
    border: none;
    border-radius: var(--radius);
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    letter-spacing: -0.01em;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    filter: brightness(1.1);
}

.btn-outline {
    background: var(--glass-bg);
    color: var(--foreground);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    letter-spacing: -0.01em;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: bold;
}

/* Modern Dark Mobile Menu */
.menu-toggle {
    display: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--foreground);
    padding: 0.75rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: scale(1.05);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    right: 0;
    width: 60vw;
    max-width: 240px;
    height: 100vh;
    box-shadow: var(--shadow-strong);
    padding: 2rem 1.5rem;
    z-index: 100;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(100%);
    border-left: 1px solid var(--glass-border);
}

.nav-mobile.open {
    display: flex;
    transform: translateX(0);
}

.nav-mobile a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile a:hover {
    color: var(--primary);
    transform: translateX(8px);
}

.nav-mobile .btn-outline,
.nav-mobile .btn-primary {
    margin-top: 1rem;
    width: 100%;
}

.close-mobile {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    align-self: flex-end;
    margin-bottom: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.close-mobile:hover {
    background: var(--glass-bg);
    transform: scale(1.1);
}

.nav-mobile-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 75;
}

.nav-mobile-backdrop.show {
    display: block;
}

.hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(142, 142, 147, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(142, 142, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 159, 10, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--foreground) 0%, var(--muted-foreground) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    width: 100%;
}

.hero-stats>div {
    text-align: center;
    min-width: 0;
    padding: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    white-space: nowrap;
    line-height: 1.2;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    background: var(--glass-bg);
    padding: 2.5rem;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: all 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 32px 128px rgba(0, 0, 0, 0.6);
}

.hero-badge {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--gradient-accent);
    color: var(--secondary-foreground);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.badge-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.badge-value {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.services {
    padding: 6rem 0;
    background: var(--background);
    position: relative;
}

.about {
    padding: 6rem 0;
    background: radial-gradient(ellipse 100% 40% at 50% 60%, rgba(48, 209, 88, 0.08) 0%, transparent 70%),
        var(--background);
    position: relative;
}

.testimonials {
    padding: 6rem 0;
    background: var(--background);
    position: relative;
}

.contact {
    padding: 6rem 0;
    background: radial-gradient(ellipse 100% 40% at 50% 40%, rgba(255, 159, 10, 0.08) 0%, transparent 70%),
        var(--background);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

.section-badge.accent {
    color: var(--accent);
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--foreground) 0%, var(--muted-foreground) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}

/* Apple-inspired Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
}

.service-card:hover .btn-outline {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.service-icon {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.service-card li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--primary);
}

.service-card .btn-outline {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 500;
}

.services-actions {
    text-align: center;
    margin-top: 3rem;
}



/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-content h2 {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: bold;
    line-height: 1.2;
}

.about-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.about-content p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-stats>div {
    text-align: center;
    padding: 1rem;
    background: var(--card);
    border-radius: 0.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.feature-icon {
    background: color-mix(in srgb, var(--primary) 10%, transparent);
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-card:nth-child(2n) .feature-icon {
    background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}



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

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial-rating {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--foreground);
}

.testimonial-author span {
    font-weight: normal;
    color: var(--muted-foreground);
    display: block;
    font-size: 0.875rem;
}



/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--input);
    color: var(--foreground);
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 20%, transparent);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.info-block strong {
    display: block;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}



/* Footer */
.footer {
    background: var(--sidebar);
    border-top: 1px solid var(--sidebar-border);
    padding: 3rem 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .logo-icon {
    background: var(--gradient-accent);
    color: var(--sidebar-primary-foreground);
}

.footer-brand .logo-text {
    color: var(--sidebar-foreground);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 1rem;

}

.footer-social a {
    color: var(--muted-foreground);
    font-size: 1.25rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--sidebar-primary);
}

.footer-social img {
    width: 24px;
    height: 24px;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sidebar-foreground);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--sidebar-primary);
}

.footer-bottom {
    border-top: 1px solid var(--sidebar-border);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gradient-accent);
    margin: 0;
}

.footer-bottom a {
    color: var(--gradient-accent);
    transition: color 0.2s ease;
    text-decoration: none;
}

@media (max-width: 1024px) {

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding-top: 10rem;
        padding-bottom: 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hero-stats>div {
        min-width: 0;
        padding: 0.75rem 0.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .stat-label {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .services,
    .about,
    .testimonials,
    .contact {
        padding: 3rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-features {
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.header .logo-image {
    height: 100px !important;
    width: auto !important;
    max-width: 180px !important;
    max-height: 100px !important;
    object-fit: contain !important;
    display: block !important;
}

.footer .logo-image {
    height: 45px !important;
    width: auto !important;
    max-width: 150px !important;
    max-height: 45px !important;
    object-fit: contain !important;
    display: block !important;
}

@media (max-width: 768px) {
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 32px;
        max-width: 120px;
    }

    .hero {
        padding-top: 7rem;
        padding-bottom: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-stats>div {
        min-width: 0;
        padding: 0.5rem 0.25rem;
    }

    .stat-value {
        font-size: 1rem;
        white-space: nowrap;
    }

    .stat-label {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card,
    .testimonial-card,
    .contact-form,
    .info-block {
        padding: 1rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .hero-badge {
        left: 0;
        bottom: -1rem;
        padding: 0.75rem;
    }

    .badge-value {
        font-size: 1.25rem;
    }

    .services,
    .about,
    .testimonials,
    .contact {
        padding: 2rem 0;
    }
}