@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --light: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --text: #1e293b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: #0891b2;
    transform: translateY(-2px);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    margin: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-desktop a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-desktop a:hover {
    color: var(--primary);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s ease;
    z-index: 999;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.nav-mobile a:hover {
    color: var(--primary);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

main {
    padding-top: 90px;
}

section {
    padding: 60px 0;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light) 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--secondary);
    margin-bottom: 16px;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero-badge-text span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.hero-badge-text small {
    font-size: 12px;
    color: var(--gray-500);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 28px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-600);
}

.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
}

.stats {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-item h3 {
    font-size: 40px;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    opacity: 0.9;
}

.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--secondary);
    margin-bottom: 16px;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.about-list {
    margin: 20px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.about-list li i {
    color: var(--accent);
}

.testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 14px;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 15px;
    color: var(--secondary);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--gray-500);
}

.cta {
    background: linear-gradient(135deg, var(--secondary), #1e3a5f);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 16px;
}

.cta p {
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 32px;
    border-radius: var(--radius);
    color: var(--white);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 24px;
    font-size: 14px;
}

.contact-details {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item div h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-item div span {
    font-size: 13px;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.map-wrapper {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
}

footer {
    background: var(--secondary);
    color: var(--white);
    padding: 32px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.footer-logo span {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
}

.copyright {
    font-size: 13px;
    color: var(--gray-400);
}

.policy-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.policy-links a {
    font-size: 12px;
    color: var(--gray-400);
}

.policy-links a:hover {
    color: var(--white);
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.4s ease;
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-popup h4 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.cookie-popup p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.cookie-popup a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 13px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 12px;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
}

.breadcrumb a {
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

.content-section {
    background: var(--white);
    padding: 60px 0;
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
}

.content-box h2 {
    font-size: 22px;
    color: var(--secondary);
    margin: 28px 0 14px;
}

.content-box h3 {
    font-size: 18px;
    color: var(--secondary);
    margin: 22px 0 12px;
}

.content-box p {
    color: var(--gray-600);
    margin-bottom: 14px;
    font-size: 14px;
}

.content-box ul {
    margin: 14px 0;
    padding-left: 20px;
}

.content-box ul li {
    position: relative;
    padding: 6px 0 6px 20px;
    color: var(--gray-600);
    font-size: 14px;
}

.content-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.last-updated {
    font-size: 13px;
    color: var(--gray-500);
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light);
}

.error-content h1 {
    font-size: 120px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
}

.error-content h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.error-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.thank-you-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--light) 0%, #e0f2fe 100%);
}

.thank-you-content {
    max-width: 500px;
    padding: 40px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    margin: 0 auto 24px;
}

.thank-you-content h1 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.thank-you-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.process-section {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 28px;
    position: relative;
}

.process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h3 {
    font-size: 17px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray-600);
}

.benefits-section {
    background: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    display: flex;
    gap: 16px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 13px;
    color: var(--gray-600);
}

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 28px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-size: 17px;
    color: var(--secondary);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 13px;
    color: var(--gray-500);
    display: block;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 13px;
    color: var(--gray-600);
}

.values-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 28px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    opacity: 0.9;
}

.faq-section {
    background: var(--light);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 12px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--gray-600);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    section {
        padding: 48px 0;
    }

    .header-inner {
        margin: 8px;
        padding: 10px 16px;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-badge {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .policy-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .feature-card,
    .testimonial-card,
    .benefit-card {
        padding: 20px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 24px;
    }

    .error-content h1 {
        font-size: 80px;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        padding: 16px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 320px) {
    .header-inner {
        margin: 6px;
        padding: 8px 12px;
    }

    .logo-text {
        font-size: 14px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 12px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
