body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #0f172a;
    background-color: #f8fafc; /* For the sections below the hero */
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden; /* keep video columns contained */
}

/* Crystal White Theme Navbar */
.pill-nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 8px 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.05), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    z-index: 9999;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Dark mode for pill-nav on dark sections */
.pill-nav.dark-mode {
    background: rgba(15, 15, 20, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.pill-nav .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b0f14;
    letter-spacing: -0.03em;
    text-decoration: none;
    transition: color 0.3s;
}

.pill-nav.dark-mode .logo {
    color: #ffffff;
}

.pill-nav .nav-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
}

.pill-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.pill-nav .nav-links a {
    text-decoration: none;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
}

.pill-nav.dark-mode .nav-links a {
    color: rgba(255,255,255,0.6);
}

.pill-nav .nav-links a:hover,
.pill-nav .nav-links a.active {
    color: #0b0f14;
}

.pill-nav.dark-mode .nav-links a:hover,
.pill-nav.dark-mode .nav-links a.active {
    color: #ffffff;
}

.pill-nav .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: #0b0f14;
    border-radius: 50%;
}

.pill-nav.dark-mode .nav-links a.active::after {
    background-color: #ffffff;
}

.hero-container {
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.badge {
    background-color: #f1f2f4;
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-flex;
}

h1 {
    font-family: 'Instrument Serif', serif;
    font-size: 4.5rem;
    font-weight: 500;
    color: #0f172a;
    margin: 0 0 16px 0;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.grey-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.15em;
    color: #798696;
    letter-spacing: normal;
}

p.subtitle {
    font-size: 1.05rem;
    color: #555c65;
    margin: 0 0 32px 0;
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
}

.cta-button {
    background-color: #111827;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 20px;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #1f2937;
    transform: translateY(-2px);
}

/* Glaze-style Entrance Animation - Smoother & More Refined */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-container > * {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    will-change: transform, opacity;
}

.hero-container .badge { animation-delay: 0.1s; }
.hero-container h1 { animation-delay: 0.2s; }
.hero-container .subtitle { animation-delay: 0.4s; }
.hero-container .cta-button { animation-delay: 0.5s; }

/* Video Column Styles */
.video-columns-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.video-column {
    width: 250px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 0;
    /* Softer Fade */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
}

/* Place column in the exact midpoint of each side space.
   Hero = 800px centered. Side space = (100% - 800px)/2.
   Column center = side_space/2 from edge = (100%-800px)/4 from edge.
   Column left edge = center - 105px (half of 210px width). */
.column-left {
    left: calc((100% - 800px) / 4 - 105px);
}

.column-right {
    right: calc((100% - 800px) / 4 - 105px);
}

.video-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-column video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 14px;
    background-color: #f1f2f4;
}

/* Animations */
@keyframes scroll-down {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0%); }
}

@keyframes scroll-up {
    0% { transform: translateY(0%); }
    100% { transform: translateY(-50%); }
}

.column-left .video-track {
    animation: scroll-down 40s linear infinite;
}

.column-right .video-track {
    animation: scroll-up 40s linear infinite;
}

@media (max-width: 1024px) {
    .video-columns-wrapper { padding: 0 20px; }
    .video-column { width: 170px; }
}

@media (max-width: 768px) {
    body, html { justify-content: flex-start; padding-top: 100px; }
    h1 { font-size: 3rem; }
    p.subtitle { font-size: 1.1rem; }
    .pill-nav { top: 16px; width: 95%; padding: 8px 16px; }
    
    .video-columns-wrapper {
        position: relative;
        width: 100%;
        height: 220px;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        padding: 0;
        margin-top: 40px;
        -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }

    .video-column {
        width: 100%;
        height: auto;
        flex-direction: row;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .video-track {
        flex-direction: row;
    }

    .video-column video {
        width: 110px;
        height: 195px; /* 9:16 */
    }

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

    .column-left .video-track, 
    .column-right .video-track {
        animation: scroll-left 30s linear infinite;
    }
}
/* Feature Grid Section */
.feature-grid-section {
    width: 100%;
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px 60px 20px;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 72px;
}

.section-header h2 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 3.2rem;
    font-weight: 500;
    color: #0f172a;
    margin: 0 0 20px 0;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.section-header.dark h2 {
    color: #ffffff;
}

.section-header p {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.section-header.dark p {
    color: #94a3b8;
}

.feature-grid {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(400px, auto);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.03);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.grid-cell {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    position: relative;
}

/* Remove borders for edges */
.feature-grid .grid-cell:nth-child(2n) {
    border-right: none;
}
.feature-grid .grid-cell:nth-last-child(-n+2) {
    border-bottom: none;
}

.grid-content {
    max-width: 420px;
}

.grid-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: #0f172a;
    margin: 0 0 16px 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.grid-desc {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .section-header h2 { font-size: 2.8rem; }
    .section-header { margin-bottom: 48px; }
    .feature-grid { grid-template-columns: 1fr; }
    .grid-cell { padding: 40px 24px; border-right: none; border-bottom: 1px solid #e2e8f0; }
    .feature-grid .grid-cell:nth-last-child(-n+2) { border-bottom: 1px solid #e2e8f0; }
    .feature-grid .grid-cell:last-child { border-bottom: none; }
    .grid-text.row-2 { order: 2; }
    .grid-image.row-2 { order: 1; }
}
/* Feature Grid Specific Mockups */
.mockup-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Row 1 Mockup */
.row-1-images {
    display: flex;
    gap: 16px;
    align-items: center;
}

.row-1-images video {
    width: 130px;
    height: 240px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #cbd5e1;
}

.row-1-images video:first-child { opacity: 0.6; filter: blur(2px); transform: scale(0.9); }
.row-1-images video:nth-child(2) { z-index: 2; position: relative; }

.upload-btn-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    white-space: nowrap;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.6);
}

/* Row 2 Mockup */
.progress-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 320px;
    padding: 24px;
}

.progress-header {
    color: #0f172a;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 16px;
}

.progress-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}

.progress-step:last-child { margin-bottom: 0; }

.step-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0f172a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    z-index: 2;
}

.step-line {
    position: absolute;
    left: 10px;
    top: 22px;
    width: 2px;
    height: calc(100% + 2px);
    background: #e2e8f0;
    z-index: 1;
}

.step-icon.loading {
    background: transparent;
    border: 2px solid #e2e8f0;
    border-top-color: #0f172a;
    animation: spin 1s linear infinite;
}

.step-text {
    font-weight: 500;
    color: #0f172a;
    font-size: 1.05rem;
    line-height: 1.2;
}

.step-subtext {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 4px;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

/* Row 3 Mockup */
.row-3-images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-3-images video {
    width: 120px;
    height: 220px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background-color: #e2e8f0;
    position: relative;
    z-index: 1;
}

.row-3-images video.left {
    transform: rotate(-8deg) translateX(30px);
    opacity: 0.9;
}

.row-3-images video.center {
    z-index: 2;
    transform: translateY(20px) scale(1.1);
}

.row-3-images video.right {
    transform: rotate(8deg) translateX(-30px);
    opacity: 0.7;
    filter: blur(1px);
}
/* Page 3 Dark Section */
.dark-section {
    width: 100%;
    background-image: url('bg3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px 80px 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.dark-card {
    max-width: 1100px;
    width: 100%;
    background-image: url('card3.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.dark-card-content {
    flex: 1;
    max-width: 480px;
    z-index: 10;
}

.dark-title {
    font-size: 3rem;
    font-weight: 500;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.dark-desc {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.dark-btn {
    background: #000000;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.dark-btn:hover {
    background: #111111;
    transform: translateY(-2px);
}

.floating-videos {
    flex: 1;
    height: 460px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.float-vid {
    position: absolute;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    background: #2a2a2a;
}

.float-vid.vid-1 {
    width: 160px;
    height: 280px;
    top: 0px;
    left: -10px;
    transform: rotate(-25deg) rotateX(10deg);
    z-index: 1;
    opacity: 0.8;
    filter: blur(1px);
}

.float-vid.vid-2 {
    width: 190px;
    height: 330px;
    top: 60px;
    left: 110px;
    transform: rotate(-10deg) translateZ(40px);
    z-index: 3;
}

.float-vid.vid-3 {
    width: 180px;
    height: 310px;
    bottom: 10px;
    right: 0px;
    transform: rotate(15deg) translateZ(-20px);
    z-index: 2;
}

.float-vid.vid-4 {
    width: 140px;
    height: 250px;
    top: 20px;
    right: -30px;
    transform: rotate(25deg) translateZ(-60px);
    z-index: 0;
    opacity: 0.6;
    filter: blur(2px);
}

@media (max-width: 1024px) {
    .dark-card { flex-direction: column; padding: 60px 40px; text-align: center; }
    .dark-card-content { max-width: 100%; margin-bottom: 40px; }
    .floating-videos { width: 100%; height: 350px; }
}
@media (max-width: 768px) {
    .dark-card { padding: 40px 20px; }
    .float-vid.vid-1 { width: 120px; height: 210px; }
    .float-vid.vid-2 { width: 140px; height: 250px; }
    .float-vid.vid-3 { width: 130px; height: 230px; }
    .float-vid.vid-4 { width: 100px; height: 180px; }
}

/* Comparison Section */
.comparison-section {
    width: 100%;
    background-image: url('bg3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px 140px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}

.comparison-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.comp-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    width: 320px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.comp-card.side {
    background: #fdfdfd;
    opacity: 0.95;
    padding: 32px 24px;
}

.comp-card.left {
    transform: scale(0.9) rotate(-3deg) translateY(20px);
    z-index: 1;
}

.comp-card.right {
    transform: scale(0.9) rotate(3deg) translateY(20px);
    z-index: 1;
}

.comp-card.center {
    transform: scale(1.05);
    z-index: 10;
    padding: 48px 36px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.comp-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #475569;
    margin: 0 0 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: -0.02em;
}

.comp-card.center .comp-title {
    font-size: 1.6rem;
    color: #0f172a;
    margin-bottom: 36px;
}

.check-badge {
    background: #111827;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

.comp-card.center .comp-item {
    color: #334155;
    background: #f8fafc;
}

.item-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    flex-shrink: 0;
}

.comp-card.center .item-icon {
    background: #111827;
    border-color: #111827;
    color: white;
    font-size: 10px;
}

@media (max-width: 1024px) {
    .comparison-container {
        flex-direction: column;
        gap: 40px;
    }
    .comp-card { width: 100%; max-width: 400px; }
    .comp-card.left, .comp-card.right, .comp-card.center {
        transform: scale(1) rotate(0) translateY(0);
    }
}

/* Features Media Section */
.features-media-section {
    width: 100%;
    background-image: url('background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.features-media-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fm-card {
    background-image: url('bg3.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    /* Making them all the exact same size inherently via grid + flex */
    height: 100%; 
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fm-card-text {
    color: white; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fm-card h3 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.45rem;
    font-weight: 500; /* Normal, not too thick */
    margin: 0 0 12px 0;
    color: white;
    letter-spacing: -0.01em;
}

.fm-card p {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.05rem;
    color: #d1d5db; 
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.fm-media {
    flex: 1;
    width: 100%;
    min-height: 250px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.fm-media img, .fm-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

@media (max-width: 900px) {
    .features-media-container {
        grid-template-columns: 1fr;
    }
    .fm-media { height: 300px; flex: none; }
}

/* FAQ Section */
.faq-section {
    width: 100%;
    background-image: url('background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.faq-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.faq-left {
    flex: 0 0 320px;
    position: sticky;
    top: 40px;
}

.faq-badge {
    background-color: #eff6ff;
    color: #3b82f6;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.faq-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.faq-desc {
    font-size: 1.15rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.faq-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.2s;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
    padding-right: 20px;
    line-height: 1.5;
}

.faq-icon {
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
    color: #3b82f6;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    margin: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    margin-top: 16px;
    opacity: 1;
}

@media (max-width: 900px) {
    .faq-container { flex-direction: column; gap: 40px; }
    .faq-left { position: static; max-width: 100%; }
}

/* Footer Section */
.site-footer {
    width: 100%;
    background-image: url('bg3.jpg');
    background-size: cover;
    background-position: center;
    border-top-left-radius: 64px;
    border-top-right-radius: 64px;
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 28px 0;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links li a {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    font-weight: 400;
}

.footer-links li a:hover {
    color: #ffffff;
}

/* Pricing Section */
.pricing-section {
    width: 100%;
    background-image: url('bg3.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 70px;
}

.toggle-bg {
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 6px;
    display: flex;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 10px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pink-text {
    color: #f472b6;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.badge-discount {
    background: #fdf2f8;
    color: #ec4899;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-header-text {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.pricing-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-weight: 400;
}

.pricing-container {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    background-color: #ffffff;
    background-image: url('background.svg');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: relative;
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0,0.05);
}

.price-card.popular {
    transform: scale(1.05); 
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.price-header h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: #334155;
    margin: 0;
    font-weight: 600;
}

.price-amount {
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    display: flex;
    align-items: baseline;
    margin-bottom: 4px;
}

.price-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 4px;
}

.price-amount .amount {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.price-old {
    font-family: 'Inter', sans-serif;
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.price-period {
    font-family: 'Inter', sans-serif;
    color: #64748b;
    font-size: 0.95rem;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.price-features {
    font-family: 'Inter', sans-serif;
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.4;
}

.price-features li.bold {
    font-weight: 700;
    color: #0f172a;
}

.price-features li .check {
    color: #0f172a;
    font-weight: 800;
    font-size: 1.1rem;
}

.price-btn {
    background: #ffffff;
    color: #0f172a;
    border: 2px solid #e2e8f0;
    width: 100%;
    padding: 13px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.2s;
}

.creator-btn {
    background-image: url('bg3.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    border: none;
}

.creator-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.price-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.price-card.popular .price-btn {
    background: #0f172a;
    color: white;
    border: none;
}

.price-card.popular .price-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .price-card.popular {
        transform: scale(1);
    }
    .pricing-toggle {
        flex-direction: column;
        gap: 12px;
    }
}
