/* 
  TITAN Apple Tool — Design System & Stylesheet
  Theme: Apple Aesthetic (White & Orange)
*/

:root {
    --bg-main: #F5F5F7;
    --bg-card: #FFFFFF;
    --bg-nav: rgba(255, 255, 255, 0.82);
    --text-main: #1D1D1F;
    --text-muted: #86868B;
    --accent-orange: #FF6B00;
    --accent-orange-hover: #E56000;
    --accent-orange-light: rgba(255, 107, 0, 0.08);
    --accent-blue: #0071E3;
    --accent-green: #34C759;
    --border-light: #E5E5EA;
    --border-dark: #D2D2D7;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

code {
    font-family: 'Courier New', Courier, monospace;
    background: #F0F0F3;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #333;
}

/* NAVIGATION */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.4rem;
    color: #000;
}

.logo-accent {
    color: var(--accent-orange);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-orange {
    background-color: var(--accent-orange);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
}

.btn-orange:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-dark);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* HERO SECTION */
.hero-section {
    padding: 130px 24px 80px;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-main) 100%);
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-orange-light);
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Outfit', var(--font-family);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #1D1D1F 0%, #434347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 36px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

/* SHOWCASE GRID (Apple Product Style) */
.hero-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

.showcase-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;

    display: block;
    margin-bottom: 8px;
}

.showcase-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.showcase-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.link-orange {
    color: var(--accent-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.link-orange:hover {
    text-decoration: underline;
}

/* CSS MOCKUPS */
.showcase-image-wrap {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.mockup-phone {
    width: 220px;
    height: 280px;
    background: #111;
    border-radius: 36px 36px 0 0;
    padding: 10px 10px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
}

.phone-screen {
    background: linear-gradient(135deg, #1d1d1f 0%, #2c2c2e 100%);
    height: 100%;
    border-radius: 28px 28px 0 0;
    padding: 20px 14px;
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.screen-notch {
    width: 70px;
    height: 14px;
    background: #000;
    border-radius: 10px;
    position: absolute;
    top: 8px;
}

.screen-logo {
    font-size: 2.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.9);
}

.screen-status {
    font-size: 0.75rem;
    color: #34C759;
    font-weight: 600;
    margin-bottom: 6px;
}

.screen-model {
    font-size: 0.9rem;
    font-weight: 700;
}

.screen-pill {
    margin-top: auto;
    margin-bottom: 10px;
    background: var(--accent-orange);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.mockup-mac {
    width: 320px;
    height: 200px;
    background: #1e1e1e;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.mac-header {
    height: 24px;
    background: #2d2d2d;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.mac-terminal {
    padding: 16px;
    font-family: monospace;
    font-size: 0.75rem;
    line-height: 1.6;
}

.term-green { color: #34C759; }
.term-white { color: #FFF; }
.term-orange { color: #FF9500; }
.term-lime { color: #30D158; font-weight: bold; }

/* SECTIONS COMMON */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 24px;
}

.bg-light {
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: inline-block;
}

.section-title {
    font-family: 'Outfit', var(--font-family);
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* DASHBOARD SECTION */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

.dash-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-orange-light);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.user-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.user-role-badge {
    display: inline-block;
    background: var(--text-main);
    color: #FFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    margin: 4px 0 8px;
}

.user-email {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.user-balance-box {
    width: 100%;
    background: var(--bg-main);
    padding: 18px;
    border-radius: var(--radius-sm);
}

.balance-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;

    display: block;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin: 4px 0 14px;
}

.dash-stats {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;

    margin-bottom: -8px;
}

.stat-box {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.stat-icon.orange { background: var(--accent-orange-light); color: var(--accent-orange); }
.stat-icon.green { background: rgba(52, 199, 89, 0.1); color: var(--accent-green); }
.stat-icon.blue { background: rgba(0, 113, 227, 0.1); color: var(--accent-blue); }

.stat-info h4 { font-size: 1.4rem; font-weight: 800; }
.stat-info p { font-size: 0.8rem; color: var(--text-muted); }

.table-card {
    grid-column: span 2;
}

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

.search-mini input {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-dark);
    font-size: 0.85rem;
    outline: none;
}

.table-responsive {
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.custom-table th, .custom-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
}

.custom-table th {
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-main);
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success { background: rgba(52, 199, 89, 0.15); color: #248A3D; }
.badge-warning { background: rgba(255, 149, 0, 0.15); color: #C77700; }

/* REGISTER SECTION */
.register-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.register-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.input-with-button {
    display: flex;
    gap: 12px;
}

.form-input, .form-select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-dark);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-input:focus, .form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px var(--accent-orange-light);
}

.form-help {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

.result-box {
    margin-top: 28px;
    padding: 24px;
    border-radius: var(--radius-sm);
    background: var(--bg-main);
    border: 1px solid var(--border-dark);
    animation: fadeIn 0.3s ease-out;
}

.result-box.hidden { display: none; }

.result-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.result-icon {
    font-size: 2rem;
    color: var(--accent-orange);
}

.res-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-dark);
    font-size: 0.9rem;
}

.result-footer {
    margin-top: 20px;
}

/* BUY SERVICE SECTION */
.buy-service-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
}

.service-config-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.service-config-card h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.cost-summary-box {
    background: var(--bg-main);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.cost-row.total {
    font-size: 1.1rem;
    border-top: 1px solid var(--border-dark);
    padding-top: 10px;
    margin-top: 10px;

    margin-bottom: 0;
}

.service-info-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid var(--border-light);
    display: flex;
    gap: 16px;
}

.info-icon {
    font-size: 1.4rem;
    color: var(--accent-orange);
}

.info-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* DOWNLOAD SECTION */
.download-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
}

.download-main-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.dl-badge {
    display: inline-block;
    background: var(--accent-green);
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.download-main-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.download-main-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.dl-meta-list {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 36px;

    flex-wrap: wrap;
}

.dl-actions {
    display: flex;
    gap: 16px;
}

.download-sub-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-light);
}

.download-sub-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.download-sub-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.dep-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.dep-list li:last-child { border: none; }
.dep-list strong { display: block; font-size: 0.9rem; }
.dep-list p { margin: 0; font-size: 0.75rem; }

/* PRICES SECTION */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border: 2px solid var(--accent-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: #FFF;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.price-header h3 { font-size: 1.3rem; font-weight: 700; }
.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--accent-orange); margin: 12px 0 4px; }
.price-amount small { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.price-header p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }

.price-features {
    margin-bottom: 32px;
    flex: 1;
}

.price-features li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-orange { color: var(--accent-orange); }

/* FOOTER */
.footer-container {
    background: #FFFFFF;
    border-top: 1px solid var(--border-light);
    padding: 60px 24px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
    max-width: 380px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-links-grid h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links-grid ul li {
    margin-bottom: 10px;
}

.footer-links-grid a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links-grid a:hover {
    color: var(--text-main);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* MODALS */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #FFF;
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 440px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-backdrop.active .modal-box {
    transform: translateY(0);
}

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

.modal-close {
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-muted);
}

.crypto-address-box {
    background: var(--bg-main);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-top: 14px;
}

.crypto-address-box code {
    display: block;
    word-break: break-all;
    margin: 8px 0 12px;
}

/* KEYFRAMES */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .hero-showcase { grid-template-columns: 1fr; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .dash-stats { grid-column: span 1; grid-template-columns: 1fr; }
    .table-card { grid-column: span 1; }
    .buy-service-grid, .download-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px; left: 0; width: 100%;
        background: #FFF;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-light);
        display: none;
    }
    .nav-menu.active { display: flex; }
    .mobile-toggle { display: block; }
    .input-with-button { flex-direction: column; }
}

/* APPLE SERIES 11 BANNER SECTION (Under Menu) */
.apple-series11-banner {
    width: 100%;
    background-color: #F5F5F7;
    padding-top: 85px;
    padding-bottom: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.series11-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
}

.series11-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: #1D1D1F;
    letter-spacing: -0.015em;
    margin-top: 10px;
    font-family: var(--font-family);
    line-height: 1.1;
}

.series11-subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    color: #1D1D1F;
    margin-top: 10px;
    letter-spacing: -0.005em;
}

.series11-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.series11-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 980px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.series11-btn.btn-blue {
    background-color: #0071E3;
    color: #FFFFFF;
    border: 1px solid #0071E3;
}

.series11-btn.btn-blue:hover {
    background-color: #0077ED;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 113, 227, 0.35);
}

.series11-btn.btn-outline-blue {
    background-color: transparent;
    color: #0071E3;
    border: 1.5px solid #0071E3;
}

.series11-btn.btn-outline-blue:hover {
    background-color: rgba(0, 113, 227, 0.06);
    transform: translateY(-1px);
}

.series11-img-wrapper {
    width: 100%;
    max-width: 960px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 10px;
}

.series11-img {
    width: 100%;
    height: auto;
    max-width: 900px;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .apple-series11-banner {
        padding-top: 75px;
    }

    .series11-title {
        font-size: 2.6rem;
    }

    .series11-subtitle {
        font-size: 1.2rem;
    }

    .series11-actions {
        gap: 12px;
        margin-top: 16px;
        margin-bottom: 20px;
    }

    .series11-btn {
        padding: 9px 20px;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   AUTOPAGO & CREDIT PACKAGES STYLES
   ========================================================================== */

/* Credit Sale Cards in Dashboard */
.credit-packages-wrapper {
    margin-bottom: 24px;
}

.credit-packages-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.credit-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.credit-card {
    background: #FFFFFF;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.credit-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-md);
}

.credit-card.featured {
    border-color: var(--accent-orange);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF9 100%);
}

.credit-card-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--accent-orange);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 980px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credit-card-header {
    margin-bottom: 14px;
}

.credit-card-credits {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.credit-card-credits small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.credit-card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-top: 4px;
}

.credit-card-features {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Modal Large for Autopago */
.modal-box-lg {
    max-width: 920px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    background: #FAFAFC;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Autopago Header with Payment Method & Timer */
.autopago-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1.5px solid var(--border-light);
    flex-wrap: wrap;
    gap: 12px;
}

.autopago-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
}

.autopago-timer-badge {
    background: rgba(52, 199, 89, 0.12);
    color: #278838;
    border: 1px solid rgba(52, 199, 89, 0.3);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 980px;
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 6px;
}

.autopago-timer-badge.warning {
    background: rgba(255, 59, 48, 0.12);
    color: #E02828;
    border-color: rgba(255, 59, 48, 0.3);
}

/* Method Selector Tabs */
.autopago-methods-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.autopago-method-btn {
    flex: 1;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-light);
    background: #FFFFFF;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.autopago-method-btn.active {
    border-color: var(--accent-orange);
    background: var(--accent-orange-light);
    color: var(--accent-orange);
}

/* Top Payment Grid: Left QR & Right Amount/Note */
.autopago-top-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .autopago-top-grid {
        grid-template-columns: 1fr;
    }
}

.autopago-qr-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.autopago-qr-img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 8px;
}

.autopago-qr-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.autopago-details-card-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.autopago-detail-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.autopago-detail-info {
    display: flex;
    flex-direction: column;
}

.autopago-detail-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.autopago-detail-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
}

.autopago-detail-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.btn-copy {
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
    transition: var(--transition);
}

.btn-copy:hover {
    background: #E5E7EB;
    color: #111827;
}

/* Bottom Grid: How to Pay Steps + Mobile Animation */
.autopago-bottom-grid {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .autopago-bottom-grid {
        grid-template-columns: 1fr;
    }
}

.autopago-steps-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.autopago-steps-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.autopago-step-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.autopago-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 2px;
}

.autopago-step-content strong {
    font-size: 0.92rem;
    color: #111827;
    display: block;

}

.autopago-step-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.autopago-note-badge {
    background: #F3F4F6;
    border: 1px dashed #D1D5DB;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 700;
    color: #111827;
    font-size: 0.85rem;
}

/* Animated Mobile Mockup Frame */
.autopago-mobile-frame-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.autopago-phone-mockup {
    width: 220px;
    background: #000000;
    border-radius: 32px;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    position: relative;
}

.autopago-phone-notch {
    width: 70px;
    height: 14px;
    background: #000000;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.autopago-phone-screen {
    background: #F9FAFB;
    border-radius: 24px;
    padding: 30px 14px 16px 14px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.autopago-phone-header-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6B7280;
    margin-bottom: 12px;
}

.autopago-phone-input-box {
    width: 100%;
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 10px;
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: 3px;
    margin-bottom: 14px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.autopago-phone-btn {
    width: 100%;
    background: #F59E0B;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.4);
    animation: phoneBtnPulse 2s infinite;
}

@keyframes phoneBtnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* Typing cursor animation */
.note-typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1rem;
    background: #F59E0B;
    margin-left: 2px;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Important Warning Box */
.autopago-warning-box {
    background: rgba(255, 107, 0, 0.05);
    border: 1px dashed rgba(255, 107, 0, 0.4);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.83rem;
    color: #C2410C;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.autopago-warning-box strong {
    color: #9A3412;
}

/* Loading button state */
.btn-loading {
    opacity: 0.75;
    pointer-events: none;
    cursor: not-allowed !important;
}

/* Login/Register Tabs inside Modal */
.modal-auth-tabs {
    display: flex;
    border-bottom: 1.5px solid var(--border-light);
    margin-bottom: 20px;
}

.modal-auth-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.modal-auth-tab.active {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
}

