/* =========================================================
   NeoTienda Portal — portal-style.css
   Dark theme (#12100E), gold accent (#E8B849)
   Epilogue (headings) + DM Sans (body)
   ========================================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #12100e;
    color: #f5f0eb;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: #e8b849;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #f0cc6a;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #f5f0eb;
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #a8a29e;
    text-align: center;
    margin-bottom: 3rem;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-gold {
    background: #e8b849;
    color: #12100e;
    border-color: #e8b849;
}

.btn-gold:hover {
    background: #f0cc6a;
    border-color: #f0cc6a;
    color: #12100e;
}

.btn-outline {
    background: transparent;
    color: #f5f0eb;
    border-color: #e8b849;
}

.btn-outline:hover {
    background: #e8b849;
    color: #12100e;
}

.btn-sm {
    font-size: 0.8125rem;
    padding: 0.5rem 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn:disabled:hover {
    background: #e8b849;
    color: #12100e;
}

/* ---------- PORTAL HEADER ---------- */
.portal-header {
    background: #12100e;
    border-bottom: 1px solid #2a2825;
    position: sticky;
    top: 0;
    z-index: 100;
}

.portal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo {
    font-family: 'Epilogue', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #e8b849;
    text-decoration: none;
}

.nav-logo:hover {
    color: #f0cc6a;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: #a8a29e;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #f5f0eb;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-username {
    font-size: 0.875rem;
    color: #f5f0eb;
    font-weight: 500;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(232,184,73,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #f5f0eb;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a8a29e;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

/* ---------- HERO FORM ---------- */
.hero-form {
    max-width: 520px;
    margin: 0 auto;
}

.hero-form-inline {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.hero-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: #1a1714;
    border: 1px solid #2a2825;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.hero-input-wrap:focus-within {
    border-color: #e8b849;
}

.hero-input-wrap .domain-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #f5f0eb;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    padding: 0.85rem 1rem;
    min-width: 0;
}

.hero-input-wrap .domain-input::placeholder {
    color: #57534e;
}

.hero-input-wrap .domain-suffix {
    padding: 0.85rem 1rem;
    color: #a8a29e;
    font-size: 0.875rem;
    background: transparent;
    white-space: nowrap;
}

.hero-submit-btn {
    font-size: 1rem;
    padding: 0.85rem 2rem;
    flex-shrink: 0;
    min-width: 120px;
}

.hero-trust {
    font-size: 0.8125rem;
    color: #57534e;
    margin-top: 1rem;
    text-align: center;
}

/* ---------- FEATURES ---------- */
.features {
    background: #181614;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #201e1c;
    border: 1px solid #2a2825;
    border-radius: 1rem;
    padding: 2rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
    border-color: #e8b849;
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #f5f0eb;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9375rem;
    color: #a8a29e;
    line-height: 1.6;
}

/* ---------- PRICING ---------- */
.pricing {
    background: #12100e;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #201e1c;
    border: 1px solid #2a2825;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.pricing-card:hover {
    border-color: #e8b849;
    transform: translateY(-4px);
}

.pricing-featured {
    border-color: #e8b849;
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e8b849;
    color: #12100e;
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2a2825;
}

.pricing-name {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f5f0eb;
    margin-bottom: 0.75rem;
}

.pricing-price {
    font-family: 'Epilogue', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e8b849;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #a8a29e;
}

.pricing-features {
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    font-size: 0.9375rem;
    color: #f5f0eb;
    padding: 0.5rem 0;
    border-bottom: 1px solid #2a2825;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-na {
    color: #57534e !important;
}

.pricing-cta {
    margin-top: auto;
    width: 100%;
}

/* ---------- WIZARD ---------- */
.wizard-section {
    background: #181614;
}

.wizard-container {
    max-width: 600px;
    margin: 0 auto;
    background: #201e1c;
    border: 1px solid #2a2825;
    border-radius: 1rem;
    padding: 2.5rem;
}

/* Progress indicator */
.wizard-progress {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: #2a2825;
    transform: translateY(-50%);
}

.progress-step {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #2a2825;
    color: #57534e;
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: #e8b849;
    color: #12100e;
}

.progress-step.completed {
    background: #e8b849;
    color: #12100e;
}

/* Step content */
.step-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f5f0eb;
    text-align: center;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.9375rem;
    color: #a8a29e;
    text-align: center;
    margin-bottom: 2rem;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

/* ---------- DOMAIN STEP ---------- */
.domain-input-group {
    margin-bottom: 0.75rem;
}

.domain-prefix {
    display: flex;
    align-items: center;
    background: #12100e;
    border: 1px solid #2a2825;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.domain-prefix:focus-within {
    border-color: #e8b849;
}

.domain-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #f5f0eb;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    min-width: 0;
}

.domain-input::placeholder {
    color: #57534e;
}

.domain-suffix {
    padding: 0.75rem 1rem;
    color: #a8a29e;
    font-size: 0.875rem;
    background: #1a1816;
    white-space: nowrap;
}

.domain-status {
    display: inline-block;
    font-size: 0.8125rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

.domain-status.available {
    color: #22c55e;
}

.domain-status.unavailable {
    color: #ef4444;
}

.domain-hint {
    font-size: 0.8125rem;
    color: #57534e;
}

/* ---------- PLAN SELECTION ---------- */
.plan-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-select-card {
    background: #12100e;
    border: 2px solid #2a2825;
    border-radius: 0.75rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.plan-select-card:hover {
    border-color: #e8b849;
}

.plan-select-card.selected {
    border-color: #e8b849;
    background: rgba(232,184,73,0.05);
}

.plan-select-card.plan-featured {
    border-color: #e8b849;
}

.plan-badge {
    display: inline-block;
    background: #e8b849;
    color: #12100e;
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    padding: 0.125rem 0.625rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.plan-name {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #f5f0eb;
    margin-bottom: 0.25rem;
}

.plan-price {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #e8b849;
    margin-bottom: 0.75rem;
}

.plan-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: #a8a29e;
}

.plan-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.plan-features li {
    font-size: 0.875rem;
    color: #a8a29e;
}

/* ---------- TEMPLATE SELECTION ---------- */
.template-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.template-select-card {
    background: #12100e;
    border: 2px solid #2a2825;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s ease;
}

.template-select-card:hover {
    border-color: #e8b849;
}

.template-select-card.selected {
    border-color: #e8b849;
}

.template-preview {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #57534e;
}

.template-preview-moderna { background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%); }
.template-preview-vibrante { background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 100%); }
.template-preview-clasica { background: linear-gradient(135deg, #422006 0%, #854d0e 100%); }
.template-preview-oscura { background: linear-gradient(135deg, #12100e 0%, #2a2825 100%); }

.template-info {
    padding: 1rem;
    border-top: 1px solid #2a2825;
}

.template-name {
    font-family: 'Epilogue', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #f5f0eb;
    margin-bottom: 0.25rem;
}

.template-desc {
    font-size: 0.8125rem;
    color: #a8a29e;
    margin-bottom: 0.5rem;
}

.template-color {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--swatch);
}

/* ---------- REVIEW STEP ---------- */
.review-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.review-card {
    background: #12100e;
    border: 1px solid #2a2825;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-label {
    font-size: 0.8125rem;
    color: #57534e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    min-width: 5rem;
}

.review-value {
    flex: 1;
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    color: #f5f0eb;
    font-size: 1rem;
}

.review-edit {
    background: none;
    border: none;
    color: #e8b849;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0.25rem 0.5rem;
}

.review-edit:hover {
    color: #f0cc6a;
}

/* ---------- SUCCESS STEP ---------- */
.success-url {
    text-align: center;
    margin: 2rem 0;
}

.success-label {
    font-size: 0.9375rem;
    color: #a8a29e;
    margin-bottom: 0.75rem;
}

.success-domain {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e8b849;
    word-break: break-all;
}

.success-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.success-card {
    background: #12100e;
    border: 1px solid #2a2825;
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.success-card:hover {
    border-color: #e8b849;
    transform: translateY(-2px);
}

.success-card-icon {
    font-size: 2rem;
}

.success-card-text {
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    color: #f5f0eb;
    font-size: 0.9375rem;
}

.success-card-desc {
    font-size: 0.8125rem;
    color: #a8a29e;
}

/* ---------- AUTH FORMS ---------- */
.auth-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 4rem);
    padding: 2rem;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #201e1c;
    border: 1px solid #2a2825;
    border-radius: 1rem;
    padding: 2.5rem;
}

.auth-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    font-family: 'Epilogue', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #e8b849;
    margin-bottom: 0.5rem;
}

.auth-tagline {
    font-size: 0.9375rem;
    color: #a8a29e;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #f5f0eb;
    margin-bottom: 0.375rem;
}

.form-input {
    width: 100%;
    background: #12100e;
    border: 1px solid #2a2825;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #f5f0eb;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.25s ease;
}

.form-input:focus {
    border-color: #e8b849;
}

.form-input::placeholder {
    color: #57534e;
}

.form-error {
    display: block;
    font-size: 0.8125rem;
    color: #ef4444;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-top: 0.25rem;
    accent-color: #e8b849;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: #a8a29e;
    margin-bottom: 0;
}

.form-alert {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.form-alert-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

.form-alert-success {
    background: rgba(34,197,94,0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.auth-footer {
    text-align: center;
    font-size: 0.875rem;
    color: #a8a29e;
}

.auth-footer a {
    color: #e8b849;
    font-weight: 600;
}

/* ---------- DASHBOARD / MY STORES ---------- */
.dashboard-section {
    padding: 3rem 0;
    min-height: calc(100vh - 4rem);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #f5f0eb;
}

/* Stores grid */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.store-card {
    background: #201e1c;
    border: 1px solid #2a2825;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.store-card:hover {
    border-color: #e8b849;
    transform: translateY(-2px);
}

.store-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.store-domain {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #f5f0eb;
}

.store-plan {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-gratis {
    background: rgba(168,162,158,0.15);
    color: #a8a29e;
    border: 1px solid #2a2825;
}

.plan-pro {
    background: rgba(232,184,73,0.15);
    color: #e8b849;
    border: 1px solid #e8b849;
}

.plan-premium {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.store-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-top: 1px solid #2a2825;
    border-bottom: 1px solid #2a2825;
}

.store-stat {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #a8a29e;
}

.store-stat strong {
    color: #f5f0eb;
    font-weight: 600;
}

.store-status {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    display: inline-block;
}

.status-active { background: #22c55e; }
.status-inactive { background: #ef4444; }
.status-pending { background: #e8b849; }

.store-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.store-actions .btn {
    flex: 1;
    min-width: 0;
    font-size: 0.8125rem;
    padding: 0.5rem 0.75rem;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.empty-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f5f0eb;
    margin-bottom: 0.75rem;
}

.empty-desc {
    font-size: 1rem;
    color: #a8a29e;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- PORTAL FOOTER ---------- */
.portal-footer {
    background: #0d0d0b;
    border-top: 1px solid #2a2825;
    padding: 4rem 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #2a2825;
}

.footer-logo {
    font-family: 'Epilogue', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #e8b849;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: #a8a29e;
    line-height: 1.7;
    max-width: 320px;
}

.footer-heading {
    font-family: 'Epilogue', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #e8b849;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #a8a29e;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #f5f0eb;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: #57534e;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .hero-form-inline {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-submit-btn {
        width: 100%;
        min-width: 0;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-4px);
    }

    .template-cards {
        grid-template-columns: 1fr;
    }

    .success-actions {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    /* Mobile nav */
    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .portal-nav.mobile-open .nav-links,
    .portal-nav.mobile-open .nav-actions {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 4rem;
        left: 0;
        right: 0;
        background: #12100e;
        border-bottom: 1px solid #2a2825;
        padding: 1rem 1.5rem;
        gap: 1rem;
        align-items: flex-start;
    }

    .portal-nav.mobile-open .nav-actions {
        top: 8rem;
        border-top: 1px solid #2a2825;
    }

    .stores-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .hero-form-inline {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-submit-btn {
        width: 100%;
        min-width: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .wizard-container {
        padding: 1.5rem;
    }

    .wizard-progress {
        gap: 1rem;
    }

    .wizard-progress::before {
        left: 1rem;
        right: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .store-actions {
        flex-direction: column;
    }

    .store-actions .btn {
        width: 100%;
    }
}
