@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0ea5e9;
    --accent: #06b6d4;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    --shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
    --shadow-lg: 0 10px 40px rgba(37, 99, 235, 0.2);
    --radius: 8px;
    --radius-lg: 16px;
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

header.hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

header.scrolled .logo-text {
    color: var(--dark);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-desktop a {
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-light);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--light);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    gap: 4px;
    transition: all 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 70px 24px 24px;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid var(--light);
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: var(--gradient);
    opacity: 0.05;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-content h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 24px;
    max-width: 440px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 12px;
    color: var(--gray);
}

.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--light);
    padding: 28px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

.about-section {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--dark);
}

.about-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-list {
    margin: 20px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--dark-light);
}

.about-list li i {
    color: var(--primary);
    font-size: 14px;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.service-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-content p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

.products {
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.product-image {
    height: 160px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark);
}

.product-info p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.product-price span {
    font-size: 12px;
    color: var(--gray);
    font-weight: 400;
}

.cta-section {
    background: var(--gradient);
    padding: 50px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-size: 14px;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--dark);
    color: var(--white);
}

.testimonials {
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--light);
    padding: 28px;
    border-radius: var(--radius-lg);
}

.testimonial-text {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
    color: var(--dark);
}

.testimonial-info p {
    font-size: 12px;
    color: var(--gray);
}

.contact-section {
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    background: var(--gradient);
    padding: 36px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-info > p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.contact-item div h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item div p {
    font-size: 12px;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-form-wrapper > p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: var(--font-secondary);
    font-size: 13px;
    border: 1.5px solid var(--light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    background: var(--white);
}

.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;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary);
}

.map-container {
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 24px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 32px 0 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    background: rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 12px;
    color: var(--gray-light);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--gray-light);
}

.footer-policies {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-policies a {
    font-size: 11px;
    color: var(--gray-light);
}

.footer-policies a:hover {
    color: var(--white);
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 420px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.privacy-popup.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-popup h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--dark);
}

.privacy-popup p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup .btn {
    flex: 1;
    padding: 9px 16px;
    font-size: 12px;
}

.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    color: var(--gray-light);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--gray-light);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--primary);
}

.policy-content {
    background: var(--white);
    padding: 60px 0;
}

.policy-content .container {
    max-width: 800px;
}

.policy-content h2 {
    font-size: 20px;
    margin: 32px 0 14px;
    color: var(--dark);
}

.policy-content h3 {
    font-size: 16px;
    margin: 24px 0 10px;
    color: var(--dark);
}

.policy-content p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 14px;
    line-height: 1.8;
}

.policy-content ul {
    margin: 14px 0;
    padding-left: 20px;
}

.policy-content li {
    list-style: disc;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
    line-height: 1.7;
}

.policy-meta {
    background: var(--light);
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 28px;
}

.policy-meta p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 16px;
}

.error-content h1 {
    font-size: 100px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.error-content h2 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 12px;
}

.error-content p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 14px;
}

.thank-you-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 16px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.thank-you-content {
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 36px;
}

.thank-you-content h1 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 12px;
}

.thank-you-content p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.7;
}

.process-section {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark);
}

.process-step p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
}

.faq-section {
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary);
}

.faq-item p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 28px;
    background: var(--light);
    border-radius: var(--radius-lg);
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--dark);
}

.team-card span {
    font-size: 12px;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
}

.values-section {
    background: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin: 0 auto 14px;
}

.value-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--dark);
}

.value-card p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
}

.subpage-intro {
    background: var(--white);
    padding: 50px 0;
}

.subpage-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.subpage-intro-content h2 {
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--dark);
}

.subpage-intro-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.benefits-section {
    background: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
}

.benefit-card i {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 14px;
}

.benefit-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark);
}

.benefit-card p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.7;
}

.tips-section {
    background: var(--white);
}

.tips-list {
    display: grid;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius-lg);
}

.tip-item i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.tip-item div h3 {
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--dark);
}

.tip-item div p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .nav-desktop {
        display: none;
    }

    .header-cta .btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        margin: 0 auto 24px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .subpage-intro-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .btn {
        padding: 9px 16px;
        font-size: 12px;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .feature-card {
        padding: 22px;
    }

    .contact-info {
        padding: 28px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .privacy-popup {
        left: 12px;
        right: 12px;
        padding: 18px;
    }

    .error-content h1 {
        font-size: 70px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    .logo-text {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .feature-card,
    .service-card,
    .product-card {
        padding: 18px;
    }
}

.about-stats-card {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    color: var(--white);
    text-align: center;
}

.stat-block {
    padding: 16px;
}

.stat-block i {
    font-size: 28px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.stat-block h3 {
    font-size: 32px;
    margin-bottom: 4px;
}

.stat-block p {
    font-size: 12px;
    opacity: 0.85;
}

.subpage-intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.subpage-intro-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

@media (max-width: 767px) {
    .about-stats-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }
    
    .stat-block h3 {
        font-size: 28px;
    }
}
