@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --color-primary: #00b4d8;
    --color-primary-dark: #0096c7;
    --color-secondary: #f59e0b;
    --color-secondary-dark: #d97706;
    --color-bg: #0a0f14;
    --color-bg-light: #111820;
    --color-bg-card: #1a2332;
    --color-text: #e8eef4;
    --color-text-muted: #8899a8;
    --color-border: #2a3a4a;
    --color-success: #10b981;
    --color-error: #ef4444;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 50%;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
    --shadow-md: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    --shadow-glow-cyan: 0 0 1.25rem rgba(0, 180, 216, 0.3);
    --shadow-glow-amber: 0 0 1.25rem rgba(245, 158, 11, 0.3);
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --max-width: 75rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-bg);
    box-shadow: var(--shadow-glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0 1.5rem rgba(0, 180, 216, 0.5);
    color: var(--color-bg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-bg);
    box-shadow: var(--shadow-glow-amber);
}

.btn-secondary:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0 1.5rem rgba(245, 158, 11, 0.5);
    color: var(--color-bg);
}

.btn-outline {
    background: transparent;
    border: 0.0625rem solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}

.header {
    position: fixed;
    top: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - var(--space-xl));
    max-width: 60rem;
    background: rgba(26, 35, 50, 0.9);
    backdrop-filter: blur(0.625rem);
    border-radius: var(--radius-xl);
    border: 0.0625rem solid var(--color-border);
    padding: var(--space-sm) var(--space-md);
    transition: all var(--transition-base);
}

.header.hidden {
    transform: translateX(-50%) translateY(-150%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: var(--space-lg);
}

.nav-desktop a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.nav-desktop a:hover {
    color: var(--color-primary);
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.burger span {
    width: 1.5rem;
    height: 0.125rem;
    background: var(--color-text);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.3125rem, -0.3125rem);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 15, 20, 0.98);
    backdrop-filter: blur(0.625rem);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    text-align: center;
}

.mobile-nav li {
    margin-bottom: var(--space-lg);
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.mobile-nav a:hover {
    color: var(--color-primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.9), rgba(10, 15, 20, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 40rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(0, 180, 216, 0.1);
    border: 0.0625rem solid var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.hero h1 {
    margin-bottom: var(--space-md);
}

.hero p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    max-width: 32rem;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--color-text-muted);
    max-width: 35rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    gap: var(--space-lg);
}

.service-card {
    background: var(--color-bg-card);
    border: 0.0625rem solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-0.25rem);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow-cyan);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
    color: var(--color-bg);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.0625rem;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.about-grid {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 0.0625rem solid var(--color-border);
}

.about-img img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    margin-bottom: var(--space-md);
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    border: 0.0625rem solid var(--color-border);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.process-steps {
    display: grid;
    gap: var(--space-lg);
}

.process-step {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 0.0625rem solid var(--color-border);
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-bg);
}

.step-content h3 {
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.step-content p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-light));
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    border: 0.0625rem solid var(--color-border);
}

.cta-section h2 {
    margin-bottom: var(--space-sm);
}

.cta-section p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 0.0625rem solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-bg);
}

.author-info strong {
    display: block;
    font-size: 0.875rem;
}

.author-info span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.products-grid {
    display: grid;
    gap: var(--space-lg);
}

.product-card {
    background: var(--color-bg-card);
    border: 0.0625rem solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-glow-cyan);
}

.product-img {
    height: 12rem;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: var(--space-lg);
}

.product-info h3 {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.product-info p {
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    margin-bottom: var(--space-md);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.portfolio-grid {
    display: grid;
    gap: var(--space-md);
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 0.0625rem solid var(--color-border);
}

.portfolio-item img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(10, 15, 20, 0.95), transparent);
}

.portfolio-overlay h3 {
    font-size: 0.9375rem;
    margin-bottom: var(--space-xs);
}

.portfolio-overlay p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.contact-section {
    background: var(--color-bg-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    gap: var(--space-xl);
}

.contact-info {
    padding: var(--space-xl);
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-info>p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.contact-details {
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.contact-item i {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
}

.contact-item-text span,
.contact-item-text a {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.contact-form-wrap {
    padding: var(--space-xl);
    background: var(--color-bg-card);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg);
    border: 0.0625rem solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    min-height: 7rem;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--color-primary);
    margin-top: 0.125rem;
}

.checkbox-group label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.checkbox-group a {
    color: var(--color-primary);
}

.map-wrap {
    height: 15rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 0.0625rem solid var(--color-border);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    padding: var(--space-xl) 0;
    border-top: 0.0625rem solid var(--color-border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.footer-logo span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-copy {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
}

.cookie-popup {
    position: fixed;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    max-width: 28rem;
    background: var(--color-bg-card);
    border: 0.0625rem solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    z-index: 2000;
    box-shadow: var(--shadow-lg);
    display: none;
}

.cookie-popup.active {
    display: block;
}

.cookie-popup h4 {
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
}

.cookie-popup p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.cookie-popup a {
    color: var(--color-primary);
}

.cookie-btns {
    display: flex;
    gap: var(--space-sm);
}

.cookie-btns .btn {
    flex: 1;
    padding: var(--space-sm);
    font-size: 0.8125rem;
}

.privacy-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 20, 0.9);
    backdrop-filter: blur(0.3125rem);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.privacy-popup.active {
    display: flex;
}

.privacy-popup-content {
    background: var(--color-bg-card);
    border: 0.0625rem solid var(--color-border);
    border-radius: var(--radius-lg);
    max-width: 35rem;
    max-height: 80vh;
    overflow-y: auto;
    padding: var(--space-xl);
}

.privacy-popup-content h3 {
    margin-bottom: var(--space-md);
}

.privacy-popup-content p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.privacy-popup-close {
    margin-top: var(--space-md);
}

.page-header {
    padding: calc(var(--space-3xl) + 4rem) 0 var(--space-2xl);
    text-align: center;
    background: var(--color-bg-light);
}

.page-header h1 {
    margin-bottom: var(--space-sm);
}

.page-header p {
    color: var(--color-text-muted);
    max-width: 35rem;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.8125rem;
}

.breadcrumb a {
    color: var(--color-text-muted);
}

.breadcrumb span {
    color: var(--color-text-muted);
}

.content-section {
    padding: var(--space-2xl) 0;
}

.content-section h2 {
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.content-section p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.content-section ul {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.content-section li {
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: var(--space-md);
}

.content-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.375rem;
    height: 0.375rem;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    color: var(--color-bg);
}

.thank-you-section h1 {
    margin-bottom: var(--space-md);
}

.thank-you-section p {
    color: var(--color-text-muted);
    max-width: 30rem;
    margin: 0 auto var(--space-xl);
}

.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.error-section h1 {
    margin-bottom: var(--space-md);
}

.error-section p {
    color: var(--color-text-muted);
    max-width: 30rem;
    margin: 0 auto var(--space-xl);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--color-bg-card);
    border: 0.0625rem solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
}

.faq-question i {
    transition: transform var(--transition-fast);
    color: var(--color-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.faq-item.active .faq-answer {
    max-height: 12.5rem;
}

.features-list {
    display: grid;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 0.0625rem solid var(--color-border);
}

.feature-item i {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
}

.feature-item h4 {
    font-size: 0.9375rem;
    margin-bottom: var(--space-xs);
}

.feature-item p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .burger {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 320px) {
    html {
        font-size: 14px;
    }

    .header {
        width: calc(100% - var(--space-md));
    }

    .hero-btns {
        flex-direction: column;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .cookie-btns {
        flex-direction: column;
    }
}