/* ==========================================
   CSS Variables & Global Resets
   ========================================== */
:root {
    --layout-width: 100%;
    --container-max-width: 1200px;
    --content-max-width: 800px;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --nav-height: 70px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--primary-gradient);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.public-main {
    flex: 1;
}

/* ==========================================
   Navigation Styles
   ========================================== */
.public-nav {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.2s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a.active {
    font-weight: 700;
    border-bottom: 2px solid white;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================
   Footer Styles
   ========================================== */
.public-footer {
    width: 100%;
    margin-top: 60px;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px 40px;
}

.footer-wrapper {
    background: rgba(0, 0, 0, 0.2);
    padding: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    border-radius: 12px;
}

.footer-top {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-link-box {
    flex: 1;
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.footer-link-box a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-link-box a:hover {
    text-decoration: underline;
}

.footer-info-panel {
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 12px;
    border-radius: 8px;
}

.footer-info-panel p {
    margin: 2px 0;
    color: #333;
    font-size: 13px;
}

.footer-info-panel p:first-child {
    font-size: 14px;
    margin-bottom: 4px;
}

/* ==========================================
   Common Page Containers
   ========================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
}

.hero-content {
    max-width: var(--content-max-width);
}

.page-header {
    text-align: center;
    padding: 40px 20px;
    color: white;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-header .tagline {
    font-size: 24px;
    opacity: 0.95;
    font-weight: 500;
}

.page-header .description {
    font-size: 18px;
    opacity: 0.85;
    margin-top: 12px;
    line-height: 1.6;
}

.content-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================
   Shared Layout Components
   ========================================== */
/* Hero Typography */
.hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero .description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-btn, .sign-in-btn {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.cta-btn:hover, .sign-in-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.hero .sign-in-btn {
    margin-bottom: 40px;
}

/* Feature Cards Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px auto;
    max-width: 900px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
}

.feature-card h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

/* Content Cards */
.content-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Info Panels */
.info-panel {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 30px;
    margin: 20px auto;
}

.info-panel h2 {
    color: white;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-panel p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

/* Pricing Components */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin: 30px auto;
    max-width: 700px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    color: #667eea;
    font-size: 28px;
    margin-bottom: 8px;
}

.plan-subtitle {
    color: #999;
    font-size: 16px;
}

.price-display {
    margin-top: 20px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: #667eea;
}

.price-currency {
    font-size: 2rem;
    vertical-align: super;
}

.price-period {
    display: block;
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

.features-section {
    margin-top: 30px;
}

.features-section h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 16px;
}

.plan-features {
    list-style: none;
    padding: 0;
}

.plan-features li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.cta-container {
    text-align: center;
    margin-top: 30px;
}

/* Beta Offer Badge with Animated Glow */
.beta-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.beta-offer-badge .star-icon {
    font-size: 1.2rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6), 0 0 40px rgba(118, 75, 162, 0.3);
        transform: scale(1.02);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2) rotate(15deg);
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .beta-offer-badge {
        animation: none;
    }
    .beta-offer-badge .star-icon {
        animation: none;
    }
}

.usage-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.usage-note p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
}

.usage-note p + p {
    margin-top: 12px;
}

.link-highlight {
    color: #667eea;
    text-decoration: none;
}

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

.policy-section {
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.policy-section h2 {
    color: #667eea;
    font-size: 20px;
    margin-bottom: 12px;
}

.policy-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Contact Components */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-method {
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.contact-title {
    color: #667eea;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-info {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.form-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.form-title {
    color: #667eea;
    font-size: 22px;
    margin-bottom: 24px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.response-time {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.response-time-title {
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 8px;
}

.response-time-text {
    color: #666;
    font-size: 14px;
}

/* Help/Operating Instructions Components */
.help-subtitle {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.help-section-title {
    color: #333;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.help-subsection-title {
    color: #667eea;
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.style-card {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.style-card h4 {
    color: #764ba2;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.style-card ul {
    margin-left: 20px;
    color: #555;
}

.style-card li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.example {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 6px;
    margin-top: 10px;
    font-style: italic;
    color: #2c5f7a;
}

.tip-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 6px;
}

.tip-box strong {
    color: #856404;
}

/* FAQ Components */
.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    color: #667eea;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.faq-question::before {
    content: "Q:";
    margin-right: 10px;
    color: #764ba2;
    font-weight: 700;
}

.faq-answer {
    color: #555;
    line-height: 1.7;
    padding-left: 34px;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer ul {
    margin-left: 20px;
    margin-top: 10px;
}

.faq-answer li {
    margin-bottom: 6px;
}

.faq-answer strong {
    color: #333;
}

.contact-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
    text-align: center;
}

.contact-box h3 {
    color: #667eea;
    margin-bottom: 10px;
}

.contact-box p {
    color: #555;
    margin-bottom: 15px;
}

.contact-box a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Who Is It For - Segment Cards */
.segment-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.segment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.segment-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.segment-content h3 {
    color: #667eea;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.segment-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

.section-title {
    text-align: center;
    margin: 40px 0 30px;
}

.section-title h2 {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 50px 40px;
    margin: 40px 0 20px;
}

.cta-section h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 24px;
}

/* Contact Page Helper Text */
.contact-helper {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #999;
}

.contact-details {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #999;
}

.contact-highlight {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #667eea;
}

/* Login Page Styles */
.content-wrapper {
    padding: 40px 20px;
}

.login-container {
    max-width: 480px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 8px;
}

.login-header p {
    color: #666;
    font-size: 0.95rem;
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}

.auth-tab {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #666;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.auth-tab:hover {
    color: #667eea;
}

.auth-tab.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.error-message, .success-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-size: 14px;
    line-height: 1.5;
}

.error-message {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.success-message {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

.error-message.show, .success-message.show {
    display: block;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.login-button {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.login-button:active {
    transform: translateY(0);
}

.footer-text {
    text-align: center;
    margin-top: 30px;
    color: #999;
    font-size: 13px;
}

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

.terms-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.5;
}

.terms-checkbox {
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.terms-text {
    color: #555;
}

.terms-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.login-helper-text {
    font-size: 13px;
    color: #666;
    margin-top: 16px;
    text-align: center;
}

/* ==========================================
   Responsive Styles (Mobile)
   ========================================== */

/* Mobile menu overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #667eea 0%, #5a67d8 50%, #764ba2 100%);
        padding: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1000;
        display: flex;
        flex-direction: column;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Mobile menu header with close area */
    .nav-menu::before {
        content: 'Menu';
        display: block;
        padding: 24px 24px 20px;
        font-size: 24px;
        font-weight: 700;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        margin-bottom: 8px;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 0 16px;
    }
    
    .nav-links a {
        font-size: 17px;
        font-weight: 500;
        padding: 16px 12px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        display: flex;
        align-items: center;
        transition: background 0.2s, padding-left 0.2s;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 16px;
    }
    
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.15);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 600;
    }
    
    .nav-links a:last-of-type {
        border-bottom: none;
    }
    
    /* Mobile user dropdown - completely redesigned */
    .user-dropdown {
        width: 100%;
        margin-top: 16px;
        padding: 0 16px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 16px;
    }
    
    .user-dropdown-btn {
        width: 100%;
        text-align: left;
        font-size: 15px;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .user-dropdown-btn:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .user-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        max-height: none;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        overflow: hidden;
        opacity: 0;
        max-height: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        transform: none;
    }
    
    .user-dropdown-menu.active {
        opacity: 1;
        max-height: 400px;
        visibility: visible;
    }
    
    .user-dropdown-menu a {
        padding: 14px 16px;
        font-size: 15px;
        color: #333;
        border-bottom: 1px solid #eee;
    }
    
    .user-dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .user-dropdown-menu a:hover {
        background: #f0f0f0;
    }
    
    .dropdown-divider {
        height: 1px;
        background: #e0e0e0;
        margin: 0;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header .tagline {
        font-size: 18px;
    }
    
    .page-header .description {
        font-size: 16px;
    }
    
    .hero {
        padding: 30px 20px;
    }
    
    .content-container {
        padding: 0 20px;
    }
    
    .footer-container {
        padding: 0 20px 20px;
    }
    
    .segment-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .segment-icon {
        font-size: 2rem;
    }
    
    .segment-content h3 {
        font-size: 16px;
    }
    
    .segment-content p {
        font-size: 13px;
    }
    
    .cta-section {
        padding: 40px 30px;
    }
    
    .cta-section h2 {
        font-size: 18px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero .tagline {
        font-size: 18px;
    }
    
    .hero .description {
        font-size: 16px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .cta-btn, .sign-in-btn {
        font-size: 16px;
        padding: 14px 32px;
    }
    
    .price-amount {
        font-size: 3.5rem;
    }
}

/* Business User Guide Styles */
.guide-content {
    line-height: 1.8;
    color: #333;
}

.guide-content h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.guide-content h1:first-child {
    margin-top: 0;
}

.guide-content h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.guide-content h3 {
    color: #555;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.guide-content p {
    margin-bottom: 15px;
}

.guide-content ul,
.guide-content ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

.guide-content li {
    margin-bottom: 8px;
}

.guide-content code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
}

.guide-content pre {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 6px;
    overflow-x: auto;
    margin-bottom: 15px;
}

.guide-content pre code {
    background: none;
    padding: 0;
}

.guide-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 20px 0;
    color: #666;
    font-style: italic;
}

.guide-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.guide-content th,
.guide-content td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.guide-content th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.guide-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.guide-content a:hover {
    text-decoration: underline;
}

.guide-content hr {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 30px 0;
}

.guide-content strong {
    font-weight: 600;
    color: #222;
}

/* ==========================================
   User Dropdown Styles (Logged-in Navigation)
   ========================================== */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.user-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.user-dropdown-menu.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
    border: none;
}

.user-dropdown-menu a:hover {
    background: #f8f9fa;
}

.user-dropdown-menu a:first-child {
    border-radius: 8px 8px 0 0;
}

.user-dropdown-menu a:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 8px 0;
}

/* Beta Badge Styles */
.beta-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
