:root {
    --bg-color: #000000;
    --text-color: #F5F5F7;
    --text-muted: #86868b;
    --accent-red: #FF3B30;
    --accent-red-glow: rgba(255, 59, 48, 0.4);
    --glass-bg: rgba(25, 25, 25, 0.8);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(20px);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.4;
    overflow-x: hidden;
    font-size: 17px;
}






.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-secondary);
    letter-spacing: -0.015em;
    font-weight: 600;
}

h1 {
    letter-spacing: -0.03em;
}

.accent-text {
    color: var(--text-color);
    background: linear-gradient(90deg, #fff, #a1a1a6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    width: auto;
}

/* ══ NAV ══ */
.sticky-header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1100px;
    height: 60px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.75rem;
    background: rgba(8, 8, 8, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.sticky-header.scrolled {
    background: rgba(4, 4, 4, 0.88);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.sticky-header.header-hidden {
    transform: translate(-50%, -120%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--accent-red);
    background: transparent;
}

.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    border-radius: 980px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    margin-right: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-switch ion-icon {
    font-size: 1.1rem;
    color: var(--accent-red);
}

.mobile-lang-switch {
    margin-right: 0;
    margin-bottom: 1.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
}

.header-cta {
    display: flex;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 1.6rem;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
    transform: scale(1.02);
    background-color: #ffffff;
}

.btn-outline:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.1);
}

.full-width {
    width: 100%;
    margin-top: auto;
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(to bottom, #0a0a0a, #000);
    text-align: center;
}

.page-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    margin: 0 auto;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 500px;
    letter-spacing: -0.01em;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    perspective: 2000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-tilt-container {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1.58/1;
    position: relative;
    perspective: 1000px;
    cursor: pointer;
}

.card-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-inner.flipped {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.card-back {
    transform: rotateY(180deg);
}

.card-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}

.card-interaction-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    animation: pulseHint 2s infinite ease-in-out;
    cursor: pointer;
}

.card-interaction-hint ion-icon {
    font-size: 1.2rem;
}

@keyframes pulseHint {

    0%,
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }

    50% {
        opacity: 0.7;
        transform: translateY(-3px);
    }
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 30, 0.1) 0%, transparent 70%);
    top: 20%;
    right: -10%;
    z-index: -1;
    filter: blur(50px);
    max-width: 100vw;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-mobile-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10000;
}

.close-mobile-menu:hover {
    color: var(--accent-red);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links li {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger animations for links */
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--accent-red);
}

.mobile-menu-cta {
    margin-top: 4rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    transition-delay: 0.5s;
}

.mobile-menu-overlay.active .mobile-menu-cta {
    transform: translateY(0);
    opacity: 1;
}

/* Steps Section */
.how-it-works {
    padding: 10rem 0;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 6rem;
    letter-spacing: -0.03em;
}

.section-title.left {
    text-align: left;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step-card {
    background: rgba(26, 26, 28, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 32, 0.9);
}

.step-icon {
    font-size: 3.5rem;
    color: var(--accent-red);
    margin-bottom: 2rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.6);
}

/* Pricing Section */
.pricing-section {
    padding: 10rem 0;
    background: var(--bg-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.price-card {
    background: rgba(26, 26, 28, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center all items horizontally */
    text-align: center;
    /* Center text within elements */
    transition: var(--transition-smooth);
}

.price-card.featured {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(30, 30, 32, 0.9);
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.description {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.features {
    list-style: none;
    margin-bottom: 3rem;
    width: fit-content;
    text-align: left;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.features ion-icon {
    color: var(--accent-red);
}

.more-offers-msg {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.more-offers-msg a {
    text-decoration: underline;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 10rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.contact-info .subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    line-height: 1.5;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-item ion-icon {
    font-size: 2.5rem;
}

.info-item span {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.info-item p {
    font-size: 1.5rem;
    font-weight: 600;
}

.glass-form {
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background: rgba(255, 255, 255, 0.03);
}

/* Footer */
.main-footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    color: var(--accent-red);
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(255, 0, 30, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 0, 30, 0.6);
}

/* Staggered Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0;
    animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
    z-index: 10;
}

.close-modal:hover {
    color: var(--accent-red);
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

#selected-plan-display {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#selected-plan-display span {
    color: var(--accent-red);
    font-weight: 700;
}

.product-info-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-includes {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.product-includes li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.product-includes li::before {
    content: '✓';
    color: var(--accent-red);
    font-weight: bold;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 1rem;
}

.qty-group input {
    text-align: center;
    padding-right: 1rem;
}

/* ── Portfolio Type Selector (Modal Step 1) ── */
.portfolio-step-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.portfolio-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.1rem 0.75rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    color: var(--text-color);
    font-family: var(--font-primary);
}

.portfolio-type-btn:hover {
    background: rgba(255, 59, 48, 0.08);
    border-color: rgba(255, 59, 48, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 59, 48, 0.15);
}

.portfolio-type-btn .pt-icon {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 0.15rem;
}

.portfolio-type-btn strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.portfolio-type-btn small {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.02em;
}

/* ── Selected portfolio type pill (Step 2 header) ── */
.selected-pt-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 100px;
    padding: 0.45rem 1rem 0.45rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    width: fit-content;
}

#pt-change-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--accent-red);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0;
    font-family: var(--font-primary);
    transition: opacity 0.2s;
}

#pt-change-btn:hover {
    opacity: 0.7;
}

/* ── Contextual info panel ── */
.pt-info-panel {
    background: rgba(255, 59, 48, 0.05);
    border: 1px solid rgba(255, 59, 48, 0.18);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.25rem;
}

.pt-info-header {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.pt-info-header strong {
    color: var(--accent-red);
}

.pt-info-msg {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.pt-info-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pt-info-list li {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    line-height: 1.4;
}

/* Textarea style for Carrd form */
.glass-form textarea,
#portfolio-dynamic-fields textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    resize: vertical;
    min-height: 70px;
}

#portfolio-dynamic-fields textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 480px) {
    .portfolio-type-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .portfolio-type-btn {
        padding: 0.85rem 0.5rem;
    }

    .portfolio-type-btn .pt-icon {
        font-size: 1.3rem;
    }
}


/* Mobile Responsive */
@media (max-width: 992px) {

    .hero-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .contact-info .subtitle {
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }

    .section-title.left {
        text-align: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {

    /* ── Hide desktop CTA & hamburger ── */
    .header-cta {
        display: none;
    }

    /* ── Hide the 3-dot / hamburger button ── */
    .mobile-menu-btn {
        display: none !important;
    }

    /* ── Floating curved transparent header ── */
    .sticky-header {
        top: 14px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 32px);
        max-width: 440px;
        height: auto;
        padding: 0.65rem 1.1rem 0.55rem;
        border-radius: 20px;
        background: rgba(6, 6, 6, 0.60);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        border: 1px solid rgba(255, 255, 255, 0.09);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.04) inset;
        right: auto;
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    /* Scrolled state stays consistent */
    .sticky-header.scrolled {
        background: rgba(8, 8, 8, 0.80);
        border-color: rgba(255, 255, 255, 0.11);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65),
            0 0 0 1px rgba(255, 255, 255, 0.06) inset;
        padding: 0.65rem 1.1rem 0.55rem;
        top: 14px;
    }

    /* Nav container: two rows */
    .nav-container {
        flex-wrap: wrap;
        gap: 0;
        width: 100%;
    }

    /* Row 1: logo fills the space */
    .logo {
        flex: 1;
    }

    .logo img {
        height: 24px;
    }

    /* Row 2: nav links as a scrollable horizontal strip */
    .nav-links {
        display: flex !important;
        flex: 0 0 100%;
        /* full width second row */
        gap: 0;
        justify-content: space-between;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-top: 0.45rem;
        margin-top: 0.35rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links li {
        flex-shrink: 0;
    }

    .nav-links a {
        font-size: 0.68rem;
        letter-spacing: 0.04em;
        padding: 0.15rem 0.3rem;
        color: rgba(255, 255, 255, 0.55);
        white-space: nowrap;
    }

    .nav-links a.active,
    .nav-links a:hover {
        color: var(--accent-red);
    }

    /* ── Other mobile layout tweaks ── */
    .hero-title {
        font-size: 2.8rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .page-hero {
        padding: 120px 0 50px;
    }

    .hero-section {
        padding-top: 110px;
    }

    .price-card {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .more-offers-msg {
        margin-top: 2rem;
        padding: 1rem;
    }

    .pricing-section,
    .contact-section,
    .how-it-works-section {
        padding: 5rem 0;
    }
}


/* Extra Mobile Responsive (Small Phones) */
@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero-section {
        padding-top: 80px;
        min-height: auto;
    }

    .page-hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .price-card {
        padding: 1.5rem 1rem;
    }

    .price {
        font-size: 2rem;
    }

    .modal-content {
        max-width: 95%;
        margin: 10px auto;
        padding: 1.5rem;
    }

    .step-card {
        padding: 1.5rem 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

/* ══════════════════════════════════════════
   HOMEPAGE EXTRA SECTIONS
══════════════════════════════════════════ */

/* ── Shared Section Helpers ── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-red {
    color: var(--accent-red);
}

/* ── Red Button Variant ── */
.btn-red {
    background-color: var(--accent-red);
    color: #fff;
    font-weight: 600;
}

.btn-red:hover {
    background-color: #cc2200;
    transform: scale(1.02);
}

/* ── Hero Eyebrow ── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-red);
    animation: pulseHint 1.8s infinite ease-in-out;
}

/* ── Hero Social Proof ── */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.proof-avatars {
    display: flex;
}

.proof-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -8px;
    object-fit: cover;
}

.proof-avatars img:first-child {
    margin-left: 0;
}

.hero-social-proof strong {
    color: var(--text-color);
}

/* ── Scroll Indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollDrop 1.5s ease-in-out infinite;
}

@keyframes scrollDrop {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    100% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* ── Secondary hero glow ── */
.hero-bg-glow-2 {
    left: -10%;
    top: 60%;
    background: radial-gradient(circle, rgba(255, 0, 30, 0.06) 0%, transparent 70%);
}

/* ── Brand Strip ── */
.brand-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
    position: relative;
}

.brand-strip::before,
.brand-strip::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.brand-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.brand-strip-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.marquee-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    user-select: none;
    gap: 5rem;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    justify-content: space-around;
    align-items: center;
    min-width: 100%;
    gap: 5rem;
    animation: scroll 30s linear infinite;
}

.brand-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    cursor: default;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo:hover {
    color: var(--accent-red);
    transform: scale(1.05);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 5rem));
    }
}

/* Pause animation on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

/* ── Features Section ── */
.features-section {
    padding: 8rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.feature-card-highlight {
    border-color: rgba(255, 59, 48, 0.25);
    background: rgba(255, 59, 48, 0.04);
}

.feature-card-highlight:hover {
    border-color: rgba(255, 59, 48, 0.4);
    background: rgba(255, 59, 48, 0.07);
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 59, 48, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--accent-red);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-red);
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.25);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
}

/* ── How Mini Section ── */
.how-mini-section {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.how-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.how-mini-content .section-title {
    text-align: left;
}

.how-mini-content .section-sub {
    margin: 0;
    text-align: left;
    margin-bottom: 2.5rem;
}

.how-list {
    list-style: none;
    margin: 0 0 2.5rem;
    counter-reset: how-counter;
}

.how-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.how-list li:last-child {
    border-bottom: none;
}

.how-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-red);
    letter-spacing: 1px;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(255, 59, 48, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.how-list li strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.how-list li p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── Phone Mockup ── */
.how-mini-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 240px;
    position: relative;
}

.phone-screen {
    background: #0f0f0f;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    padding: 2rem 1.5rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 8px rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    margin: 0 auto 1.5rem;
}

.phone-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.ph-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), #600);
}

.ph-name {
    width: 100px;
    height: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
}

.ph-title {
    width: 70px;
    height: 8px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 6px;
}

.ph-links {
    display: flex;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.ph-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ph-btn {
    width: 100%;
    height: 36px;
    background: var(--accent-red);
    border-radius: 100px;
    opacity: 0.8;
}

.nfc-ping {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 59, 48, 0.4);
    position: absolute;
    bottom: -20px;
    right: -20px;
    animation: nfcPulse 2s infinite ease-out;
}

.nfc-ping::before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 59, 48, 0.6);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes nfcPulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ── Stats Section ── */
.stats-section {
    padding: 6rem 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.stat-item {
    flex: 1;
    padding: 3rem 2rem;
    text-align: center;
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-color);
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-red);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

/* ── Testimonials ── */
.testimonials-section {
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.stars {
    color: #FFB800;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-card>p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 8rem 0;
}

.cta-content {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 59, 48, 0.2);
    border-radius: 28px;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ── Footer Enhancements ── */
.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-color);
}

.footer-logo p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ── Header CTA (red variant on homepage) ── */
.header-cta .btn-red {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.55rem 1.4rem;
}

/* ════════════════════════
   RESPONSIVE - HOMEPAGE
════════════════════════ */
@media (max-width: 960px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .how-mini-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .how-mini-visual {
        order: -1;
    }

    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 0 45%;
    }

    .cta-content {
        padding: 3rem 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .brand-logos {
        gap: 1.5rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-social-proof {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-btns {
        flex-direction: column;
    }

    .cta-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .stat-item {
        flex: 0 0 100%;
    }
}


/* ════════════════════════════════════════════════
   CHOISISSEZ VOTRE STYLE — Section
   ════════════════════════════════════════════════ */

.style-chooser-section {
    padding: 5rem 0 8rem;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* ── Section Header ── */
.style-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.style-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-red);
    border: 1px solid rgba(255, 59, 48, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.style-section-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.style-title-accent {
    background: linear-gradient(135deg, #FF3B30 0%, #ff8080 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.style-section-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: -0.01em;
}

/* ── Motion Trail ── */
.motion-trail-container {
    position: relative;
    height: 80px;
    margin: 0 -2rem 3.5rem;
    overflow: visible;
}

.trail-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.trail-path {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: drawTrail 2s ease forwards 0.3s;
}

.trail-path-2 {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: drawTrail 2.4s ease forwards 0.5s;
}

@keyframes drawTrail {
    to {
        stroke-dashoffset: 0;
    }
}

/* Animated dots that travel along the trail */
.trail-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-red);
    box-shadow: 0 0 14px 4px rgba(255, 59, 48, 0.9);
    top: 50%;
    transform: translateY(-50%);
}

.trail-dot-1 {
    animation: dotTravel 3.5s ease-in-out infinite;
}

.trail-dot-2 {
    animation: dotTravel 3.5s ease-in-out infinite 1.1s;
}

.trail-dot-3 {
    animation: dotTravel 3.5s ease-in-out infinite 2.2s;
    width: 5px;
    height: 5px;
    background: rgba(255, 59, 48, 0.5);
}

@keyframes dotTravel {
    0% {
        left: 0%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* ── Cards Grid ── */
.style-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

/* ── Base Card Shell ── */
.style-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease;
    cursor: pointer;
}

.style-card:hover {
    transform: translateY(-8px) scale(1.015);
}

/* Ambient glow blob */
.style-card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.4), transparent 70%);
    top: -60px;
    left: -40px;
    pointer-events: none;
    filter: blur(30px);
    z-index: 0;
    transition: opacity 0.4s;
}

.style-card-glow--center {
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
}

.style-card-glow--right {
    left: auto;
    right: -40px;
}

.style-card-inner {
    position: relative;
    z-index: 1;
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.style-card:hover .style-card-inner {
    border-color: rgba(255, 59, 48, 0.3);
}

/* Card Badge */
.style-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    padding: 1.25rem 1.5rem 0;
}

.badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-red);
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.8);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 6px 1px rgba(255, 59, 48, 0.7);
    }

    50% {
        box-shadow: 0 0 14px 4px rgba(255, 59, 48, 1);
    }
}

/* Preview Box (shared) */
.style-preview {
    margin: 1rem 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 240px;
    flex-shrink: 0;
    background: #0a0a0a;
}

.style-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.style-card:hover .style-preview-img {
    transform: scale(1.05);
}

/* Card Info */
.style-card-info {
    padding: 1.25rem 1.5rem 1.75rem;
    flex: 1;
}

.style-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.style-card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.style-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.03);
}

.style-tag--red {
    border-color: rgba(255, 59, 48, 0.4);
    color: var(--accent-red);
    background: rgba(255, 59, 48, 0.08);
}

/* ════════════════════════════════════════
   CARD 1 – Gen Z / Style Impact
   ════════════════════════════════════════ */

.style-card--genz .style-card-inner {
    border-color: rgba(255, 59, 48, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 59, 48, 0.15),
        0 20px 60px rgba(255, 59, 48, 0.15);
}

.style-card--genz:hover .style-card-inner {
    box-shadow: 0 0 0 1px rgba(255, 59, 48, 0.5),
        0 30px 80px rgba(255, 59, 48, 0.25);
}

.style-preview--genz {
    background: #050505;
    border: 1px solid rgba(255, 59, 48, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

/* Outer neon glow on genz preview */
.style-preview--genz::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 30px rgba(255, 59, 48, 0.15);
    pointer-events: none;
    z-index: 10;
}

/* Scanline animation */
.neon-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.7), transparent);
    animation: scanDown 3s linear infinite;
    z-index: 5;
    pointer-events: none;
}

@keyframes scanDown {
    0% {
        top: 0%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Corner accents */
.corner-tl,
.corner-br {
    position: absolute;
    width: 18px;
    height: 18px;
    pointer-events: none;
    z-index: 10;
}

.corner-tl {
    top: 4px;
    left: 4px;
    border-top: 2px solid var(--accent-red);
    border-left: 2px solid var(--accent-red);
    box-shadow: -2px -2px 8px rgba(255, 59, 48, 0.6);
}

.corner-br {
    bottom: 4px;
    right: 4px;
    border-bottom: 2px solid var(--accent-red);
    border-right: 2px solid var(--accent-red);
    box-shadow: 2px 2px 8px rgba(255, 59, 48, 0.6);
}

/* Glitch wrapper & layer */
.glitch-wrapper {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.genz-header {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    position: relative;
}

/* CSS Glitch effect */
.glitch-layer {
    animation: glitch 4s infinite;
}

.glitch-layer::before,
.glitch-layer::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-layer::before {
    color: #FF3B30;
    clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
    animation: glitchTop 4s infinite;
}

.glitch-layer::after {
    color: #41f0ff;
    clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
    animation: glitchBot 4s infinite;
}

@keyframes glitch {

    0%,
    91%,
    100% {
        transform: none;
    }

    92% {
        transform: skewX(-2deg);
    }

    94% {
        transform: skewX(2deg);
    }

    96% {
        transform: none;
    }
}

@keyframes glitchTop {

    0%,
    91%,
    100% {
        transform: translateX(0);
    }

    92% {
        transform: translateX(-4px);
    }

    94% {
        transform: translateX(4px);
    }
}

@keyframes glitchBot {

    0%,
    91%,
    100% {
        transform: translateX(0);
    }

    92% {
        transform: translateX(4px);
    }

    94% {
        transform: translateX(-4px);
    }
}

.genz-tagline {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 59, 48, 0.8);
    text-transform: uppercase;
    font-family: monospace;
}

.genz-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.genz-link-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    transition: border-color 0.2s;
}

.genz-link-item:hover {
    border-color: rgba(255, 59, 48, 0.5);
}

.genz-link-item--red {
    border-color: rgba(255, 59, 48, 0.4);
    background: rgba(255, 59, 48, 0.06);
    color: #fff;
}

.genz-link-icon {
    font-size: 0.85rem;
}

.genz-arrow {
    margin-left: auto;
    color: rgba(255, 59, 48, 0.7);
    font-size: 0.7rem;
}

.genz-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.genz-stats small {
    display: block;
    font-size: 0.62rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ════════════════════════════════════════
   CARD 2 – Social Hub / Linktree Pro
   ════════════════════════════════════════ */

.style-preview--social {
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes rotateRing {
    to {
        transform: rotate(360deg);
    }
}

.social-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
}

.social-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.social-bio {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin-bottom: 0.25rem;
}

.social-links-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.social-link-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.social-link-row:hover {
    background: rgba(255, 59, 48, 0.08);
    border-color: rgba(255, 59, 48, 0.4);
}

.soc-row--accent {
    background: rgba(255, 59, 48, 0.1);
    border-color: rgba(255, 59, 48, 0.35);
    color: rgba(255, 255, 255, 0.9);
}

.soc-icon {
    font-size: 1rem;
    color: var(--accent-red);
    flex-shrink: 0;
}

.soc-icon--ig {
    color: #e1306c;
}

.soc-icon--tk {
    color: #fff;
}

.soc-icon--yt {
    color: #ff0000;
}

.soc-icon--arrow {
    margin-left: auto;
    color: rgba(255, 59, 48, 0.7);
    font-size: 0.85rem;
}

.soc-count {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 59, 48, 0.8);
    background: rgba(255, 59, 48, 0.1);
    padding: 0.1rem 0.5rem;
    border-radius: 100px;
}

/* ════════════════════════════════════════
   CARD 3 – Business / Carrd.co Master
   ════════════════════════════════════════ */

.style-card--biz .style-card-inner {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.95);
}

.style-card--biz:hover .style-card-inner {
    border-color: rgba(255, 59, 48, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.style-preview--biz {
    background: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* Browser chrome */
.biz-browser-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.55rem 0.9rem;
    flex-shrink: 0;
}

.biz-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.biz-dot--r {
    background: #ff5f57;
}

.biz-dot--y {
    background: #febc2e;
}

.biz-dot--g {
    background: #28c840;
}

.biz-url {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    font-family: monospace;
    margin-left: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    white-space: nowrap;
}

.biz-page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 0.6rem;
    justify-content: center;
}

.biz-logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.biz-logo-mark {
    font-size: 1rem;
    color: var(--accent-red);
}

.biz-company-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.biz-headline {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.biz-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 0.1rem 0;
}

.biz-stats-row {
    display: flex;
    gap: 1.5rem;
}

.biz-stat {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.biz-stat strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.biz-stat span {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.biz-cta-btn {
    display: inline-flex;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent-red);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(255, 59, 48, 0.3);
}

/* ── Bottom CTA ── */
.style-section-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
    text-align: center;
}

.style-section-cta p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.01em;
}

/* ── Responsive ── */
@media (max-width: 992px) {

    .style-cards-grid,
    .pricing-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding-bottom: 2rem;
        /* space for scrollbar/shadows */
        margin: 0 -1rem;
        /* negative margin to pull to edges */
        padding-left: 1rem;
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
    }

    .style-cards-grid::-webkit-scrollbar,
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .style-cards-grid,
    .pricing-grid {
        scrollbar-width: none;
    }

    .style-card,
    .price-card {
        scroll-snap-align: center;
        width: 85%;
        flex-shrink: 0;
    }

    .style-preview {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .style-chooser-section {
        padding: 3rem 0 5rem;
    }

    .style-section-title {
        font-size: 2.2rem;
    }

    .motion-trail-container {
        display: none;
    }
}