:root {
    --color-bg: #F5F3FF;
    --color-surface: rgba(255, 255, 255, 0.85);
    --color-card: rgba(255, 255, 255, 0.92);
    --color-border: rgba(139, 92, 246, 0.2);
    --color-text: #1F2937;
    --color-muted: rgba(31, 41, 55, 0.65);
    --accent: #A78BFA;
    --accent-strong: #E946EF;
    --accent-secondary: #06B6D4;
    --gradient-primary: linear-gradient(120deg, #E946EF, #8B5CF6, #06B6D4);
    --gradient-soft: linear-gradient(145deg, rgba(233, 70, 239, 0.08), rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.08));
    --radius: 20px;
    --shadow-soft: 0 10px 30px rgba(139, 92, 246, 0.08);
    --shadow-medium: 0 20px 40px rgba(139, 92, 246, 0.12);
    --shadow-strong: 0 25px 50px rgba(139, 92, 246, 0.18);
    --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 35%, #E0E7FF 70%, #DBEAFE 100%);
    background-attachment: fixed;
    color: var(--color-text);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(233, 70, 239, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    animation: breathe 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--accent-strong);
    box-shadow: var(--shadow-medium);
}

.btn-light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(31, 29, 43, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.header__container {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: 48px;
    filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.3));
}

.nav__list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav__link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav__link:hover {
    color: #fff;
}

.nav__link:hover::after {
    transform: scaleX(1);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 900px) {
    .nav {
        position: absolute;
        inset: 75px 20px auto;
        background: rgba(31, 29, 43, 0.98);
        border-radius: 16px;
        padding: 24px;
        display: none;
        flex-direction: column;
        border: 1px solid rgba(139, 92, 246, 0.2);
    }

    .nav.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    .nav__list {
        flex-direction: column;
        gap: 16px;
    }

    .mobile-toggle {
        display: block;
    }
}

.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.15;
    filter: blur(80px);
    animation: float-gentle 20s ease-in-out infinite;
}

.hero__orb--one {
    top: -10%;
    left: -10%;
}

.hero__orb--two {
    top: 30%;
    right: -15%;
    animation-delay: 5s;
}

.hero__orb--three {
    bottom: -10%;
    left: 25%;
    animation-delay: 10s;
    width: 350px;
    height: 350px;
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    align-items: center;
}

.hero__text {
    max-width: 560px;
}

.hero__pill {
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 999px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.hero__title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 18px;
    font-weight: 900;
    color: #1F2937;
}

.hero__title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    color: var(--color-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero__cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero__stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__stat {
    padding: 18px 24px;
    border-radius: 16px;
    background: var(--color-card);
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.hero__stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent);
}

.hero__stat strong {
    font-size: 1.8rem;
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__trust-card {
    margin-top: 28px;
    padding: 20px 24px;
    border-radius: 18px;
    background: rgba(31, 29, 43, 0.92);
    color: #fff;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-medium);
}

.hero__media {
    position: relative;
}

.hero__media-frame {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.hero__media-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.25);
}

.hero__media-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 14px 20px;
    border-radius: 16px;
    background: rgba(31, 29, 43, 0.9);
    color: #fff;
    backdrop-filter: blur(15px);
}

.hero__floating-card {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 240px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
    animation: float 8s ease-in-out infinite;
}

.hero__floating-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.hero__floating-card ul {
    list-style: none;
    color: var(--color-muted);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero__floating-card ul li::before {
    content: '✓';
    margin-right: 8px;
    color: var(--accent-strong);
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero__floating-card {
        position: relative;
        top: 20px;
        right: auto;
        width: 100%;
    }
}

.marquee {
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    padding: 18px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.marquee__inner {
    display: flex;
    gap: 80px;
    animation: marquee 30s linear infinite;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    width: fit-content;
}

.section {
    padding: 80px 0;
}

.section__heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.eyebrow {
    display: inline-flex;
    padding: 6px 18px;
    border-radius: 999px;
    background: var(--gradient-primary);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.section__heading h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    font-weight: 800;
}

.section__heading p {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.about__media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
}

.about__media:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-strong);
}

.about__media figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(0deg, rgba(31, 29, 43, 0.9), transparent);
    color: #fff;
}

.about__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--accent);
    color: var(--color-text);
    font-weight: 700;
    font-size: 0.85rem;
}

.about__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.about-card {
    padding: 20px;
    border-radius: 16px;
    background: var(--color-card);
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent);
}

.about__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-top: 20px;
}

.about__list li::before {
    content: '•';
    color: var(--accent-strong);
    margin-right: 8px;
    font-weight: 700;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.values__card {
    background: var(--color-card);
    border-radius: 20px;
    padding: 28px;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.values__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent);
}

.values__icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

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

.collection-card {
    background: var(--color-card);
    border-radius: 24px;
    border: 2px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.collection-card__media {
    position: relative;
    overflow: hidden;
}

.collection-card__media img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-card__media img {
    transform: scale(1.08);
}

.collection-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(31, 29, 43, 0.85);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.collection-card__content {
    padding: 26px;
}

.collection-card__content ul {
    list-style: none;
    margin-top: 16px;
    display: grid;
    gap: 8px;
    color: var(--color-muted);
}

.collection-card__content li::before {
    content: '•';
    color: var(--accent-strong);
    margin-right: 8px;
}

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

.product-card {
    position: relative;
    padding: 0;
    border-radius: 24px;
    background: var(--color-card);
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card--featured {
    border-color: var(--accent-strong);
    box-shadow: 0 20px 40px rgba(233, 70, 239, 0.15);
}

.product-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(233, 70, 239, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card__highlight {
    padding: 10px 20px;
    background: var(--gradient-soft);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
}

.product-card__highlight--top {
    background: linear-gradient(135deg, rgba(233, 70, 239, 0.08), rgba(139, 92, 246, 0.08));
}

.product-card__highlight--bottom {
    border-top: 1px solid var(--color-border);
    border-bottom: none;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.08));
}

.product-card__image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__view-gallery {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background: rgba(31, 29, 43, 0.9);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card__image:hover .product-card__view-gallery {
    opacity: 1;
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.gallery-modal.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.gallery-close:hover {
    color: var(--accent-strong);
}

.gallery-content {
    position: relative;
    max-width: 90%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 16px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-counter {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 700;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
    overflow-x: auto;
    max-width: 90%;
}

.gallery-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbnails img:hover {
    opacity: 1;
}

.gallery-thumbnails img.active {
    opacity: 1;
    border-color: var(--accent-strong);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.product-card:hover .product-card__glow {
    opacity: 1;
}

.product-card__header {
    padding: 28px 32px 18px;
    position: relative;
    z-index: 1;
}

.product-card__tag {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-strong);
    margin-bottom: 8px;
}

.product-card__header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-card__header p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.product-card__list {
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--color-muted);
    padding: 0 32px 24px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.product-card__list li::before {
    content: '✓';
    color: var(--accent);
    margin-right: 8px;
    font-weight: 700;
}

.product-card .btn {
    position: relative;
    z-index: 1;
    margin: 0 32px 28px;
    width: calc(100% - 64px);
}

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

.testimonial-card {
    background: var(--color-card);
    border-radius: 20px;
    padding: 28px;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    left: 18px;
    font-size: 4rem;
    color: rgba(139, 92, 246, 0.08);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent);
}

.testimonial-card__header {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.testimonial-card__header h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.testimonial-card__header span {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
}

.testimonials__highlight {
    margin-top: 40px;
    padding: 28px 36px;
    border-radius: 24px;
    background: rgba(31, 29, 43, 0.95);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-medium);
}

.faq__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.faq__intro p {
    color: var(--color-muted);
}

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

.faq__item {
    background: var(--color-card);
    border-radius: 16px;
    padding: 20px;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.faq__item:hover {
    border-color: var(--accent);
}

.faq__question {
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq__question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent-strong);
    transition: transform 0.3s ease;
}

.faq__item.active .faq__question::after {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--color-muted);
}

.faq__item.active .faq__answer {
    max-height: 300px;
    margin-top: 12px;
}

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

.contact__info {
    background: var(--color-card);
    border-radius: 24px;
    padding: 32px;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.contact__badge {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    border: 2px solid var(--color-border);
    margin-bottom: 16px;
    color: var(--color-text);
    font-weight: 700;
    font-size: 0.85rem;
}

.contact__meta {
    list-style: none;
    margin: 22px 0;
    display: grid;
    gap: 10px;
}

.contact__meta strong {
    color: var(--color-text);
}

.contact__note {
    margin-top: 18px;
    color: var(--color-muted);
}

.contact__form {
    background: var(--color-card);
    border-radius: 24px;
    padding: 32px;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.form__group {
    margin-bottom: 18px;
}

.form__label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 2px solid rgba(31, 41, 55, 0.1);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(31, 41, 55, 0.4);
}

.form__textarea {
    min-height: 140px;
    resize: vertical;
}

.form__checkbox {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.form__submit {
    width: 100%;
    margin-top: 10px;
}

.form-message {
    margin-top: 16px;
    padding: 12px 18px;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(58, 190, 121, 0.12);
    color: #059669;
    border: 2px solid #059669;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.12);
    color: #DC2626;
    border: 2px solid #DC2626;
}

.activity-feed {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 500;
}

.activity-feed__item {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--color-border);
    border-radius: 16px;
    padding: 12px 18px;
    min-width: 260px;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.activity-feed__item.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer {
    padding: 50px 0;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    background: rgba(31, 29, 43, 0.98);
    color: rgba(255, 255, 255, 0.9);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
}

.footer__logo {
    font-weight: 800;
    font-size: 1.2rem;
}

.footer__copy {
    text-align: right;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .faq__layout {
        grid-template-columns: 1fr;
    }
    .testimonials__highlight {
        flex-direction: column;
        text-align: center;
    }
    .activity-feed {
        position: static;
        margin: 30px;
    }
}

@keyframes breathe {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes float-gentle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.95);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
