/*
Theme Name: TradingAutoPro
Theme URI: https://tradingautopro.com
Author: TradingAutoPro
Description: Theme chính thức cho TradingAutoPro — tích hợp sẵn với plugin TradingAutoPro Manager (đăng ký, đăng nhập, quản lý khách hàng).
Version: 1.0.0
Requires at least: 5.6
Requires PHP: 7.4
Text Domain: tradingautopro
*/

/* ==================== GOOGLE FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --secondary: #10B981;
    --dark: #0F172A;
    --dark-light: #1E293B;
    --gray: #64748B;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    --gradient-dark: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 40px;
    background: rgba(15,23,42,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header nav {
    display: flex;
    gap: 32px;
}

.header nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.header nav a:hover { color: var(--white); }

.header .actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
}

.btn-login:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

.btn-trial {
    background: var(--gradient-primary);
    color: var(--white) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79,70,229,0.3);
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79,70,229,0.5);
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(79,70,229,0.25) 0%, transparent 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234F46E5' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,70,229,0.15);
    border: 1px solid rgba(79,70,229,0.3);
    color: #a5b4fc;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease both;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.15;
    max-width: 860px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero > p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(79,70,229,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79,70,229,0.6);
    color: var(--white);
    text-decoration: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
    text-decoration: none;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat { text-align: center; }

.hero-stat .label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.hero-stat .value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

/* ==================== LOGOS ==================== */
.logos-section {
    padding: 60px 40px;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    text-align: center;
}

.logos-section h3 {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    font-weight: 500;
}

.logos-track {
    display: flex;
    overflow: hidden;
    position: relative;
}

.logos-wrapper {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: scroll 20s linear infinite;
    flex-shrink: 0;
}

.logos-wrapper img {
    height: 32px;
    opacity: 0.4;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s;
}

.logos-wrapper img:hover { opacity: 0.8; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 100px 40px;
}

.section-dark { background: var(--dark); }
.section-darker { background: var(--dark-light); }

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

.section-badge {
    display: inline-block;
    background: rgba(79,70,229,0.15);
    color: #818cf8;
    border: 1px solid rgba(79,70,229,0.25);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.section-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ==================== FEATURE CARDS ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(79,70,229,0.3);
    transform: translateY(-4px);
}

.feature-card .icon {
    width: 52px;
    height: 52px;
    background: rgba(79,70,229,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #818cf8;
}

.feature-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ==================== COMPARISON ==================== */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.08);
}

.comparison-card.negative { border-top: 3px solid #EF4444; }
.comparison-card.positive { border-top: 3px solid #10B981; }

.comparison-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.comparison-header .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.comparison-card.negative .icon { background: rgba(239,68,68,0.15); color: #EF4444; }
.comparison-card.positive .icon { background: rgba(16,185,129,0.15); color: #10B981; }

.comparison-header h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.comparison-card.negative .comparison-list li i { color: #EF4444; flex-shrink: 0; margin-top: 2px; }
.comparison-card.positive .comparison-list li i { color: #10B981; flex-shrink: 0; margin-top: 2px; }

/* ==================== PRICING ==================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79,70,229,0.3);
}

.pricing-card.featured {
    background: rgba(79,70,229,0.12);
    border: 2px solid rgba(79,70,229,0.4);
}

.pricing-card.featured::before {
    content: 'Phổ biến nhất';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-icon {
    font-size: 30px;
    margin-bottom: 20px;
    color: #818cf8;
}

.pricing-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.pricing-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}

.pricing-price .currency {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

.pricing-price .amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.pricing-price .period {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.pricing-features li i {
    color: #10B981;
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79,70,229,0.3);
    margin-top: auto;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79,70,229,0.5);
    color: var(--white);
    text-decoration: none;
}

/* ==================== STEPS ==================== */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 32px;
    transition: border-color 0.3s;
}

.step-item:hover { border-color: rgba(79,70,229,0.3); }

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.step-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* ==================== FAQ ==================== */
.faq-container {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover { border-color: rgba(79,70,229,0.25); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    transition: background 0.2s;
    user-select: none;
}

.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-question i {
    transition: transform 0.3s ease;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

.faq-question.active i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer.open { max-height: 300px; }

.faq-answer-content {
    padding: 0 28px 22px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
}

/* ==================== CTA ==================== */
.cta-section {
    padding: 100px 40px;
    text-align: center;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(79,70,229,0.2) 0%, transparent 70%);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--white);
    line-height: 1.25;
}

.cta-section > p {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #080E1A;
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand img { margin-bottom: 16px; }

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h5 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li { font-size: 14px; }

.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-links span { color: rgba(255,255,255,0.55); font-size: 14px; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: center;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==================== AUTH PAGES (Login/Register) ==================== */
.tap-auth-page-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79,70,229,0.2) 0%, transparent 60%);
}

/* Override plugin default auth styles to match theme */
.tap-auth-wrapper {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    min-height: unset !important;
    background: none !important;
    padding: 0 !important;
    display: block !important;
}

.tap-auth-card {
    background: rgba(255,255,255,0.04) !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 40px 36px !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 80px rgba(0,0,0,.5) !important;
}

.tap-auth-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    text-align: center;
}

.tap-auth-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    text-align: center;
    margin-bottom: 8px !important;
}

.tap-auth-subtitle {
    font-size: 14px !important;
    color: rgba(255,255,255,0.5) !important;
    text-align: center;
    margin-bottom: 28px !important;
}

.tap-auth-logo {
    text-align: center;
    margin-bottom: 24px;
}

.tap-auth-logo img { height: 48px; }

.tap-field {
    margin-bottom: 20px;
}

.tap-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.tap-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.tap-input-icon {
    position: absolute;
    left: 14px;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}

.tap-auth-input {
    width: 100%;
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 10px !important;
    padding: 12px 40px 12px 44px !important;
    font-size: 14px !important;
    color: var(--white) !important;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}

.tap-auth-input:focus {
    border-color: rgba(79,70,229,0.6) !important;
    background: rgba(79,70,229,0.08) !important;
}

.tap-auth-input::placeholder { color: rgba(255,255,255,0.3) !important; }

.tap-toggle-pass {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    padding: 4px;
    transition: color 0.2s;
}

.tap-toggle-pass:hover { color: rgba(255,255,255,0.8); }

.tap-field-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tap-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
}

.tap-checkbox-label input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.tap-forgot-link {
    font-size: 13px;
    color: #818cf8;
    text-decoration: none;
    transition: color 0.2s;
}

.tap-forgot-link:hover { color: #a5b4fc; }

.tap-recaptcha-wrap {
    display: flex;
    justify-content: center;
}

.tap-auth-btn {
    width: 100%;
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79,70,229,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.tap-auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79,70,229,0.55);
}

.tap-btn-arrow {
    font-size: 18px;
    transition: transform 0.2s;
}

.tap-auth-btn:hover .tap-btn-arrow { transform: translateX(3px); }

.tap-auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.tap-auth-footer a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.tap-auth-footer a:hover { color: #a5b4fc; }

.tap-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 20px;
}

.tap-alert-error {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.3);
    color: #fca5a5;
}

.tap-alert-success {
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.3);
    color: #6ee7b7;
}

.tap-auth-logged-in {
    text-align: center;
    padding: 24px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.tap-auth-logged-in a {
    color: #34d399;
    text-decoration: none;
    font-weight: 600;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .comparison { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header { padding: 14px 20px; }
    .header nav { display: none; }
    .hero { padding: 100px 20px 60px; }
    .section { padding: 70px 20px; }
    .footer { padding: 60px 20px 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-stats { gap: 24px; }
    .tap-auth-card { padding: 32px 24px !important; }
}
