@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --color-primary: #016B61;
    --color-secondary: #70B2B2;
    --color-tertiary: #9ECFD4;
    --color-cream: #E5E9C5;
    --color-white: #ffffff;
    --color-dark: #0a1a18;
    --color-text: #2d3b39;
    --color-text-light: #5a6b68;
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Outfit', 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: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 50%;
    --shadow-sm: 0 1px 2px rgba(1, 107, 97, 0.08);
    --shadow-md: 0 4px 12px rgba(1, 107, 97, 0.12);
    --shadow-lg: 0 8px 24px rgba(1, 107, 97, 0.16);
    --shadow-xl: 0 16px 48px rgba(1, 107, 97, 0.2);
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

p {
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    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-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-cream {
    background: var(--color-cream);
    color: var(--color-primary);
}

.btn-cream:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.flow-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--color-tertiary), transparent);
    height: 1px;
    opacity: 0.3;
    animation: flowHorizontal 8s ease-in-out infinite;
}

.flow-line:nth-child(1) {
    top: 15%;
    width: 60%;
    left: -60%;
    animation-delay: 0s;
}

.flow-line:nth-child(2) {
    top: 35%;
    width: 80%;
    left: -80%;
    animation-delay: 2s;
}

.flow-line:nth-child(3) {
    top: 55%;
    width: 50%;
    left: -50%;
    animation-delay: 4s;
}

.flow-line:nth-child(4) {
    top: 75%;
    width: 70%;
    left: -70%;
    animation-delay: 6s;
}

.flow-line:nth-child(5) {
    top: 90%;
    width: 40%;
    left: -40%;
    animation-delay: 1s;
}

.flow-line-vertical {
    position: absolute;
    background: linear-gradient(180deg, transparent, var(--color-secondary), transparent);
    width: 1px;
    opacity: 0.2;
    animation: flowVertical 10s ease-in-out infinite;
}

.flow-line-vertical:nth-child(6) {
    left: 10%;
    height: 50%;
    top: -50%;
    animation-delay: 0s;
}

.flow-line-vertical:nth-child(7) {
    left: 30%;
    height: 60%;
    top: -60%;
    animation-delay: 3s;
}

.flow-line-vertical:nth-child(8) {
    left: 60%;
    height: 40%;
    top: -40%;
    animation-delay: 5s;
}

.flow-line-vertical:nth-child(9) {
    left: 85%;
    height: 55%;
    top: -55%;
    animation-delay: 7s;
}

@keyframes flowHorizontal {
    0% {
        left: -80%;
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes flowVertical {
    0% {
        top: -60%;
        opacity: 0;
    }

    10% {
        opacity: 0.2;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.pulse-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    opacity: 0.4;
    animation: pulse 3s ease-in-out infinite;
}

.pulse-dot:nth-child(10) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.pulse-dot:nth-child(11) {
    top: 45%;
    left: 75%;
    animation-delay: 1s;
}

.pulse-dot:nth-child(12) {
    top: 70%;
    left: 40%;
    animation-delay: 2s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(2);
        opacity: 0.1;
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: var(--space-md) 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 4rem;
    position: relative;
    z-index: 20;
}

.logo img {
    display: inline-block;
    transform: rotate(-5deg);
    transition: transform var(--transition-normal);
}

.logo:hover img {
    transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .logo img {
        width: 3rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 3rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 576px) {
    .logo img {
        width: 2rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 400px) {
    .logo img {
        width: 2rem;
        position: relative;
        z-index: 20;
    }
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-desktop a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--color-primary);
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-sm);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-base);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    z-index: 105;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.nav-mobile a {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.nav-mobile a:hover {
    color: var(--color-primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.hero h1 {
    margin-bottom: var(--space-md);
}

.hero p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-visual {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 60%;
    opacity: 0.15;
    z-index: 1;
}

.hero-circle {
    position: absolute;
    border: 1px solid var(--color-secondary);
    border-radius: var(--radius-full);
    animation: rotateCircle 20s linear infinite;
}

.hero-circle:nth-child(1) {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-circle:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-direction: reverse;
    animation-duration: 15s;
}

.hero-circle:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation-duration: 25s;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.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-light);
    max-width: 500px;
    margin: 0 auto;
}

.section-alt {
    background: linear-gradient(180deg, var(--color-cream) 0%, rgba(229, 233, 197, 0.3) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.feature-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(1, 107, 97, 0.08);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    color: var(--color-primary);
    font-size: 1.25rem;
}

.feature-card h4 {
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(1, 107, 97, 0.08);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-tertiary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image i {
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.6;
}

.product-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.product-content {
    padding: var(--space-md);
}

.product-content h4 {
    margin-bottom: var(--space-xs);
}

.product-content p {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.8rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 107, 97, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--color-cream);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-info h5 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.testimonial-stars {
    color: #f5b942;
    font-size: 0.8rem;
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-size: 0.85rem;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 0;
}

.cta-section {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 50%);
    opacity: 0.1;
    animation: ctaPulse 10s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.cta-section .btn-cream {
    background: var(--color-cream);
    color: var(--color-primary);
}

.cta-section .btn-cream:hover {
    background: var(--color-white);
}

.contact-section {
    padding: var(--space-3xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.contact-form {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    border: 1px solid rgba(1, 107, 97, 0.2);
    border-radius: var(--radius-md);
    background: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(1, 107, 97, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
    accent-color: var(--color-primary);
}

.form-checkbox label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.form-checkbox a {
    color: var(--color-primary);
}

.map-container {
    margin-top: var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links h5 {
    font-size: 0.9rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--color-tertiary);
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer-bottom span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero {
    padding: calc(var(--space-3xl) + 60px) 0 var(--space-2xl);
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: var(--space-sm);
}

.page-hero p {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.8rem;
}

.breadcrumb a {
    color: var(--color-text-light);
}

.breadcrumb span {
    color: var(--color-primary);
}

.breadcrumb i {
    font-size: 0.6rem;
    color: var(--color-text-light);
}

.content-section {
    padding: var(--space-2xl) 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-wrapper p {
    margin-bottom: var(--space-md);
}

.content-wrapper ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.content-wrapper li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.content-wrapper li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 4px;
    height: 4px;
    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-content {
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-lg);
    color: var(--color-primary);
    font-size: 2rem;
}

.thank-you-content h1 {
    margin-bottom: var(--space-md);
}

.thank-you-content p {
    color: var(--color-text-light);
    margin-bottom: 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-content {
    max-width: 500px;
}

.error-code {
    font-family: var(--font-primary);
    font-size: 6rem;
    font-weight: 700;
    color: var(--color-tertiary);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.error-content h1 {
    margin-bottom: var(--space-md);
}

.error-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.studio-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.studio-image {
    height: 200px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-tertiary) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.studio-image i {
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.5;
}

.studio-content h4 {
    margin-bottom: var(--space-sm);
}

.studio-content p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.stats-section {
    background: var(--color-primary);
    padding: var(--space-xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.stat-item {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.cookie-popup {
    position: fixed;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.cookie-popup.active {
    opacity: 1;
    visibility: visible;
}

.cookie-popup p {
    font-size: 0.8rem;
    margin-bottom: var(--space-md);
}

.cookie-popup a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.cookie-buttons .btn {
    flex: 1;
    padding: var(--space-sm);
    font-size: 0.8rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-tertiary));
}

.process-step {
    display: flex;
    gap: var(--space-md);
    position: relative;
}

.process-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 700;
    border-radius: var(--radius-full);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.process-content h4 {
    margin-bottom: var(--space-xs);
}

.process-content p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (min-width: 480px) {
    html {
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .studio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-popup {
        left: auto;
        right: var(--space-md);
        max-width: 380px;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .burger {
        display: none;
    }

    .nav-desktop {
        display: block;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }

    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .studio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content {
        max-width: 550px;
    }

    .hero-visual {
        right: 5%;
        opacity: 0.2;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}