/* ============================================
   ScanCardPro Public Pages Styles
   For: index, about, contact, privacy, terms
   ============================================ */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition-slow);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--surface);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    padding: 100px 24px 24px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu .btn-primary {
    margin-top: 24px;
    text-align: center;
    color: var(--white);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--white) 50%, var(--surface-alt) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(15, 76, 129, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 520px;
}

.session-alert {
    background: #fef9e7;
    border: 1px solid #f5d77a;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #7a5d0c;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 14px 28px;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: var(--dark);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1);
    transform: rotateY(-8deg) rotateX(5deg);
    margin: 0 auto;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1e3a5f 0%, #0f2744 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--dark);
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.scan-interface {
    padding: 50px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.scan-header {
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
}

.scan-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.scan-header p {
    font-size: 13px;
    opacity: 0.7;
}

.scan-viewfinder {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.business-card-preview {
    width: 85%;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

.business-card-preview .card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.business-card-preview .card-title {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.business-card-preview .card-info {
    font-size: 11px;
    color: var(--text);
    line-height: 1.6;
}

.scan-corners {
    position: absolute;
    inset: 10px;
    pointer-events: none;
}

.scan-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--accent-light);
    border-style: solid;
    border-width: 0;
}

.scan-corner.tl { top: 0; left: 0; border-top-width: 3px; border-left-width: 3px; border-radius: 6px 0 0 0; }
.scan-corner.tr { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; border-radius: 0 6px 0 0; }
.scan-corner.bl { bottom: 0; left: 0; border-bottom-width: 3px; border-left-width: 3px; border-radius: 0 0 0 6px; }
.scan-corner.br { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; border-radius: 0 0 6px 0; }

.scan-button {
    margin-top: 20px;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    width: 100%;
}

/* Floating elements */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    z-index: 10;
}

.floating-card.sync {
    top: 80px;
    right: -40px;
    animation: floatSync 3s ease-in-out infinite;
}

.floating-card.sheets {
    bottom: 120px;
    left: -60px;
    animation: floatSheets 3.5s ease-in-out infinite 0.5s;
}

@keyframes floatSync {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatSheets {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
}

.floating-card-icon {
    width: 36px;
    height: 36px;
    background: var(--surface);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 8px;
}

.floating-card h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.floating-card p {
    font-size: 11px;
    color: var(--text-light);
}

.floating-card.sheets .floating-card-icon {
    background: #e8f5e9;
}

/* Features Section */
.features {
    padding: 120px 24px;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header .section-description {
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-slow);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.25);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 24px;
    background: var(--surface);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 72px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    opacity: 0.3;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow);
}

.step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.section-help-link {
    text-align: center;
    margin-top: 40px;
}

.section-help-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.section-help-link a:hover {
    text-decoration: underline;
}

/* Pricing Section */
.pricing {
    padding: 120px 24px;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 72px auto 0;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transition: all var(--transition-slow);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(15, 76, 129, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
}

.price {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--text-light);
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.pricing-feature:not(:last-child) {
    border-bottom: 1px solid var(--surface);
}

.check-icon {
    width: 22px;
    height: 22px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-feature span {
    font-size: 15px;
    color: var(--text);
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.pricing-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 12px;
}

.pricing-card.featured .pricing-note {
    color: var(--accent);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 100px 24px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(8, 145, 178, 0.3) 0%, transparent 60%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 80px 24px 32px;
    background: var(--dark);
    color: var(--text-lighter);
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-lighter);
}

.footer-column h4 {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: var(--text-lighter);
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 6px 0;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--dark-muted);
    text-align: center;
    font-size: 14px;
}

/* Page Header (for about, contact, privacy, terms) */
.page-header {
    background: var(--gradient-primary);
    padding: 140px 24px 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: clamp(36px, 5vw, 52px);
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 1232px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 28px;
    margin: 48px 0 16px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.page-content ul, .page-content ol {
    margin: 16px 0 16px 24px;
    line-height: 1.8;
}

.page-content li {
    margin-bottom: 8px;
}

.page-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 32px 0 12px;
}

.page-content a {
    color: var(--primary);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.page-content a.btn-primary {
    color: var(--white);
}

.page-content a.btn-primary:hover {
    text-decoration: none;
}

/* Notice Boxes */
.notice-box {
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 24px 0;
    border: 2px solid;
}

.notice-box strong {
    display: block;
    margin-bottom: 4px;
}

.notice-box.notice-success {
    background: #dcfce7;
    border-color: #22c55e;
    color: #166534;
}

.notice-box.notice-info {
    background: #e0f2fe;
    border-color: #0891b2;
    color: #0c4a6e;
}

.notice-box.notice-warning {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}

/* Contact Page */
.contact-page {
    max-width: 1100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--surface);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    gap: 16px;
    align-items: center;
}

.info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.info-card-content {
    flex: 1;
}

.info-card h3 {
    font-size: 16px;
    color: var(--dark);
    margin: 0 0 4px 0;
}

.info-card p {
    color: var(--text-light);
    font-size: 13px;
    margin: 0 0 6px 0;
    line-height: 1.5;
}

.info-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
}

.contact-form-wrapper {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-light);
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--transition);
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    min-height: 150px;
    resize: vertical;
    transition: border-color var(--transition);
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 14px 32px;
}

/* Why ScanCardPro Section */
.why-section {
    padding: 120px 24px;
    background: var(--surface);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-slow);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Integrations Section */
.integrations {
    padding: 120px 24px;
    background: var(--white);
}

.integrations-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.integrations-group h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    text-align: center;
}

.integrations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.integration-tag {
    display: inline-block;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}

.integration-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.integrations-note {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 24px;
    background: var(--surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-slow);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 2px;
}

.author-info span {
    color: var(--text-light);
    font-size: 13px;
}

/* Homepage FAQ Section */
section.faq-section {
    padding: 120px 24px;
    background: var(--surface);
    border-top: none;
}

section.faq-section .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

section.faq-section .faq-item {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-slow);
}

section.faq-section .faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

section.faq-section .faq-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

section.faq-section .faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Page FAQ Section (original) */
.page-content .faq-section {
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.page-content .faq-section h2 {
    text-align: center;
    margin-bottom: 12px;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.page-content .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.page-content .faq-item {
    background: var(--surface);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.faq-question {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 16px;
}

.faq-answer {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive - Public */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .floating-card.sync {
        right: 0;
    }

    .floating-card.sheets {
        left: 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 90px 20px 50px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-cta .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
        transform: none;
    }

    .scan-header h4 {
        font-size: 15px;
    }

    .scan-header p {
        font-size: 11px;
    }

    .business-card-preview {
        padding: 14px;
    }

    .business-card-preview .card-name {
        font-size: 14px;
    }

    .floating-card {
        display: none;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: nowrap;
        justify-content: center;
        margin-top: 32px;
        padding-top: 24px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-description {
        font-size: 15px;
    }

    .features {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 20px;
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 10px;
        margin-bottom: 0;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .feature-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .how-it-works {
        padding: 60px 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 48px;
    }

    .step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
        padding: 20px 0;
        border-bottom: 1px solid var(--border);
    }

    .step:last-child {
        border-bottom: none;
    }

    .step-number {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
        margin: 0;
        border-width: 2px;
    }

    .step-content {
        flex: 1;
    }

    .step h3 {
        margin-bottom: 4px;
    }

    .step p {
        font-size: 13px;
    }

    .pricing {
        padding: 60px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-header {
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .price {
        font-size: 44px;
    }

    .pricing-features {
        margin-bottom: 24px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .footer {
        padding: 48px 20px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .page-header {
        padding: 120px 20px 60px;
    }

    .page-content {
        padding: 48px 20px;
    }

    /* Contact page responsive */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    /* Why section mobile */
    .why-section {
        padding: 60px 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .why-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .why-card h3 {
        font-size: 16px;
    }

    .why-card p {
        font-size: 13px;
    }

    /* Integrations mobile */
    .integrations {
        padding: 60px 20px;
    }

    .integrations-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .integration-tag {
        padding: 6px 12px;
        font-size: 13px;
    }

    .integrations-note {
        font-size: 14px;
    }

    /* Testimonials mobile */
    .testimonials {
        padding: 60px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .author-info strong {
        font-size: 14px;
    }

    .author-info span {
        font-size: 12px;
    }

    /* FAQ section mobile */
    section.faq-section {
        padding: 60px 20px;
    }

    section.faq-section .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    section.faq-section .faq-item {
        padding: 20px;
    }

    section.faq-section .faq-item h3 {
        font-size: 15px;
    }

    section.faq-section .faq-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .stat-value {
        font-size: 18px;
    }

    .stat-label {
        font-size: 10px;
    }
}

/* ============================================
   Login Page
   ============================================ */
.login-section {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--white) 50%, var(--surface-alt) 100%);
}

.login-container {
    width: 100%;
    max-width: 440px;
}

.login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 48px 40px;
    border: 1px solid var(--border);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    height: 50px;
    margin-bottom: 24px;
}

.login-header h1 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 8px;
}

.login-header p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
}

.login-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 24px;
    color: #92400e;
    font-size: 14px;
}

.google-signin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: all var(--transition);
}

.google-signin-btn:hover {
    border-color: var(--primary);
    background: var(--surface);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 28px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.login-divider span {
    padding: 0 16px;
    color: var(--text-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.login-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.login-feature svg {
    color: var(--success);
    flex-shrink: 0;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
}

.login-footer a {
    color: var(--text-light);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition);
}

.login-footer a:hover {
    color: var(--primary);
}

.login-footer .divider {
    color: var(--border);
    margin: 0 12px;
}

@media (max-width: 480px) {
    .login-card {
        padding: 32px 24px;
    }

    .login-header h1 {
        font-size: 24px;
    }
}
