/* ===================================
   RESET Y VARIABLES
   =================================== */

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

:root {
    /* Colores principales */
    --primary-yellow: #FFD43B;
    --primary-dark: #1E272E;
    --primary-green: #00E283;
    --primary-light-green: #DBED98;
    --primary-cream: #FBFFED;
    
    /* Colores de fondo */
    --bg-light: #F1F3F5;
    --bg-cream: #FBFFED;
    --bg-yellow-light: #FFF3BF;
    
    /* Colores de texto */
    --text-primary: #000000;
    --text-secondary: #212529;
    --text-muted: #868E96;
    --text-light: #CED4DA;
    --text-white: #FFFFFF;
    
    /* Bordes */
    --border-color: #DEE2E6;
    
    /* Espaciado */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 40px;
    --spacing-2xl: 60px;
    
    /* TipografÃ­a */
    --font-primary: 'Figtree', sans-serif;
    --font-secondary: 'Figtree', sans-serif;
    --font-logo: 'Zen Maru Gothic', sans-serif;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* ===================================
   HEADER
   =================================== */

.header {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    height: 33px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: var(--font-logo);
    font-weight: 900;
    font-size: 30px;
    color: var(--primary-dark);
    letter-spacing: -0.9px;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--text-primary);
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #FCC419;
    transform: translateY(-1px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    padding: 80px 0 60px;
    text-align: center;
    background-color: var(--bg-light);
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2.8px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.96px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-description {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 200;
    line-height: 36px;
    letter-spacing: -0.48px;
    color: var(--text-primary);
    margin-bottom: 40px;
    max-width: 622px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: var(--primary-yellow);
    color: var(--text-primary);
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    height: 56px;
}

.btn-cta:hover {
    background-color: #FCC419;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 212, 59, 0.5);
}

/* ===================================
   BENEFITS CARDS SECTION
   =================================== */

.benefits-cards {
    padding: 60px 0 120px;
    background-color: var(--bg-light);
    position: relative;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    align-items: center;
}

.benefit-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    align-self: center;
}

.image-top {
    position: relative;
    z-index: 2;
}

.image-left {
    grid-column: 1;
}

.image-center {
    grid-column: 2;
}

.image-right {
    grid-column: 3;
}

.image-bottom {
    position: absolute;
    z-index: 1;
    opacity: 0.7;
    width: 100%;
    height: auto;
}

.image-bottom.image-left {
    grid-column: 1;
    grid-row: 1;
    top: 60px;
    left: 0;
}

.image-bottom.image-right {
    grid-column: 3;
    grid-row: 1;
    top: 60px;
    right: 0;
}

.benefit-image:hover {
    transform: translateY(-5px);
}

.image-rotate-left {
    transform: rotate(-7deg);
}

.image-rotate-left:hover {
    transform: rotate(-7deg) translateY(-5px);
}

.image-rotate-right {
    transform: rotate(4deg);
}

.image-rotate-right:hover {
    transform: rotate(4deg) translateY(-5px);
}

.card-image {
    height: 150px;
    background: linear-gradient(135deg, #FBFFED 0%, #E8F5E9 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.card-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
}

.stamps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 140px;
}

.stamp {
    width: 43px;
    height: 43px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    background: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stamp.filled {
    background: var(--primary-green);
}

.stamp-icon {
    width: 30px;
    height: 21px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.decoration-star {
    position: absolute;
    top: -44px;
    left: 46px;
    width: 342px;
    height: 342px;
    opacity: 0.3;
    z-index: 0;
}

.discount-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 80px;
}

.discount-badge {
    background: var(--primary-cream);
    color: var(--primary-green);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 34px;
    font-weight: 400;
    text-align: center;
    box-shadow: 0 4px 8px rgba(176, 205, 66, 0.2);
}

.card-content {
    padding: 16px;
}

.card-title {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.card-description {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.card-description strong {
    font-weight: 700;
}

.card-placeholder {
    opacity: 0.5;
}

.placeholder-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton-line {
    height: 14px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-line.short {
    width: 60%;
}

.phone-mockup {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -80px;
    z-index: 10;
}

.phone-image {
    width: 412px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* ===================================
   FEATURE SECTIONS
   =================================== */

.feature-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.feature-section.dark {
    background-color: var(--primary-dark);
    color: white;
}

.feature-section.light {
    background-color: var(--primary-cream);
    color: var(--text-primary);
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-content.reverse {
    direction: rtl;
}

.feature-content.reverse > * {
    direction: ltr;
}

.feature-text {
    max-width: 550px;
    position: relative;
    z-index: 2;
    
}

.feature-visual {
    position: relative;
    z-index: 2;
}

.feature-label {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 20px;
    display: block;
}

.feature-section.light .feature-label {
    color: var(--text-primary);
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 38px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.76px;
    margin-bottom: 20px;
}

.feature-description {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.36px;
}

.feature-section.dark .feature-description {
    color: #DCE7F1;
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 510px;
}

.dashboard-header {
    background: white;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    margin: -20px -20px 20px;
    border-radius: 8px 8px 0 0;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon-small {
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
}

.logo-text-small {
    font-family: var(--font-logo);
    font-weight: 900;
    font-size: 12px;
    color: var(--primary-dark);
}

.dashboard-content h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.dashboard-form {
    background: white;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 6px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.form-group input[type="text"] {
    width: 100%;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 6px;
    background: white;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.checkbox-item input[type="checkbox"] {
    width: 8px;
    height: 8px;
    accent-color: #FAB005;
}

.checkbox-item span {
    font-size: 6px;
}

.btn-dashboard {
    width: 100%;
    background: #FCC419;
    border: none;
    padding: 6px;
    border-radius: 4px;
    font-size: 6px;
    cursor: pointer;
}

.dashboard-history h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.history-subtitle {
    font-size: 6px;
    color: var(--text-secondary);
}

/* Phone Frame */
.phone-frame {
    background: white;
    border-radius: 20px;
    padding: 20px;
    max-width: 280px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.phone-screen {
    text-align: center;
    padding: 20px;
}

.phone-header {
    margin-bottom: 20px;
}

.brand-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brand-icon {
    width: 50px;
    height: 28px;
    object-fit: contain;
}

.phone-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.phone-subtitle {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.qr-code {
    width: 182px;
    height: 182px;
    margin: 24px auto;
    background: white;
    border-radius: 8px;
    padding: 12px;
}

.powered-by {
    font-size: 12px;
    color: var(--text-primary);
    margin-top: 24px;
}

.powered-logo {
    font-family: var(--font-logo);
    font-weight: 900;
}

/* Dashboard Mini */
.dashboard-preview-small {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 16px;
    max-width: 510px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dashboard-mini {
    background: white;
}

.mini-header {
    background: white;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border-color);
}

.mini-logo {
    font-family: var(--font-logo);
    font-weight: 900;
    font-size: 12px;
    color: var(--primary-dark);
}

.mini-content {
    padding: 16px;
}

.mini-form label {
    display: block;
    font-size: 6px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mini-form input {
    width: 100%;
    padding: 4px 8px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-size: 6px;
    margin-bottom: 8px;
}

.mini-btn {
    width: 100%;
    background: #FCC419;
    border: none;
    padding: 4px;
    border-radius: 2px;
    font-size: 6px;
    margin-bottom: 16px;
}

.mini-table {
    font-size: 6px;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr 1fr;
    gap: 8px;
    padding: 8px;
    background: #E9ECEF;
    font-weight: 700;
    border-radius: 4px 4px 0 0;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr 1fr;
    gap: 8px;
    padding: 8px;
    border-bottom: 1px solid var(--border-color);
}

.table-cell {
    display: flex;
    flex-direction: column;
}

.table-cell strong {
    font-size: 6px;
    margin-bottom: 2px;
}

.table-cell small {
    font-size: 5px;
    color: var(--text-muted);
}

.table-action {
    background: #F8F9FA;
    border: 1px solid var(--text-muted);
    border-radius: 2px;
    padding: 2px 4px;
    cursor: pointer;
}

.rotating-badge {
    width: 92px;
    height: 92px;
    margin: 0 0 20px 0; /* Alineado a la izquierda en desktop */
}

.rotating-badge-image {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

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

/* Decorative Backgrounds */
.decorative-bg,
.decorative-bg-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.decorative-bg::before {
    content: '';
    position: absolute;
    left: -151px;
    top: 56px;
    width: 982px;
    height: 1037px;
    background: url('assets/decorative-bg-1-v2.svg') no-repeat;
    background-size: contain;
    opacity: 0.1;
    z-index: 0;
}

.decorative-bg-2::before {
    content: '';
    position: absolute;
    left: 808px;
    top: 428px;
    width: 1312px;
    height: 1330px;
    background: url('assets/decorative-bg-2-v2.svg') no-repeat;
    background-size: contain;
    opacity: 0.1;
    z-index: 0;
}

.decorative-bg-2::after {
    content: '';
    position: absolute;
    left: -675px;
    top: -7px;
    width: 936px;
    height: 988px;
    background: url('assets/decorative-bg-3-v2.svg') no-repeat;
    background-size: contain;
    opacity: 0.1;
    z-index: 0;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: 100px 0 120px;
    background: var(--primary-light-green);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.registration-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.registration-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 24px;
    text-align: left;
    color: var(--text-primary);
}

.registration-form {
    margin-bottom: 25px;
}

.form-field {
    text-align: left;
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.form-field input {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    height: 40px;
}

.form-field input:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.btn-submit {
    width: 100%;
    background: var(--primary-yellow);
    color: var(--text-primary);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 16px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #FCC419;
    transform: translateY(-1px);
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.divider-text {
    color: var(--text-muted);
    font-size: 16px;
}

.btn-google {
    width: 100%;
    background: var(--text-primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 16px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.btn-google:hover {
    background: #2c2c2c;
    transform: translateY(-1px);
}

.google-icon {
    width: 20px;
    height: 20px;
}

.login-link {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
}

.login-link a {
    color: var(--text-primary);
    text-decoration: underline;
    font-weight: 400;
}

.login-link a:hover {
    text-decoration: none;
}

.cta-decorative-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.cta-decorative-bg::before,
.cta-decorative-bg::after {
    content: '';
    position: absolute;
    width: 936px;
    height: 988px;
    background: url('assets/decorative-bg-cta-v2.svg') no-repeat;
    background-size: contain;
    opacity: 0.3;
}

.cta-decorative-bg::before {
    left: -675px;
    top: -7px;
}

.cta-decorative-bg::after {
    right: -450px;
    top: -55px;
    transform: rotate(328deg);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--primary-yellow);
    padding: 24px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-text {
    font-family: var(--font-logo);
    font-weight: 900;
    font-size: 31px;
    color: var(--primary-dark);
    letter-spacing: -0.94px;
}

.footer-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    line-height: 48px;
    text-align: right;
    max-width: 554px;
    color: var(--text-primary);
}

/* ===================================
   RESPONSIVE
   =================================== */

/* TABLET SPECIFIC - Entre 768px y 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px !important;
    }
    
    /* BENEFITS CARDS - Centrado perfecto en tablets */
    .benefits-cards .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px !important;
        gap: 40px;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .benefit-image.image-left,
    .benefit-image.image-right {
        display: none !important;
    }
    
    .benefit-image.image-center {
        transform: none !important;
        display: block !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
    }
    
    .feature-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
        justify-items: center;
        align-items: center;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .feature-content.reverse {
        direction: ltr !important;
        flex-direction: column !important;
    }
    
    .feature-text {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }
    
    .image-container,
    .feature-visual {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto;
    }
    
    .dashboard-image {
        margin: 0 auto !important;
        display: block !important;
        max-width: 100%;
    }
    
    /* Específico para la sección del QR */
    .image-container[style*="width: 400px"] {
        width: 100% !important;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Centrar rotating badge en tablets */
    .rotating-badge {
        margin: 0 auto 20px auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* CTA Section */
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto !important;

    }

    /* Hero grid - fix fixed height */
    .hero-grid {
        height: auto !important;
        padding: 60px 0 !important;
    }

    .hero-image-wrapper {
        display: none !important;
    }

    /* Feature section - stack vertically */
    .feature-section-row {
        flex-direction: column !important;
        height: auto !important;
        padding: 60px 0 !important;
        align-items: flex-start !important;
    }

    .feature-section-left,
    .feature-section-right {
        width: 100% !important;
        flex-shrink: 1 !important;
    }

    .feature-section-text {
        width: 100% !important;
    }

    /* Pricing section - stack vertically */
    .pricing-section-row {
        flex-direction: column !important;
        height: auto !important;
        padding: 60px 0 !important;
        align-items: flex-start !important;
    }

    .pricing-section-left {
        width: 100% !important;
        flex-shrink: 1 !important;
    }

    .pricing-section-list {
        width: 100% !important;
    }

    .pricing-dark-card {
        width: 100% !important;
        box-sizing: border-box !important;
        flex-shrink: 1 !important;
    }

    /* Register card */
    .register-card {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Section padding reduction */
    .section-large-pad {
        padding: 80px 0 !important;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .hero-description {
        font-size: 20px;
        line-height: 30px;
    }
    
    /* BENEFITS CARDS - ONLY SHOW CENTER IMAGE */
    .cards-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px !important;
        gap: 60px;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .benefit-image.image-left,
    .benefit-image.image-right {
        display: none !important;
    }
    
    .benefit-image.image-center {
        transform: none !important;
        display: block !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
    }
    
    .card-rotate-left,
    .card-rotate-right {
        transform: rotate(0deg);
    }
    
    /* CENTER CONTENT ON TABLETS */
    .feature-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
        justify-items: center;
        align-items: center;
    }
    
    .feature-content.reverse {
        direction: ltr;
        flex-direction: column !important;
    }
    
    .feature-text {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    
    /* Center images */
    .dashboard-image {
        margin: 0 auto !important;
        display: block;
        max-width: 100%;
        height: auto;
    }
    
    .image-container {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto;
    }
    
    /* Centrar elementos específicos de la sección 3 */
    .feature-visual {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .dashboard-preview-small {
        margin-left: 0 !important;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .dashboard-mini {
        margin: 0 auto;
    }
    
    .rotating-badge {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto 20px auto !important;
    }
    
    /* CTA Section centering */
    .hero-content {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
    }
    
    .phone-mockup {
        position: relative;
        bottom: 0;
        margin-top: 40px;
        left: auto;
        transform: none;
        display: flex;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }

    /* Hero grid - fix fixed height */
    .hero-grid {
        height: auto !important;
        padding: 60px 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-image-wrapper {
        display: none !important;
    }

    /* Feature section - stack vertically */
    .feature-section-row {
        flex-direction: column !important;
        height: auto !important;
        padding: 60px 0 !important;
        align-items: flex-start !important;
    }

    .feature-section-left,
    .feature-section-right {
        width: 100% !important;
        flex-shrink: 1 !important;
    }

    .feature-section-text {
        width: 100% !important;
    }

    /* Pricing section - stack vertically */
    .pricing-section-row {
        flex-direction: column !important;
        height: auto !important;
        padding: 60px 0 !important;
        align-items: flex-start !important;
    }

    .pricing-section-left {
        width: 100% !important;
        flex-shrink: 1 !important;
    }

    .pricing-section-list {
        width: 100% !important;
    }

    .pricing-dark-card {
        width: 100% !important;
        box-sizing: border-box !important;
        flex-shrink: 1 !important;
    }

    /* Register card */
    .register-card {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Section padding reduction */
    .section-large-pad {
        padding: 80px 0 !important;
    }

    /* Container padding - needs !important to override inline styles */
    .container {
        padding: 0 30px !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px !important;
    }

    .stats-bg-wrapper {
        display: none;
    }

    .feature-carousel-container {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 6 / 5;
    }

    /* Hero grid - fix fixed height */
    .hero-grid {
        height: auto !important;
        padding: 40px 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-image-wrapper {
        display: flex !important;
        order: -1;
        width: 100% !important;
        height: 310px !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 12px;
    }

    .hero-video {
        width: 100% !important;
        height: 310px !important;
        object-fit: cover;
        border-radius: 16px;
    }

    .hero-title {
        margin-bottom: 12px !important;
    }

    /* Feature section - stack vertically */
    .feature-section-row {
        flex-direction: column !important;
        height: auto !important;
        padding: 40px 0 !important;
        align-items: flex-start !important;
    }

    .feature-section-left,
    .feature-section-right {
        width: 100% !important;
        flex-shrink: 1 !important;
    }

    .feature-section-text {
        width: 100% !important;
    }

    /* Pricing section - stack vertically */
    .pricing-section-row {
        flex-direction: column !important;
        height: auto !important;
        padding: 40px 0 !important;
        align-items: flex-start !important;
    }

    .pricing-section-left {
        width: 100% !important;
        flex-shrink: 1 !important;
    }

    .pricing-section-list {
        width: 100% !important;
    }

    .pricing-dark-card {
        width: 100% !important;
        box-sizing: border-box !important;
        flex-shrink: 1 !important;
    }

    /* Register card */
    .register-card {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Section padding reduction */
    .section-large-pad {
        padding: 60px 0 !important;
    }

    /* Pricing card logo + price scale down */
    .pricing-card-logo {
        width: 56px !important;
        height: 56px !important;
    }

    .pricing-card-price {
        font-size: 28px !important;
    }

    /* HEADER - SMALLER BUTTON */
    .header-content {
        height: auto;
        padding: 12px 0;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .btn-primary {
        font-size: 12px;
        padding: 8px 12px;
        width: auto;
        min-width: auto;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    .hero-description br {
        display: none;
    }

    .benefits-cards {
        padding: 40px 0 80px;
    }
    
    /* BENEFITS CARDS - ONLY SHOW CENTER IMAGE ON MOBILE */
    .cards-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        gap: 20px;
        margin: 0 auto;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .benefit-image.image-left,
    .benefit-image.image-right {
        display: none !important;
    }

    .benefit-image.image-center {
        transform: none !important;
        display: block !important;
        margin: 0 auto !important;
        max-width: 70% !important;
        height: auto !important;
        width: auto !important;
    }
    
    .image-rotate-left,
    .image-rotate-right {
        transform: none !important;
    }
    
    /* FEATURE SECTIONS - CENTER ALL CONTENT */
    .feature-section {
        padding: 80px 0;
    }
    
    .feature-content {
        text-align: center;
        gap: 40px;
    }
    
    .feature-content.reverse {
        flex-direction: column;
    }
    
    .feature-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .feature-description {
        font-size: 16px;
    }
    
    /* CENTER KATCAFE IMAGE AND ALL IMAGES */
    .image-container {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto;
    }
    
    .dashboard-image {
        max-width: 100%;
        height: auto !important;
        width: auto !important;
        margin: 0 auto;
        display: block;
    }
    
    /* Feature Section 3 - Special handling for rotating badge */
    .feature-visual {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .rotating-badge {
        position: relative !important;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .rotating-badge-image {
        width: 80px;
        height: 80px;
    }
    
    .dashboard-preview-small {
        margin-left: 0 !important;
        width: 100%;
        max-width: 100%;
    }
    
    /* CTA SECTION */
    .cta-section {
        padding: 60px 0 80px;
    }
    
    .cta-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .registration-card {
        padding: 30px 20px;
    }
    
    .phone-image {
        width: 300px;
    }
    
    /* CTA BUTTON FULL WIDTH ON MOBILE */
    .btn-cta {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 24px;
    }
    
    .btn-primary {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hero-title {
        font-size: 32px !important;
        line-height: 40px !important;
    }
    
    .feature-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .feature-description {
        font-size: 16px;
    }
    
    .cta-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 40px;
    }
    
    .phone-image {
        width: 250px;
    }
    
    .benefit-image.image-left,
    .benefit-image.image-right {
        display: none !important;
    }
}

/* ===================================
   FIX PARA ESTILOS DE ENLACES COMO BOTONES - CRÃTICO
   ================================== */

/* 
   IMPORTANTE: Estos estilos DEBEN ir al final del CSS
   para que tengan mÃ¡xima prioridad
*/

a.btn-primary,
a.btn-cta {
    /* Remover TODOS los estilos de enlace */
    text-decoration: none !important;
    color: var(--text-primary) !important;
    
    /* Asegurar comportamiento de botÃ³n */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}

/* Aplicar a TODOS los estados posibles */
a.btn-primary:link,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:active,
a.btn-primary:focus {
    text-decoration: none !important;
    color: var(--text-primary) !important;
}

a.btn-cta:link,
a.btn-cta:visited,
a.btn-cta:hover,
a.btn-cta:active,
a.btn-cta:focus {
    text-decoration: none !important;
    color: var(--text-primary) !important;
}

/* Mantener los efectos hover del botÃ³n */
a.btn-cta:hover {
    background-color: #FCC419 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 212, 59, 0.5) !important;
}

a.btn-primary:hover {
    background-color: #FCC419 !important;
    transform: translateY(-1px) !important;
}

/* Fix para enlaces como botones */
a.btn-primary,
a.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.login-link-header {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.login-link-header:hover,
.login-link-header:visited,
.login-link-header:active,
.login-link-header:focus {
    color: #000000;
    text-decoration: none;
}

/* ===================================
   MOBILE FIXES
   =================================== */

   @media (max-width: 768px) {

    /* Containers */
    .container {
        padding: 0 20px;
    }

    /* Grids */
    .feature-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    
    /* CARDS GRID - Centrado perfecto para benefits */
    .cards-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
    }

    .feature-content.reverse {
        direction: ltr !important;
    }

    /* Imágenes */
    img {
        max-width: 100%;
        height: auto !important;
    }
    
    /* Benefit images específico - Reducido 30% */
    .benefit-image.image-center {
        transform: none !important;
        display: block !important;
        margin: 0 auto !important;
        max-width: 70% !important;
        width: auto !important;
        height: auto !important;
    }

    /* Hero + CTA */
    .hero-title,
    .feature-title {
        font-size: 28px;
        line-height: 34px;
    }

    .hero-description,
    .feature-description {
        font-size: 16px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    /* Ocultar decorativos si rompen */
    .decorative-bg,
    .decorative-bg-2,
    .cta-decorative-bg {
        display: none !important;
    }
}

/* ===================================
   SECTION LABELS (shared)
   =================================== */

.section-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.72px;
    color: var(--text-primary);
    margin-bottom: 48px;
}

/* ===================================
   HERO — TWO COLUMN
   =================================== */

.hero {
    text-align: left;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-grid .hero-content {
    max-width: none;
    margin: 0;
    text-align: left;
}

.hero-grid .hero-description {
    margin-left: 0;
    margin-right: 0;
}

.hero-pricing-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
    margin-top: -8px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--text-primary);
    padding: 0 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    height: 56px;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: white;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
}

/* ===================================
   STATISTICS SECTION
   =================================== */

.stats-section {
    background-color: var(--primary-dark);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-bg-wrapper {
    position: absolute;
    left: -151px;
    top: 166px;
    width: 982px;
    height: 1037px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.stats-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 101.22%;
    height: 112.8%;
    max-width: none;
}

.stats-headline {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 800;
    line-height: 52px;
    letter-spacing: -0.8px;
    margin-bottom: 60px;
    color: white;
}

.stats-highlight {
    color: var(--primary-yellow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ===================================
   SETUP STEPS SECTION
   =================================== */

.steps-section {
    padding: 100px 0;
    background-color: var(--primary-cream);
    text-align: center;
}

.steps-section .section-label,
.steps-section .section-title {
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: left;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-yellow);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.step-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-features-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
    line-height: 1.3;
}

.pricing-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--primary-green);
    color: var(--primary-dark);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

.pricing-card {
    background: var(--primary-dark);
    border-radius: 20px;
    padding: 48px 40px;
    color: white;
    text-align: center;
}

.pricing-card-tag {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 16px;
}

.pricing-amount {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.pricing-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    line-height: 1.5;
}

.btn-pricing {
    width: 100%;
    background: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

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

.pricing-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-note a {
    color: var(--primary-yellow);
    text-decoration: underline;
}

/* ===================================
   FAQ SECTION
   =================================== */

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

.faq-section .section-label,
.faq-section .section-title {
    text-align: center;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
    line-height: 1;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-whatsapp:hover {
    background: #20B858;
    transform: translateY(-1px);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-call:hover {
    border-color: var(--text-primary);
    transform: translateY(-1px);
}

/* ===================================
   CTA / REGISTER SECTION
   =================================== */

.cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.register-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}
.register-card::after {
    content: '';
    position: absolute;
    top: -50%; left: -80%;
    width: 40%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}
.register-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px rgba(0, 226, 131, 0.3), 0 16px 48px rgba(0, 226, 131, 0.15);
}
.register-card:hover::after { left: 140%; }

.register-screen {
    display: none;
}

.register-screen.active {
    display: block;
}

.register-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.register-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-back {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    padding: 8px 0;
    margin-top: 12px;
    font-family: var(--font-primary);
    display: block;
}

.btn-back:hover {
    color: var(--text-primary);
}

/* ===================================
   FOOTER UPDATED
   =================================== */

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 280px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Blog section ── */
#blog-section {
    background-color: #fff;
}

.blog-section-label {
    display: block;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 32px;
}

.blog-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e8e8e8;
    margin-bottom: 32px;
}

.blog-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #e8e8e8;
    text-decoration: none;
    color: #1e272e;
    transition: transform 0.2s;
}

.blog-list-item:hover {
    transform: translateX(4px);
}

.blog-item-img {
    width: 96px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #f0f0f0;
}

.blog-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.blog-item-title {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #1e272e;
}

.blog-list-item:hover .blog-item-title {
    text-decoration: underline;
}

.blog-item-excerpt {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #888;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-item-arrow {
    font-size: 18px;
    flex-shrink: 0;
    margin-left: 8px;
    color: #ccc;
    transition: color 0.2s;
}

.blog-list-item:hover .blog-item-arrow {
    color: #1e272e;
}

.blog-ver-todos {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-ver-todos:hover {
    color: #1e272e;
    text-decoration: underline;
}

@media (max-width: 768px) {
    #blog-section {
        padding: 56px 0;
    }
    .blog-item-img {
        width: 72px;
        height: 56px;
    }
    .blog-item-title {
        font-size: 15px;
    }
    .blog-item-excerpt {
        display: none;
    }
}

/* ===================================
   TOAST NOTIFICATION
   =================================== */

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--primary-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    max-width: 90vw;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.success {
    background: #2D7D46;
}

.toast.error {
    background: #C0392B;
}

/* ===================================
   RESPONSIVE — NEW SECTIONS
   =================================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero {
        text-align: center;
    }

    .hero-grid .hero-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-grid .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-image-wrapper {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .steps-grid {
        grid-template-columns: 1fr !important;
        max-width: 480px;
    }

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

    .cta-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    .stats-headline {
        font-size: 28px;
        line-height: 36px;
    }

    .stat-number {
        font-size: 40px;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .steps-grid {
        grid-template-columns: 1fr !important;
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .faq-ctas {
        flex-direction: column;
        align-items: center;
    }

    .cta-layout {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 28px;
        line-height: 36px;
    }

    .register-card {
        padding: 24px 20px;
    }

    /* Hamburger visible, desktop nav hidden */
    .nav-desktop {
        display: none !important;
    }

    .nav-hamburger {
        display: flex !important;
    }

    /* Hero buttons: full-width, stacked */
    .hero-ctas {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .btn-cta,
    .btn-agenda-hero {
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
    }

    /* FAQ CTA buttons: full-width, stacked */
    .faq-cta-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .btn-faq-primary,
    .btn-faq-secondary {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    #register-section {
        padding: 60px 0 !important;
    }

    .register-headline {
        font-size: 28px !important;
        line-height: 36px !important;
        margin-bottom: 32px !important;
    }

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

    .footer-links {
        gap: 16px;
    }
}

/* ===================================
   HERO INTRO PILL
   =================================== */

.hero-intro-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-intro-prefix {
    font-family: 'Figtree', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #1e272e;
    line-height: normal;
}

.hero-intro-pill {
    font-family: 'Figtree', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    background: #f2f2f2;
    border-radius: 8px;
    padding: 8px 14px;
    line-height: normal;
    display: inline-block;
    overflow: hidden;
}

/* ===================================
   HERO VIDEO
   =================================== */

.hero-video {
    width: 100%;
    max-width: 480px;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* ===================================
   STEP CARDS — FIGMA STYLE
   =================================== */

.step-card-figma {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-image-box {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #b4cc45;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.step-image-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.step-image-full {
    width: 100%;
    height: auto;
    display: block;
}

.step-label-text {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1e272e;
    line-height: normal;
}

.step-title-figma {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1e272e;
    line-height: normal;
}

.step-desc-figma {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #616161;
    line-height: 1.5;
}

/* ===================================
   STATS SECTION — OVERRIDE
   =================================== */

.stats-section {
    padding: 144px 0;
}

.stats-grid {
    max-width: 100%;
    margin: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-card {
    background: #384650;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 27px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ===================================
   REGISTRATION FORM — SHARED STYLES
   =================================== */

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-field label {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: black;
}

.form-field input {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0 16px;
    height: 40px;
    font-size: 16px;
    font-family: 'Figtree', sans-serif;
    color: #212529;
    background: white;
    outline: none;
    width: 100%;
}

.form-field input:focus {
    border-color: #adb5bd;
}

.btn-submit {
    background: #ffd43b;
    color: black;
    border: none;
    border-radius: 4px;
    height: 40px;
    font-size: 16px;
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #fcc419;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #dee2e6;
}

.divider-text {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    color: #868e96;
}

.btn-google {
    background: #1c1c1c;
    color: white;
    border: none;
    border-radius: 4px;
    height: 40px;
    font-size: 16px;
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    transition: background 0.2s;
}

.btn-google:hover {
    background: #333;
}

.google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.login-link {
    font-size: 18px;
    color: black;
    text-align: left;
}

.login-link a {
    color: black;
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .hero-intro-prefix,
    .hero-intro-pill {
        font-size: 28px;
        line-height: normal;
    }
}

@media (max-width: 768px) {
    .hero-intro-prefix,
    .hero-intro-pill {
        font-size: 22px;
        line-height: normal;
    }
    .hero-intro-pill {
        padding: 6px 12px;
    }
    .hero-video {
        width: 100%;
        height: auto;
        max-width: 400px;
    }
    .step-image-box {
        height: auto;
        max-width: 280px;
        margin: 0 auto;
    }
    .step-card-figma {
        align-items: center;
    }
    .step-label-text,
    .step-title-figma,
    .step-desc-figma {
        width: 280px;
    }
}

/* ===================================
   HERO PILL TRANSITIONS
   =================================== */

@keyframes pill-slide-out {
    from { transform: translateY(0); opacity: 1; }
    to   { transform: translateY(-120%); opacity: 0; }
}

@keyframes pill-slide-in {
    from { transform: translateY(120%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

#hero-pill-text {
    display: inline-block;
    white-space: nowrap;
}

.pill-text-out {
    animation: pill-slide-out 0.25s ease forwards;
}

.pill-text-in {
    animation: pill-slide-in 0.25s ease forwards;
}

/* ===================================
   FEATURE CAROUSEL
   =================================== */

.feature-carousel-container {
    width: 480px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #ececec;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.feature-carousel-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.carousel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.carousel-img.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-dots-row {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    transition: background 0.3s ease, transform 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.carousel-dot:hover {
    background: #c8dc60;
    transform: scale(1.5);
}

.carousel-dot.active {
    background: #b4cc45;
    transform: scale(1.25);
}

.carousel-dot.active:hover {
    transform: scale(1.5);
}

/* ===================================
   BLOG CARD WIDGET
   =================================== */

.blog-card-widget {
    display: flex;
    gap: 16px;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.blog-card-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.blog-card-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

/* ===================================
   FAQ ACCORDION
   =================================== */

.faq-divider-line {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0;
}

.faq-accordion-item {
    cursor: pointer;
}

.faq-accordion-item[open] .faq-accordion-question::after {
    transform: rotate(-135deg);
}

.faq-accordion-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1e272e;
    line-height: normal;
    list-style: none;
    cursor: pointer;
    user-select: none;
    padding: 4px 0;
}

.faq-accordion-question::-webkit-details-marker {
    display: none;
}

.faq-accordion-question::after {
    content: '';
    width: 9px;
    height: 9px;
    border-right: 2px solid #868e96;
    border-bottom: 2px solid #868e96;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 16px;
    display: inline-block;
}

.faq-accordion-answer {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    color: #616161;
    line-height: 1.5;
    margin-top: 16px;
    padding-bottom: 4px;
}

/* ===================================
   GLOBAL CURSOR & HOVER
   =================================== */

button, a, summary, [role="button"],
.carousel-dot, .faq-accordion-item {
    cursor: pointer;
}

.login-link-header:hover {
    text-decoration: underline;
    color: #000;
}

/* ===================================
   HAMBURGER / MOBILE NAV
   =================================== */

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1e272e;
    border-radius: 2px;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 12px 0 16px;
    border-top: 1px solid #dee2e6;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile-link {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    color: #1e272e;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f5;
    display: block;
}

.nav-mobile-cta {
    margin-top: 16px;
    width: 100%;
}

.btn-faq-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffd43b;
    color: black;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 0 20px;
    height: 40px;
    border-radius: 4px;
    text-decoration: none;
    width: 240px;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-faq-primary:hover {
    background: #fcc419;
    transform: translateY(-2px);
}

.btn-faq-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: black;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 0 20px;
    height: 40px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #dee2e6;
    width: 240px;
    white-space: nowrap;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.btn-faq-secondary:hover {
    border-color: #adb5bd;
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-pricing:hover {
    background: #fcc419;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 212, 59, 0.4);
}

.btn-agenda-hero:hover {
    background: #f8f9fa !important;
    color: black !important;
    border-color: #adb5bd !important;
    transform: translateY(-2px) !important;
}

/* ===================================
   PRICING CARD HOVER
   =================================== */

.pricing-dark-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.pricing-dark-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -80%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.pricing-dark-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px rgba(255, 212, 59, 0.35), 0 16px 48px rgba(255, 212, 59, 0.12);
    cursor: default;
}

.pricing-dark-card:hover::after {
    left: 140%;
}

/* ===================================
   REGISTER SECTION — BACKGROUND TEXT
   =================================== */

.register-bg-text {
    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 900;
    font-size: clamp(200px, 40vw, 560px);
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
    background: linear-gradient(to top, #cbe36e 0%, #dbed98 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
