@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

:root {
    --accent-primary: #0EA5E9;
    --accent-secondary: #0284C7;
    --teal-dark: #0F766E;
    --slate-text: #334155;
    --slate-muted: #64748B;
    --bg-light: #FEF9FF;
    --bg-pink: #FCE7F3;
    --bg-purple: #F3E8FF;
    --bg-blue: #E7F3FF;
    --white: #FFFFFF;
    --shadow-prism: 0 56px 224px rgba(14, 165, 233, 0.25);
    --shadow-glow: 0 0 64px rgba(14, 165, 233, 0.45);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--slate-text);
    background: var(--bg-light);
    line-height: 1.68;
    font-size: 17px;
    overflow-x: hidden;
}

strong, b, p {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--teal-dark);
    line-height: 0.88;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 72px;
}

.prism-section {
    padding: 112px 0;
    position: relative;
}

.skew-layout {
    transform: skewY(-2deg);
    transform-origin: 0 0;
}

.mesh-gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    background: radial-gradient(ellipse at 20% 30%, rgba(254, 247, 255, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(231, 243, 255, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(243, 232, 255, 0.3) 0%, transparent 60%);
    filter: blur(180px);
    opacity: 0.6;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 72px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
    backdrop-filter: blur(56px);
    border-right: 2px solid rgba(14, 165, 233, 0.28);
    box-shadow: 12px 0 48px rgba(14, 165, 233, 0.12);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.sidebar-logo {
    width: 40px;
    height: 40px;
}

.sidebar-logo svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-secondary);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.sidebar-menu a {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 12px;
    font-weight: 700;
    color: var(--teal-dark);
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-menu a:hover {
    transform: rotate(180deg) scale(1.12);
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.sidebar-cta {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    color: var(--white);
    padding: 16px 12px;
    border-radius: 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--transition-bounce);
}

.sidebar-cta:hover {
    transform: rotate(180deg) scale(1.08);
    box-shadow: var(--shadow-glow);
}

.prism-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(64px);
    border: 2px solid rgba(14, 165, 233, 0.22);
    border-radius: 64px 96px 80px 112px;
    box-shadow: var(--shadow-prism);
    transition: all 0.92s var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.prism-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 4px;
    transform: skewX(-4deg);
}

.prism-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(14, 165, 233, 0.45);
    box-shadow: 0 72px 288px rgba(14, 165, 233, 0.35);
    z-index: 82;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px 48px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    border-radius: 48px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--transition-bounce);
    box-shadow: 0 88px 352px rgba(14, 165, 233, 0.6);
    white-space: nowrap;
    min-height: 56px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: transparent;
    color: var(--teal-dark);
    font-size: 16px;
    font-weight: 600;
    border-radius: 44px;
    border: 2px solid var(--teal-dark);
    cursor: pointer;
    transition: all 0.4s ease;
    white-space: nowrap;
    min-height: 52px;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--white);
    border-color: transparent;
    transform: scale(1.08);
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 72px;
    padding-left: 144px;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3.5rem, 14vw, 9rem);
    font-weight: 900;
    color: var(--teal-dark);
    line-height: 0.88;
    letter-spacing: -0.008em;
    margin-bottom: 24px;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 120px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.hero-text {
    font-size: 19px;
    color: var(--slate-text);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-canvas {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
    opacity: 0.28;
    background: radial-gradient(circle at 50% 50%, var(--accent-primary), transparent 70%);
    filter: blur(48px);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--slate-muted);
    margin-bottom: 48px;
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    position: relative;
    padding: 40px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-primary);
    stroke-width: 2.5px;
}

.service-price {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-top: 16px;
}

.service-desc {
    font-size: 16px;
    color: var(--slate-text);
    line-height: 1.7;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-item {
    display: flex;
    align-items: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(64px);
    border: 2px solid rgba(14, 165, 233, 0.18);
    border-radius: 64px 96px 80px 112px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.process-item:hover {
    background: var(--white);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 64px 256px rgba(14, 165, 233, 0.35);
    transform: translateX(8px);
    z-index: 82;
}

.process-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--white);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 24px;
}

.process-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 4px;
}

.process-content p {
    font-size: 16px;
    color: var(--slate-text);
}

.process-arrow {
    width: 24px;
    height: 24px;
    margin-left: auto;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.process-item:hover .process-arrow {
    opacity: 1;
    transform: translateX(8px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-card {
    padding: 40px;
    text-align: center;
    transition: all 0.45s var(--transition-bounce);
}

.team-card:hover {
    flex-grow: 0.5;
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(14, 165, 233, 0.3);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-card p {
    font-size: 15px;
    color: var(--slate-text);
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    text-align: center;
}

.stat-item {
    padding: 36px;
}

.stat-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--slate-text);
}

.reviews-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 24px 0;
    -webkit-overflow-scrolling: touch;
}

.review-card {
    min-width: 360px;
    max-width: 360px;
    padding: 44px;
    scroll-snap-align: center;
}

.review-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 16px;
}

.review-card p {
    font-size: 18px;
    color: var(--slate-text);
    line-height: 1.85;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-name {
    font-weight: 600;
    color: var(--teal-dark);
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 100vh;
}

.contact-info {
    padding: 64px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(64px);
    border-right: 4px solid rgba(14, 165, 233, 0.4);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.contact-info h2 {
    font-size: 52px;
    font-weight: 900;
    color: var(--teal-dark);
    margin-bottom: 32px;
}

.contact-info p {
    font-size: 18px;
    color: var(--slate-text);
    margin-bottom: 48px;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    stroke-width: 2.5px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 16px;
    color: var(--slate-text);
    margin-bottom: 0;
}

.contact-form {
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 16px 20px;
    border: 2px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 24px rgba(14, 165, 233, 0.2);
}

.footer {
    background: linear-gradient(180deg, var(--bg-light), var(--bg-pink));
    padding: 80px 0 40px;
    border-top: 2px solid rgba(14, 165, 233, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--teal-dark);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 16px;
    color: var(--slate-text);
    margin-bottom: 24px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 15px;
    color: var(--slate-text);
    transition: all 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(14, 165, 233, 0.15);
    font-size: 14px;
    color: var(--slate-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--slate-muted);
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-primary);
}

.mobile-menu-btn {
    display: none;
    width: 52px;
    height: 52px;
    background: rgba(14, 165, 233, 0.14);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    z-index: 10001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--accent-primary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
    top: 16px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 24px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 32px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(56px);
    z-index: 10000;
    padding-top: 140px;
    text-align: center;
}

.mobile-menu-overlay.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.mobile-menu-overlay a {
    font-size: 26px;
    font-weight: 700;
    color: var(--teal-dark);
    position: relative;
}

.mobile-menu-overlay .btn-primary {
    margin-top: 24px;
    width: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(64px);
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-radius: 24px;
    padding: 24px 32px;
    max-width: 420px;
    box-shadow: 0 24px 96px rgba(14, 165, 233, 0.25);
    z-index: 99999;
    display: block;
}

.cookie-banner h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 14px;
    color: var(--slate-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--white);
    border: none;
}

.cookie-btn-accept:hover {
    transform: scale(1.05);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--teal-dark);
    border: 2px solid var(--teal-dark);
}

.cookie-btn-decline:hover {
    background: var(--teal-dark);
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-pulse {
    animation: pulse 3s infinite;
}

.animate-slideUp {
    animation: slideUp 0.8s ease-out forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.75s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(64px);
    border: 2px solid rgba(14, 165, 233, 0.24);
    border-radius: 104px 136px 120px 152px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-question {
    padding: 32px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 19px;
    font-weight: 600;
    color: var(--teal-dark);
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent-primary);
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 16px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 16px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer-content {
    padding: 0 44px 32px;
    font-size: 16px;
    color: var(--slate-text);
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    margin-bottom: 24px;
}

.breadcrumbs a {
    color: var(--accent-secondary);
    letter-spacing: 0.09em;
}

.breadcrumbs span {
    color: var(--slate-muted);
}

.breadcrumbs .current {
    color: var(--slate-text);
}

.page-hero {
    min-height: 400px;
    padding: 160px 72px;
    padding-left: 144px;
    position: relative;
    display: flex;
    align-items: center;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-icon {
    width: 48px;
    height: 48px;
}

.hero-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-primary);
    stroke-width: 2.5px;
}

.section-bg-pink {
    background: var(--bg-pink);
}

.section-bg-purple {
    background: var(--bg-purple);
}

.section-bg-blue {
    background: var(--bg-blue);
}

.advantage-card {
    padding: 36px;
    min-height: 360px;
}

.advantage-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 80px 112px 0 0;
    margin-bottom: 24px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.masonry-grid {
    columns: 4;
    column-gap: 28px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 28px;
}

@media (max-width: 1200px) {
    .masonry-grid {
        columns: 3;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 48px;
    }
    
    .sidebar-nav {
        display: none;
    }
    
    .hero-section {
        padding-left: 48px;
        padding-right: 48px;
    }
    
    .page-hero {
        padding-left: 48px;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        position: relative;
        height: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .masonry-grid {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-section {
        padding: 120px 24px;
        min-height: auto;
    }
    
    .page-hero {
        padding: 120px 24px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .masonry-grid {
        columns: 1;
    }
    
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .service-card {
        padding: 32px;
        min-height: auto;
    }
    
    .process-item {
        padding: 24px;
    }
    
    .contact-info,
    .contact-form {
        padding: 32px 24px;
    }
}