/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* Beautiful animated gradient background */
    background: #0f0a1a;
    color: #1a1a2e;
    line-height: 1.5;
    overflow-x: hidden;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============ ANIMATED BACKGROUND ============ */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 100%;
    background:
        radial-gradient(ellipse 600px 400px at 20% 10%, rgba(255, 64, 129, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 30%, rgba(155, 93, 229, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 50% 80%, rgba(0, 188, 212, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 70% 60%, rgba(255, 183, 77, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, #0f0a1a 0%, #1a0f2e 50%, #0f0a1a 100%);
    z-index: -2;
    animation: bgShift 15s ease-in-out infinite alternate;
}
@keyframes bgShift {
    0% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(15deg); }
    100% { filter: hue-rotate(-10deg); }
}

/* Noise texture overlay */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
}

/* Floating particles container */
.bg-particles {
    position: fixed;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    transition: all .25s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn-primary {
    background: linear-gradient(135deg, #FF4081 0%, #E040FB 50%, #7C4DFF 100%);
    background-size: 200% 200%;
    animation: btnGradient 4s ease infinite;
    color: #fff;
    box-shadow: 0 6px 24px rgba(255, 64, 129, 0.4), 0 0 40px rgba(224, 64, 251, 0.15);
}
@keyframes btnGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(255, 64, 129, 0.5), 0 0 60px rgba(224, 64, 251, 0.2);
}
.btn-primary:active { transform: scale(0.97); }
.btn-outline {
    background: rgba(255, 64, 129, 0.08);
    color: #FF80AB;
    border: 2px solid rgba(255, 64, 129, 0.3);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: rgba(255, 64, 129, 0.15);
    border-color: rgba(255, 64, 129, 0.5);
}
.btn-sm { padding: 12px 18px; font-size: 14px; border-radius: 14px; }
.btn-block { width: 100%; }

/* ============ HEADER ============ */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 12px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 10, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 64, 129, 0.1);
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header__logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #FF4081, #E040FB);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 18px rgba(255, 64, 129, 0.45), 0 0 20px rgba(224, 64, 251, 0.2);
    animation: logoPulse 3s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes logoPulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(255, 64, 129, 0.45), 0 0 20px rgba(224, 64, 251, 0.2); }
    50% { box-shadow: 0 4px 28px rgba(255, 64, 129, 0.6), 0 0 40px rgba(224, 64, 251, 0.3); }
}
.header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.header__logo-name {
    font-weight: 800;
    font-size: 17px;
    color: #fff;
    letter-spacing: -0.4px;
    text-shadow: 0 0 20px rgba(255, 64, 129, 0.3);
}
.header__logo-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}
.badge-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: linear-gradient(135deg, #FF4081, #E040FB);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 4px 18px rgba(255, 64, 129, 0.45);
}

/* ============ HERO ============ */
.hero {
    padding: 20px 16px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===== Carousel: central card + 2 faded side cards ===== */
.carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
    margin-bottom: 4px;
}

/* Base card style */
.carousel__card {
    transition: all .6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Side cards — smaller, semi-transparent, faded */
.carousel__card--side {
    width: 64px;
    height: 100px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.12), rgba(124, 77, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
}
.carousel__card--left {
    transform: scale(0.9) translateX(6px);
    order: 0;
}
.carousel__card--right {
    transform: scale(0.9) translateX(-6px);
    order: 2;
}
.carousel__card--side:hover { opacity: 0.8; }

/* Central card — big, prominent */
.carousel__card--center {
    width: 180px;
    height: 240px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.15), rgba(224, 64, 251, 0.15), rgba(124, 77, 255, 0.15));
    border: 1px solid rgba(255, 64, 129, 0.3);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 64, 129, 0.2),
        0 0 100px rgba(155, 93, 229, 0.1);
    z-index: 2;
    order: 1;
    animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* When a side card rotates to center, it becomes the central one (JS toggles classes) */
.carousel__card.is-center {
    width: 180px;
    height: 240px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.15), rgba(224, 64, 251, 0.15), rgba(124, 77, 255, 0.15));
    border: 1px solid rgba(255, 64, 129, 0.3);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 64, 129, 0.2),
        0 0 100px rgba(155, 93, 229, 0.1);
    z-index: 3;
    opacity: 1;
    order: 1 !important;
    animation: cardFloat 5s ease-in-out infinite;
}
.carousel__card.is-side {
    width: 64px;
    height: 100px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.12), rgba(124, 77, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    z-index: 1;
    animation: none;
}
.carousel__card.is-side-left {
    transform: scale(0.9) translateX(6px);
    order: 0;
}
.carousel__card.is-side-right {
    transform: scale(0.9) translateX(-6px);
    order: 2;
}

/* Lock badge on center card */
.carousel__lock {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 4;
    background: rgba(15, 10, 26, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 64, 129, 0.3);
    color: #fff;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Image/video placeholders (replace emoji with media when adding) */
.carousel__placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 36px;
    opacity: 0.3;
    z-index: 1;
}
.carousel__placeholder--center {
    font-size: 54px;
    opacity: 0.4;
}

/* Video fills card */
.carousel__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}
.carousel__video.is-empty { display: none; }

/* Allow images to fill cards */
.carousel__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pagination dots on center card */
.carousel__dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 4;
}
.carousel__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all .2s;
}
.carousel__dot--active {
    background: #FF4081;
    width: 18px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(255, 64, 129, 0.6);
}

/* Floating badges */
.hero__float {
    position: absolute;
    background: rgba(15, 10, 26, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 64, 129, 0.2);
    color: #fff;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.hero__float--1 {
    top: 0; right: 0;
    animation: floatBounce 4s ease-in-out infinite;
}
.hero__float--2 {
    bottom: 20px; left: -4px;
    animation: floatBounce 4s ease-in-out infinite 1s;
}
.hero__float--3 {
    bottom: -4px; right: 10px;
    animation: floatBounce 4s ease-in-out infinite 2s;
    border-color: rgba(124, 77, 255, 0.3);
}
@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -0.6px;
    text-shadow: 0 2px 20px rgba(255, 64, 129, 0.2);
}
.hero__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ============ BEFORE / AFTER ============ */
.ba-section { padding: 0 16px 24px; }
.ba-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}
.ba-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ba-card__badge {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.ba-card__tag {
    background: rgba(255, 64, 129, 0.15);
    color: #FF80AB;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.ba-compare {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}
.ba-compare__before,
.ba-compare__after {
    position: absolute;
    inset: 0;
}
.ba-compare__img {
    width: 100%; height: 100%;
    display: grid; place-items: center;
}
.ba-compare__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-compare__img--blurry {
    background: linear-gradient(135deg, #ddd2d5 0%, #c8b9be 50%, #d4c8cd 100%);
}
.ba-compare__img--clear {
    background: linear-gradient(135deg, #ffd6e5 0%, #ffc0d6 50%, #ffadc8 100%);
}
.ba-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.ba-placeholder__icon { font-size: 48px; opacity: 0.7; }
.ba-placeholder__label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    background: rgba(0,0,0,0.4);
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}
.ba-placeholder--clear .ba-placeholder__label {
    background: rgba(255, 64, 129, 0.75);
}
.ba-compare__after { clip-path: inset(0 50% 0 0); }
.ba-compare__slider {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
}
.ba-compare__slider::before {
    content: '⟷';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    background: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 16px;
    color: #FF4081;
    box-shadow: 0 3px 14px rgba(0,0,0,0.2);
}
.ba-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
}
.ba-card__counter {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* ============ FEATURE CARDS ============ */
.features {
    padding: 0 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px 16px;
    backdrop-filter: blur(8px);
    transition: all .3s ease;
}
.feature-card:hover {
    border-color: rgba(255, 64, 129, 0.3);
    background: rgba(255, 64, 129, 0.06);
    box-shadow: 0 4px 20px rgba(255, 64, 129, 0.1);
    transform: translateX(4px);
}
.feature-card__icon {
    width: 46px; height: 46px;
    background: rgba(255, 64, 129, 0.12);
    border-radius: 14px;
    display: grid; place-items: center;
    font-size: 20px;
    flex-shrink: 0;
}
.feature-card__body {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.feature-card__body h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.feature-card__body p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============ SECTION TITLES ============ */
.section-title {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
    padding: 0 16px;
}

/* ============ HOW IT WORKS ============ */
.how-section {
    padding: 0 16px 24px;
    display: flex;
    flex-direction: column;
}
.steps {
    display: flex;
    align-items: center;
    gap: 6px;
}
.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 8px 14px;
}
.step__num {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, #FF4081, #E040FB);
    color: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(255, 64, 129, 0.35);
}
.step p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.35;
}
.step__arrow {
    font-size: 16px;
    color: #FF4081;
    font-weight: 700;
    flex-shrink: 0;
    animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ============ STATS ============ */
.stats {
    padding: 0 16px 24px;
    display: flex;
    gap: 10px;
}
.stat {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 8px;
}
.stat__num {
    display: block;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF4081, #E040FB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat__label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

/* ============ GALLERY ===== */
.gallery-section { padding: 0 0 24px; }

.gallery-scroll {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
}

/* One pair = Before + Arrow + After */
.gallery-pair {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
}
.gallery-pair__side {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Photo card */
.gallery-photo {
    width: 140px;
    height: 185px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.gallery-photo__label {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(4px);
}
.gallery-photo__label--after {
    background: linear-gradient(135deg, #FF4081, #E040FB);
    box-shadow: 0 2px 8px rgba(255, 64, 129, 0.4);
}

/* Different blurry backgrounds for variety */
.gallery-photo--blurry {
    background:
        radial-gradient(ellipse 80px 100px at 50% 40%, #d4a574 0%, #c49464 40%, transparent 70%),
        linear-gradient(135deg, #7a8a9e 0%, #9aa5b4 50%, #8a95a5 100%);

}
.gallery-photo--blurry-2 {
    background:
        radial-gradient(ellipse 90px 80px at 50% 35%, #a8c090 0%, #8faf7a 40%, transparent 70%),
        linear-gradient(135deg, #6b7c8e 0%, #8494a5 50%, #7a8b9c 100%);
  
}
.gallery-photo--blurry-3 {
    background:
        radial-gradient(ellipse 70px 110px at 50% 45%, #b0a0c0 0%, #9a8aab 40%, transparent 70%),
        linear-gradient(135deg, #8a7a6a 0%, #a09080 50%, #958575 100%);
   
}

/* Clear backgrounds (same patterns but sharp + vibrant) */
.gallery-photo--clear {
    background:
        radial-gradient(ellipse 80px 100px at 50% 40%, #f0c8a0 0%, #e0b890 40%, transparent 70%),
        linear-gradient(135deg, #a0c8f0 0%, #c8b8f0 50%, #f0c8d8 100%);
}
.gallery-photo--clear-2 {
    background:
        radial-gradient(ellipse 90px 80px at 50% 35%, #d0e8b8 0%, #c0d8a8 40%, transparent 70%),
        linear-gradient(135deg, #80d0a0 0%, #a0e0c0 50%, #c0f0d0 100%);
}
.gallery-photo--clear-3 {
    background:
        radial-gradient(ellipse 70px 110px at 50% 45%, #e0d0f0 0%, #d0c0e8 40%, transparent 70%),
        linear-gradient(135deg, #f0a0c0 0%, #e8b8d0 50%, #f0d0e0 100%);
}

/* Arrow between before/after */
.gallery-pair__arrow {
    position: relative;
    width: 36px;
    height: 36px;
    margin: 0 4px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}
.gallery-pair__arrow-icon {
    color: #FF4081;
    animation: arrowSlide 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(255, 64, 129, 0.5));
}
@keyframes arrowSlide {
    0%   { transform: translateX(-4px); opacity: 0.4; }
    40%  { transform: translateX(4px);  opacity: 1; }
    60%  { transform: translateX(4px);  opacity: 1; }
    100% { transform: translateX(-4px); opacity: 0.4; }
}

/* Sparkles around arrow */
.gallery-pair__sparkle {
    position: absolute;
    color: #fff;
    font-size: 8px;
    animation: arrowSparkle 2.2s ease-in-out infinite;
    text-shadow: 0 0 6px rgba(255, 64, 129, 0.6);
    pointer-events: none;
}
.gallery-pair__sparkle--1 { top: -6px; right: -2px; animation-delay: 0s; font-size: 7px; }
.gallery-pair__sparkle--2 { bottom: -4px; left: -4px; animation-delay: 0.7s; font-size: 10px; }
.gallery-pair__sparkle--3 { top: 2px; left: -8px; animation-delay: 1.4s; font-size: 6px; }
@keyframes arrowSparkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.3) rotate(180deg); }
}

/* ============ TRUST ============ */
.trust-section { padding: 0 16px 24px; }
.trust-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(8px);
}
.trust-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.trust-card__stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.trust-card__stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.trust-card__num {
    font-size: 18px;
    font-weight: 800;
    color: #FF4081;
}
.trust-card__label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}
.trust-card__users {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-avatars { display: flex; }
.trust-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid rgba(15, 10, 26, 0.8);
    margin-left: -6px;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-avatar:nth-child(1) { background: linear-gradient(135deg, #FF4081, #E040FB); color: #fff; }
.trust-avatar:nth-child(2) { background: linear-gradient(135deg, #7C4DFF, #536DFE); color: #fff; }
.trust-avatar:nth-child(3) { background: linear-gradient(135deg, #00BCD4, #26C6DA); color: #fff; }
.trust-avatar:nth-child(4) { background: rgba(255, 255, 255, 0.1); color: rgba(255,255,255,0.5); font-size: 9px; }
.trust-card__count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* ============ TESTIMONIAL ============ */
.testimonial { padding: 0 16px 24px; }
.testimonial__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(8px);
}
.testimonial__stars {
    color: #FFB800;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
}
.testimonial__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial__author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.testimonial__avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #FF4081, #E040FB);
    color: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(255, 64, 129, 0.3);
}
.testimonial__name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.testimonial__info {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============ PRICING ============ */
.pricing-section { padding: 0 16px 24px; }
.pricing-cards {
    display: flex;
    gap: 10px;
}
.pricing-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    position: relative;
    backdrop-filter: blur(8px);
}
.pricing-card--pro {
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.15), rgba(124, 77, 255, 0.15));
    border-color: rgba(255, 64, 129, 0.3);
    box-shadow: 0 8px 32px rgba(255, 64, 129, 0.15);
}
.pricing-card--pro .pricing-card__name,
.pricing-card--pro .pricing-card__price { color: #fff; }
.pricing-card--pro .pricing-card__period { color: rgba(255,255,255,0.5); }
.pricing-card--pro .pricing-card__list li { color: rgba(255,255,255,0.7); }
.pricing-card--pro .btn-primary {
    background: #fff;
    color: #FF4081;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    animation: none;
}
.pricing-card__hot {
    position: absolute;
    top: -11px;
    background: linear-gradient(135deg, #FFB800, #FF9100);
    color: #1a1a2e;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}
.pricing-card__name {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 6px;
}
.pricing-card__price {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}
.pricing-card__period {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}
.pricing-card__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.pricing-card__list li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    padding-left: 2px;
}
.pricing-card .btn { width: 100%; }

/* ============ WHY US ============ */
.why-us { padding: 0 16px 24px; }
.why-us__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.why-us__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
.why-us__check {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, #FF4081, #E040FB);
    color: #fff;
    border-radius: 8px;
    display: grid; place-items: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 64, 129, 0.3);
}

/* ============ FAQ ============ */
.faq-section { padding: 0 16px 24px; }
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}
.faq-item.is-open { border-color: rgba(255, 64, 129, 0.4); }
.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.faq-item__arrow {
    font-size: 16px;
    color: #FF4081;
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 8px;
}
.faq-item.is-open .faq-item__arrow { transform: rotate(180deg); }
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.faq-item.is-open .faq-item__answer { max-height: 200px; }
.faq-item__answer p {
    padding: 0 16px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* ============ FINAL CTA ============ */
.final-cta { padding: 0 16px 24px; }
.final-cta__card {
    background: linear-gradient(135deg, #FF4081 0%, #E040FB 40%, #7C4DFF 100%);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(255, 64, 129, 0.3);
}
.final-cta__card::before {
    content: '';
    position: absolute;
    top: -50px; right: -30px;
    width: 140px; height: 140px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    animation: orbFloat 6s ease-in-out infinite;
}
.final-cta__card::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -30px;
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: orbFloat 6s ease-in-out infinite 2s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}
.final-cta__card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    position: relative;
}
.final-cta__card p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    position: relative;
}
.final-cta__card .btn-primary {
    background: #fff;
    color: #FF4081;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    position: relative;
    margin-top: 4px;
    animation: none;
}

/* ============ FOOTER ============ */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px 16px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__socials {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: grid; place-items: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all .25s;
}
.social-link:hover {
    background: linear-gradient(135deg, #FF4081, #E040FB);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.3);
}
.footer__links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer__links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    transition: color .2s;
}
.footer__links a:hover { color: #FF80AB; }
.footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF4081, #E040FB);
    border-radius: 4px;
}
