@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Quicksand:wght@300;400;500;600&display=swap');

:root {
    --color-cream: #FFEAD8;
    --color-rose: #E8988A;
    --color-magenta: #9B177E;
    --color-deep-purple: #2A1458;
    --color-white: #FFFFFF;
    --color-black: #1a1a1a;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Quicksand', sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    --space-xxxl: 4rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 2rem;
    --radius-full: 50%;
    --shadow-sm: 0 0.125rem 0.25rem rgba(42, 20, 88, 0.08);
    --shadow-md: 0 0.25rem 0.75rem rgba(42, 20, 88, 0.12);
    --shadow-lg: 0 0.5rem 1.5rem rgba(42, 20, 88, 0.16);
    --shadow-glow: 0 0 1.5rem rgba(232, 152, 138, 0.4);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-breath: 4s ease-in-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-deep-purple);
    background-color: var(--color-cream);
    min-height: 100vh;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-deep-purple);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

a {
    color: var(--color-magenta);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-deep-purple);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 72rem;
    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-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-magenta), var(--color-deep-purple));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-0.125rem);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-magenta);
    border: 0.0625rem solid var(--color-magenta);
}

.btn-secondary:hover {
    background: var(--color-magenta);
    color: var(--color-white);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    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;
    gap: var(--space-lg);
}

.nav-desktop a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-deep-purple);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 0.0625rem;
    background: var(--color-magenta);
    transition: width var(--transition-base);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.burger-btn {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: var(--space-sm);
    z-index: 200;
}

.burger-btn span {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background: var(--color-deep-purple);
    transition: all var(--transition-base);
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.3rem, 0.3rem);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.3rem, -0.3rem);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, rgba(255, 234, 216, 0.98) 100%);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu nav {
    text-align: center;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-deep-purple);
    display: block;
    padding: var(--space-sm);
}

.mobile-menu a:hover {
    color: var(--color-magenta);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-cream) 0%, rgba(232, 152, 138, 0.2) 50%, var(--color-cream) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(232, 152, 138, 0.4) 0%, transparent 70%);
    animation: breathe var(--transition-breath) infinite;
}

.hero-glow:nth-child(1) {
    top: 10%;
    right: 5%;
}

.hero-glow:nth-child(2) {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-xxxl) 0;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-magenta);
    margin-bottom: var(--space-md);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: var(--space-lg);
    color: var(--color-deep-purple);
}

.hero h1 span {
    display: block;
    font-style: italic;
    color: var(--color-rose);
}

.hero-desc {
    font-size: 1rem;
    max-width: 30rem;
    margin: 0 auto var(--space-xl);
    color: var(--color-deep-purple);
    opacity: 0.85;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.section {
    padding: var(--space-xxxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--color-deep-purple);
    opacity: 0.75;
    max-width: 28rem;
    margin: 0 auto;
}

.section-alt {
    background: linear-gradient(180deg, rgba(232, 152, 138, 0.1) 0%, var(--color-cream) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.feature-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-rose), var(--color-magenta));
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-md);
    color: var(--color-white);
    font-size: 1.25rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.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);
}

.product-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 12rem;
    background: linear-gradient(135deg, rgba(232, 152, 138, 0.3), rgba(155, 23, 126, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 3rem;
    color: var(--color-magenta);
    opacity: 0.6;
}

.product-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--color-magenta);
    color: var(--color-white);
    font-size: 0.7rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.product-info {
    padding: var(--space-md);
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.product-info p {
    font-size: 0.8rem;
    opacity: 0.75;
    margin-bottom: var(--space-sm);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-magenta);
}

.product-btn {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-deep-purple);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.product-btn:hover {
    background: var(--color-magenta);
    color: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    height: 16rem;
    background: linear-gradient(135deg, rgba(232, 152, 138, 0.4), rgba(155, 23, 126, 0.3));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 8rem;
    height: 8rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    animation: breathe var(--transition-breath) infinite;
}

.about-image i {
    font-size: 4rem;
    color: var(--color-deep-purple);
    opacity: 0.5;
}

.about-text h2 {
    margin-bottom: var(--space-md);
}

.about-text p {
    margin-bottom: var(--space-md);
    opacity: 0.85;
}

.about-text ul {
    margin-bottom: var(--space-lg);
}

.about-text li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.about-text li i {
    color: var(--color-rose);
    margin-top: 0.2rem;
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-deep-purple);
    margin-bottom: var(--space-md);
    position: relative;
}

.testimonial-card blockquote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--color-rose);
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--color-rose), var(--color-magenta));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-rose), var(--color-magenta));
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2rem;
    box-shadow: var(--shadow-glow);
}

.team-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.team-card p {
    font-size: 0.75rem;
    color: var(--color-magenta);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-section {
    background: linear-gradient(135deg, var(--color-deep-purple), var(--color-magenta));
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 30rem;
    height: 30rem;
    background: radial-gradient(circle, rgba(232, 152, 138, 0.3) 0%, transparent 70%);
    animation: breathe var(--transition-breath) infinite;
}

.contact-section .section-header h2,
.contact-section .section-header p {
    color: var(--color-white);
}

.contact-section .section-header p {
    opacity: 0.85;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0.5rem);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

.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-cream);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.15);
    border: 0.0625rem solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-rose);
    background: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    min-height: 6rem;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.75rem;
    color: var(--color-cream);
    cursor: pointer;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.2rem;
    accent-color: var(--color-rose);
}

.form-checkbox a {
    color: var(--color-rose);
}

.contact-form .btn {
    width: 100%;
    margin-top: var(--space-md);
    background: var(--color-rose);
    color: var(--color-deep-purple);
}

.contact-form .btn:hover {
    background: var(--color-cream);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-item i {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-rose);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--color-cream);
    margin-bottom: var(--space-xs);
}

.contact-item p,
.contact-item a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-item a:hover {
    color: var(--color-rose);
}

.map-container {
    height: 12rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: var(--space-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    background: var(--color-deep-purple);
    color: var(--color-cream);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}


.footer-brand p {
    font-size: 0.8rem;
    opacity: 0.75;
}

.footer-links h4 {
    font-size: 0.85rem;
    color: var(--color-rose);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 234, 216, 0.75);
}

.footer-links a:hover {
    color: var(--color-rose);
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.7;
}

.page-header {
    padding: calc(var(--space-xxxl) + var(--space-xl)) 0 var(--space-xxl);
    background: linear-gradient(135deg, var(--color-cream) 0%, rgba(232, 152, 138, 0.2) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 15rem;
    height: 15rem;
    background: radial-gradient(circle, rgba(232, 152, 138, 0.3) 0%, transparent 70%);
    animation: breathe var(--transition-breath) infinite;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.page-header p {
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    margin-top: var(--space-md);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--color-magenta);
}

.breadcrumb span {
    opacity: 0.5;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.client-logo {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.client-logo:hover {
    box-shadow: var(--shadow-md);
}

.client-logo i {
    font-size: 2rem;
    color: var(--color-magenta);
    opacity: 0.6;
}

.policy-content {
    padding: var(--space-xxl) 0;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.policy-content h3 {
    font-size: 1.2rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.policy-content p {
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.policy-content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.policy-content li {
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: var(--space-md);
}

.policy-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.35rem;
    height: 0.35rem;
    background: var(--color-rose);
    border-radius: var(--radius-full);
}

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, rgba(232, 152, 138, 0.2) 50%, var(--color-cream) 100%);
    position: relative;
    overflow: hidden;
}

.thank-you-page .hero-glow {
    position: absolute;
}

.thank-you-content {
    position: relative;
    z-index: 1;
    padding: var(--space-xl);
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-rose), var(--color-magenta));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--color-white);
    font-size: 2.5rem;
    box-shadow: var(--shadow-glow);
    animation: breathe var(--transition-breath) infinite;
}

.thank-you-content h1 {
    margin-bottom: var(--space-md);
}

.thank-you-content p {
    margin-bottom: var(--space-lg);
    opacity: 0.85;
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, rgba(232, 152, 138, 0.2) 50%, var(--color-cream) 100%);
}

.error-content {
    padding: var(--space-xl);
}

.error-code {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 300;
    color: var(--color-rose);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.error-content h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.error-content p {
    margin-bottom: var(--space-lg);
    opacity: 0.8;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-deep-purple);
    color: var(--color-cream);
    padding: var(--space-md);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-popup-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
}

.cookie-popup p {
    font-size: 0.8rem;
    opacity: 0.9;
}

.cookie-popup a {
    color: var(--color-rose);
}

.cookie-btns {
    display: flex;
    gap: var(--space-sm);
}

.cookie-btns .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
}

.contact-page-section {
    padding: var(--space-xxl) 0;
}

.intro-section {
    text-align: center;
    padding: var(--space-xxl) 0;
}

.intro-section h2 {
    margin-bottom: var(--space-md);
}

.intro-section p {
    max-width: 32rem;
    margin: 0 auto;
    opacity: 0.85;
}

.cta-section {
    background: linear-gradient(135deg, rgba(232, 152, 138, 0.2), rgba(155, 23, 126, 0.1));
    text-align: center;
    padding: var(--space-xxl) 0;
}

.cta-section h2 {
    margin-bottom: var(--space-md);
}

.cta-section p {
    margin-bottom: var(--space-lg);
    opacity: 0.85;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-magenta);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.75;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    counter-reset: step;
}

.process-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-magenta);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.process-step p {
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (min-width: 480px) {
    html {
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .nav-desktop {
        display: block;
    }

    .burger-btn {
        display: none;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .about-image {
        height: 20rem;
    }

    .testimonials-slider {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cookie-popup-inner {
        flex-direction: row;
        text-align: left;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero-glow {
        width: 25rem;
        height: 25rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}