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

body {
    font-family: "komet", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #1d1d1f;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 55px;
    font-weight: 700;
    color: #6224cb;
    font-family: "manometer", serif;
    font-weight: 400;
    font-style: normal;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #6224cb;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #6224cb;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1d1d1f;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 100px 20px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-nav-links li {
    margin: 30px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-nav.active .mobile-nav-links li {
    animation: slideInUp 0.5s ease forwards;
}

.mobile-nav.active .mobile-nav-links li:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-nav.active .mobile-nav-links li:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #1d1d1f;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    width: 0;
    height: 2px;
    background: #6224cb;
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #6224cb;
    background: rgba(255, 0, 98, 0.02);
}

.mobile-nav-links a:hover::after {
    width: calc(100% - 40px);
}

.mobile-nav-links a:hover::before {
    left: 0;
}

.mobile-cta {
    margin-top: 40px;
    text-align: center;
    padding: 0 20px;
}

.mobile-cta a {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #6224cb 0%, #bf0a0a 100%);
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
    border: 2px solid transparent;
    text-align: center;
}

.mobile-cta a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-cta a::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 300% 300%;
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderRotate 3s linear infinite;
}

.mobile-cta a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.mobile-cta a:hover::before {
    left: 100%;
}

.mobile-cta a:hover::after {
    opacity: 1;
}

.mobile-cta a:active {
    transform: translateY(1px) scale(0.98);
    transition: all 0.1s ease;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Button System */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    user-select: none;
    outline: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #6224cb 0%, #361174 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6224cb 0%, #762bf6 50%, #3a2263 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgb(106 39 205 / 40%);
}

.btn-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(240, 147, 251, 0.4);
}

.btn-outline {
    background: white;
    color: #6224cb;
    border: 2px solid #6224cb;
}

.btn-outline:hover {
    background: #6224cb;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 0, 98, 0.3);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.3rem;
    gap: 12px;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.95rem;
    gap: 6px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(255, 255, 255, 0.3);*/
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 10;
    color: #1d1d1f;
    padding: 120px 20px 80px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
    line-height: 1.1em;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: #86868b;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stats-overlay {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    color: #1d1d1f;
    z-index: 10;
    opacity: 0;
    animation: fadeInRight 1s ease 1s forwards;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.1);
}

.stat-item {
    margin-bottom: 15px;
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    color: #6224cb;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.processing-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #86868b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.processing-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Story Sections */
.story-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-text p {
    font-size: 1.2rem;
    color: #86868b;
    margin-bottom: 2rem;
}

/* Image Comparison Slider */
.comparison-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
    transition: clip-path 0.3s ease;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Features */
.features {
    padding: 150px 0;
    background: #f5f5f7;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

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

.feature {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    color: #6224cb;
    margin: 0 auto 20px;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature p {
    color: #86868b;
    font-size: 1.1rem;
}

/* Style Gallery */
.style-gallery {
    padding: 150px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.style-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle fill="%23007AFF" fill-opacity="0.05" cx="30" cy="30" r="2"/></g></svg>');
    pointer-events: none;
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #000000, #20317d, #2a0e47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    font-size: 1.3rem;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.gallery-cta {
    text-align: center;
}

.gallery-cta p.cta-subtext {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-top: 30px;
    color: #1d1d1f;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.style-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    cursor: pointer;
    height: 200px;
}

.style-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.style-preview {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.style-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #cdd7e6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.style-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.style-card:hover .style-overlay {
    opacity: 1;
}

.try-style-btn {
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.style-card:hover .try-style-btn {
    transform: translateY(0);
}

.coming-soon-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #3a3a4f;
}

/* Testimonials */
.testimonials {
    padding: 150px 0;
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 40px;
}

.testimonial {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    min-width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 4rem;
    color: #6224cb;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1d1d1f;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-weight: 600;
    color: #6224cb;
    font-size: 1.1rem;
}

.testimonial-role {
    color: #86868b;
    font-size: 0.95rem;
    margin-top: 5px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.carousel-nav {
    background: none;
    border: 2px solid #6224cb;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6224cb;
}

.carousel-nav:hover {
    background: #6224cb;
    color: white;
    transform: translateY(-2px);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e5e7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #6224cb;
    transform: scale(1.2);
}

.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #6224cb;
    transition: width 0.1s linear;
    border-radius: 0 0 24px 24px;
}

/* Pricing */
.pricing {
    padding: 150px 0;
    background: #f5f5f7;
}

.pricing h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing .subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #86868b;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid #6224cb;
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #6224cb;
    color: white;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.pricing-credits {
    color: #86868b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 8px 0;
    color: #86868b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-features svg {
    width: 16px;
    height: 16px;
    color: #34C759;
}

.pricing-cta {
    width: 100%;
    background: #6224cb;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: #0056CC;
    transform: translateY(-2px);
}

/* Payment Methods */
.payment-methods {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.payment-methods h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.payment-methods p {
    color: #86868b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.faq-section {
    padding: 150px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}


.faq-header {
    margin: 0 0 4em 0;
}

.faq-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0rem;
    background: linear-gradient(135deg, #6224cb, #6225cb, #41198d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.faq-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 80px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 0, 98, 0.02);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6224cb, #3a147e);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
    color: white;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, #34C759, #32D74B);
    transform: scale(1.1);
}

.faq-item.active .faq-toggle svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(248, 249, 250, 0.5);
}

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

.faq-answer-content {
    padding: 0 30px;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content strong {
    color: #6224cb;
    font-weight: 600;
}

.faq-answer-content ul {
    margin: 0 0 1em 3em;
}

.faq-contact {
    text-align: center;
}


.faq-contact h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0rem;
    background: linear-gradient(135deg, #171113, #3d1c29, #907c84);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.faq-contact p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1d1d1f;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Final CTA */
.final-cta {
    padding: 150px 0;
    background-image: url(/assets/images/styles/cranberrycore.png);
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: crimson;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1d1d1f;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: #1d1d1f;
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #6224cb;
    font-family: "manometer", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #86868b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6224cb;
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #86868b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #6224cb;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #86868b;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #86868b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6224cb;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px) translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo {
        font-size: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
    }

    .stats-overlay {
        position: static;
        transform: none;
        margin-top: 30px;
        animation: fadeInUp 1s ease 1s forwards;
        display: none;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .comparison-container {
        max-width: 100%;
        height: 300px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .gallery-header h2 {
        font-size: 2.5rem;
    }

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

    .faq-section {
        padding: 100px 0;
    }

    .faq-header h2 {
        font-size: 2.5rem;
    }

    .faq-question {
        padding: 25px 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }

    .faq-answer-content {
        padding: 0 20px;
        font-size: 0.95rem;
    }

    .payment-methods {
        padding: 40px 20px;
        margin-top: 30px;
    }

    .payment-icons {
        gap: 20px;
    }

    .payment-icon {
        width: 70px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .mobile-nav {
        padding: 80px 15px 30px;
    }

    .pricing-grid {
        max-width: 100%;
    }

    .gallery-header h2 {
        font-size: 2rem;
    }

    .faq-header h2 {
        font-size: 2rem;
    }
}

.security-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    font-size: 14px;
    color: #6c757d;
	margin: 3em 0 0 0;
}

.security-info svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #28a745;
}

.security-info span {
    line-height: 1.4;
}