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

:root {
    --navy: #0a1628;
    --navy-light: #1a2d4a;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --text-dark: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #22c55e;
    --warning: #eab308;
    --danger: #ef4444;
    
    --section-padding: 5rem 2rem;
    --section-padding-sm: 3rem 2rem;
    --container-max: 1200px;
    --content-gap: 2rem;
    --card-padding: 2rem;
    --card-radius: 16px;
    --btn-radius: 8px;
    
    --h1-size: 2.75rem;
    --h2-size: 2rem;
    --h3-size: 1.25rem;
    --body-size: 1rem;
    --small-size: 0.875rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-secondary);
    font-size: var(--body-size);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: var(--h1-size);
    font-weight: 800;
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

p {
    color: var(--text-secondary);
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0 2rem;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-links a.active {
    color: var(--navy);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
}

.btn-ghost:hover {
    color: var(--navy);
    background: var(--bg-light);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-light);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--accent-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
}

.page-wrapper {
    padding-top: 64px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-padding-sm);
}

.section {
    padding: var(--section-padding);
}

.section-alt {
    background: var(--white);
}

.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3.5rem 2rem 4rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
}

.hero-spacing {
    padding-top: 3.5rem;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.features-section {
    padding: var(--section-padding);
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: var(--h2-size);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--content-gap);
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--bg-light);
    padding: var(--card-padding);
    border-radius: var(--card-radius);
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--navy);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: var(--h3-size);
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-section {
    padding: var(--section-padding);
    background: var(--navy);
    text-align: center;
}

.cta-section h2 {
    font-size: var(--h2-size);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.page-header {
    margin-bottom: var(--content-gap);
    padding-top: 1rem;
}

.page-header h1 {
    font-size: var(--h2-size);
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--btn-radius);
    font-size: var(--body-size);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
    color: var(--text-dark);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea {
    min-height: 200px;
    resize: vertical;
}

.file-upload {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: var(--bg-light);
    cursor: pointer;
    transition: border-color 0.2s;
}

.file-upload:hover {
    border-color: var(--accent);
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 2rem;
    color: var(--text-muted);
}

.file-upload-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.file-upload-text span {
    color: var(--accent);
    font-weight: 500;
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.divider span {
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (max-width: 600px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.checkbox-item:hover {
    background: var(--border);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--navy);
}

.checkbox-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.results-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.results-section h2 {
    font-size: var(--h3-size);
    color: var(--navy);
    margin-bottom: 1rem;
}

.legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: var(--danger); }
.dot.yellow { background: var(--warning); }
.dot.blue { background: var(--accent); }
.dot.purple { background: #8b5cf6; }

#results-content {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    line-height: 1.8;
}

.info-box {
    padding: 1rem;
    background: #eff6ff;
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.templates-grid {
    display: grid;
    gap: 1.5rem;
}

.template-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    overflow: hidden;
}

.template-header {
    padding: 1.25rem 1.5rem;
    background: var(--navy);
    color: var(--white);
}

.template-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.template-body {
    padding: var(--card-padding);
}

.template-text {
    width: 100%;
    min-height: 200px;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    resize: vertical;
    margin-bottom: 1rem;
    background: var(--bg-light);
}

.copy-btn {
    padding: 0.625rem 1.25rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.copy-btn:hover {
    background: var(--navy-light);
}

.copy-btn.copied {
    background: var(--success);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

td {
    color: var(--text-dark);
}

.delete-btn {
    padding: 0.5rem 1rem;
    background: var(--danger);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.delete-btn:hover {
    opacity: 0.9;
}

.no-data {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem;
}

.pricing-hero {
    padding: var(--section-padding-sm);
    text-align: center;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    max-width: 450px;
    margin: 0 auto;
    border: 2px solid var(--border);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h2 {
    margin-top: 1rem;
    color: var(--navy);
    font-size: 1.5rem;
}

.pricing-amount {
    margin: 2rem 0;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--navy);
}

.pricing-amount .price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
}

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

.check-icon {
    color: var(--success);
    font-weight: bold;
    font-size: 1.1rem;
}

.subscribe-btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.2s;
}

.subscribe-btn:hover {
    background: var(--navy-light);
}

.billing-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 4rem auto;
    max-width: 1000px;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .value-props {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

.value-card {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: var(--card-radius);
    border: 1px solid var(--border);
    text-align: center;
}

.value-card h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: var(--h3-size);
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-section {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonial-section blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-section cite {
    color: var(--text-muted);
}

.auth-page {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.auth-card h1 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.auth-card .subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.auth-card .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.auth-footer {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

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

.auth-form {
    text-align: left;
    margin-bottom: 1.5rem;
}

.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.auth-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-align: left;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-social:hover {
    background: var(--bg-light);
    border-color: var(--text-light);
}

.btn-full {
    width: 100%;
}

.error-page {
    text-align: center;
    padding: var(--section-padding);
}

.error-page h1 {
    font-size: var(--h2-size);
    color: var(--navy);
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.disclaimer-box {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-left: 3px solid var(--navy);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.disclaimer-box strong {
    color: var(--navy);
}

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    margin-top: 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

.footer-disclaimer {
    font-size: 0.7rem;
    max-width: 700px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .top-nav {
        padding: 0 1rem;
    }
    .footer-top {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-actions {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 1rem;
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: var(--bg-light);
    color: var(--navy);
}

.password-toggle {
    position: relative;
}

.password-toggle input {
    padding-right: 3rem;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle-btn:hover {
    color: var(--navy);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 3rem 0;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-card.reverse {
    direction: rtl;
}

.feature-card.reverse > * {
    direction: ltr;
}

@media (max-width: 900px) {
    .feature-card, .feature-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

.feature-preview {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    width: 100%;
    overflow: hidden;
}

.mockup-header {
    background: var(--navy);
    color: white;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.mockup-content {
    padding: 1.5rem;
}

.mockup-upload, .mockup-textarea {
    background: var(--bg-light);
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mockup-btn {
    background: var(--navy);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.85rem;
}

.mockup-template {
    background: var(--bg-light);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 500;
}

.mockup-table {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.mockup-row {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.mockup-row:last-child {
    border-bottom: none;
}

.feature-info {
    padding: 1rem 0;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
    border-radius: 20px;
    margin: 3rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--navy);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

.locked-static {
    min-height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.locked-static-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.locked-static-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.locked-static h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.locked-static p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.locked-preview-image {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid var(--border);
}

.locked-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.locked-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.search-bar {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.search-bar input {
    flex: 1;
}

.search-bar button {
    padding: 0.75rem 1.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 1rem;
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 0.75rem 1rem;
    color: var(--navy);
    text-decoration: none;
    border-radius: 8px;
}

.mobile-menu a:hover {
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links, .nav-actions {
        display: none;
    }
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 20px;
}

.feature-card.reverse {
    direction: rtl;
}

.feature-card.reverse > * {
    direction: ltr;
}

.feature-preview {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-info {
    text-align: left;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-info h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.feature-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .feature-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card.reverse {
        direction: ltr;
    }
    
    .feature-info {
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
}

.preview-mockup {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.mockup-header {
    background: var(--navy);
    color: white;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.mockup-content {
    padding: 1rem;
}

.mockup-upload {
    background: var(--bg-light);
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 1.5rem;
}

.mockup-template {
    background: var(--bg-light);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: var(--navy);
}

.mockup-table {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.mockup-row {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.mockup-row:last-child {
    border-bottom: none;
}

.mockup-textarea {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    min-height: 60px;
}

.mockup-btn {
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.password-toggle {
    position: relative;
}

.password-toggle input {
    padding-right: 45px;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
}

.password-toggle-btn:hover {
    color: var(--navy);
}

/* ========================================
   TEMPLATE FAVORITING & GREEN CTA
   ======================================== */

.favorite-star {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #d1d5db;
    transition: all 0.2s;
    z-index: 5;
}

.favorite-star:hover {
    color: #fbbf24;
    transform: scale(1.1);
}

.favorite-star.active {
    color: #fbbf24;
}

.btn-green {
    background: #10b981 !important;
    color: white !important;
}

.btn-green:hover {
    background: #059669 !important;
}

/* ========================================
   COMPREHENSIVE MOBILE OVERHAUL
   Clean, organized responsive design
   ======================================== */

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* ===== TABLET BREAKPOINT (768px) ===== */
@media (max-width: 768px) {
    /* --- Navigation --- */
    .nav-links,
    .nav-actions {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .top-nav {
        padding: 0 1rem;
    }
    
    .nav-inner {
        height: 60px;
    }
    
    .mobile-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .mobile-menu a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border);
    }
    
    .mobile-menu a:last-child {
        border-bottom: none;
    }
    
    /* --- Hero Section --- */
    .hero {
        padding: 2.5rem 1.25rem 3rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.15;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* --- Section Headers --- */
    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* --- Landing Page Sections --- */
    .section-light,
    .section-gray {
        padding: 2.5rem 1rem;
    }
    
    /* --- Feature Cards (Landing/Features) --- */
    .features-grid {
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .feature-card {
        grid-template-columns: 1fr !important;
        direction: ltr !important;
        gap: 1.5rem;
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .feature-preview {
        order: 2;
        padding: 0.75rem;
    }
    
    .feature-info {
        order: 1;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .feature-info h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-info p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .feature-list {
        text-align: left;
        padding: 0 1rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    /* --- Carousels --- */
    .carousel-container {
        margin: 0 -0.5rem;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .carousel-slide {
        padding: 1rem;
    }
    
    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .carousel-arrow.prev {
        left: 0.5rem;
    }
    
    .carousel-arrow.next {
        right: 0.5rem;
    }
    
    .slide-mockup {
        min-height: auto;
        padding: 1rem;
    }
    
    .slide-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .slide-content {
        font-size: 0.85rem;
    }
    
    .slide-content p {
        margin-bottom: 0.5rem;
    }
    
    .risk-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    /* --- Dashboard Mockup (Landing) --- */
    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stat-card {
        padding: 0.6rem 0.4rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .table-row-mock {
        font-size: 0.6rem;
        padding: 0.4rem;
        grid-template-columns: 1.2fr 1.2fr 0.8fr 0.8fr;
    }
    
    /* --- Template Mockup (Landing) --- */
    .template-item {
        font-size: 0.75rem;
        padding: 0.5rem 0.6rem;
    }
    
    .tier-badge {
        font-size: 0.55rem;
        padding: 0.15rem 0.35rem;
    }
    
    /* --- Secondary Features Grid --- */
    .secondary-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .secondary-feature-card {
        padding: 1.25rem;
    }
    
    .secondary-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .secondary-feature-card h3 {
        font-size: 1rem;
    }
    
    .secondary-feature-card p {
        font-size: 0.85rem;
    }
    
    /* --- CTA Sections --- */
    .cta-section {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
        margin: 2rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .urgency-cta {
        padding: 2.5rem 1.5rem;
        margin: 0;
        border-radius: 0;
    }
    
    .urgency-cta h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .urgency-cta p {
        font-size: 0.95rem;
    }
    
    .urgency-btn {
        padding: 0.9rem 1.75rem;
        font-size: 1rem;
    }
    
    /* --- Features Page Hero --- */
    .features-hero {
        padding: 2.5rem 1.5rem;
    }
    
    .features-hero h1 {
        font-size: 1.6rem;
    }
    
    .features-hero p {
        font-size: 0.95rem;
    }
    
    /* --- FAQ Section --- */
    .faq-section {
        padding: 2.5rem 1rem;
    }
    
    .faq-container {
        padding: 0;
    }
    
    .faq-item {
        margin-bottom: 0.75rem;
    }
    
    .faq-question {
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
    }
    
    /* --- Pricing Page --- */
    .pricing-hero {
        padding: 2rem 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 1.75rem;
        max-width: 100%;
    }
    
    .pricing-card h2 {
        font-size: 1.25rem;
    }
    
    .pricing-amount {
        margin: 1.5rem 0;
    }
    
    .pricing-amount .price {
        font-size: 3rem;
    }
    
    .pricing-amount .currency {
        font-size: 1.25rem;
    }
    
    .features-list li {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }
    
    .value-props {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
        margin: 2.5rem auto;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
    
    /* --- Dashboard Page --- */
    .dashboard-stats-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .stat-card-dashboard {
        padding: 1rem 0.75rem;
        text-align: center;
    }
    
    .stat-card-dashboard div:first-child {
        font-size: 1.5rem;
    }
    
    .stat-card-dashboard div:last-child {
        font-size: 0.7rem;
    }
    
    /* Dashboard Tables */
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -0.5rem;
        padding: 0 0.5rem;
    }
    
    table {
        min-width: 100%;
    }
    
    th, td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    th {
        font-size: 0.7rem;
    }
    
    /* Dashboard Card Sections */
    .dashboard-section {
        margin-bottom: 1.5rem;
    }
    
    .dashboard-section-header {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    /* --- Templates Page --- */
    .templates-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .template-card {
        border-radius: 12px;
    }
    
    .template-header {
        padding: 1rem 1.25rem;
    }
    
    .template-header h3 {
        font-size: 1rem;
    }
    
    .template-body {
        padding: 1.25rem;
    }
    
    .template-text {
        min-height: 140px;
        font-size: 0.8rem;
        padding: 0.75rem;
    }
    
    /* Favorites Section */
    .favorites-section {
        margin-bottom: 2rem;
    }
    
    .favorites-display-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .favorite-card {
        padding: 1rem;
    }
    
    .favorite-card h4 {
        font-size: 0.95rem;
    }
    
    /* Tier Headers */
    .tier-section {
        margin-bottom: 2rem;
    }
    
    .tier-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .tier-title {
        font-size: 1.1rem;
    }
    
    .tier-count {
        font-size: 0.8rem;
    }
    
    /* Access Info Bar */
    .access-info {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .access-info span {
        font-size: 0.9rem;
    }
    
    /* --- Analyze Page --- */
    .card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .checkbox-item {
        padding: 0.6rem 0.75rem;
    }
    
    .checkbox-item span {
        font-size: 0.85rem;
    }
    
    .file-upload {
        padding: 1.5rem 1rem;
    }
    
    .file-upload-text {
        font-size: 0.85rem;
    }
    
    textarea {
        min-height: 160px;
    }
    
    /* Results Section */
    .legend {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
    
    #results-content {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    /* --- Auth Pages --- */
    .auth-page {
        padding: 1.5rem 1rem;
    }
    
    .auth-card {
        padding: 1.75rem;
        max-width: 100%;
    }
    
    .auth-card h1 {
        font-size: 1.35rem;
    }
    
    .auth-card .subtitle {
        font-size: 0.9rem;
    }
    
    /* --- Locked Preview Pages --- */
    .locked-static {
        padding: 2rem 1.25rem;
    }
    
    .locked-static-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .locked-static-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
    
    .locked-static h1 {
        font-size: 1.5rem;
    }
    
    .locked-static p {
        font-size: 1rem;
    }
    
    .locked-preview-image {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .locked-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    /* --- Page Headers --- */
    .page-header {
        margin-bottom: 1.5rem;
        padding-top: 0.5rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    /* --- Container --- */
    .container {
        padding: 1.5rem 1rem;
    }
    
    /* --- Buttons --- */
    .btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }
    
    /* --- Footer --- */
    .site-footer {
        padding: 1.5rem 1rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-logo {
        font-size: 0.9rem;
    }
    
    .footer-disclaimer {
        font-size: 0.65rem;
        line-height: 1.5;
    }
    
    .footer-copyright {
        font-size: 0.65rem;
    }
    
    /* --- AI Upload Section --- */
    .ai-upload-section {
        flex-direction: column !important;
        gap: 1rem;
    }
    
    /* --- Search Bar --- */
    .search-bar {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .search-bar input {
        width: 100%;
    }
    
    .search-bar button {
        width: 100%;
    }
    
    /* --- Misc Fixes --- */
    .info-box {
        padding: 0.875rem;
        font-size: 0.85rem;
    }
    
    .disclaimer-box {
        font-size: 0.75rem;
        padding: 0.875rem 1rem;
    }
}

/* ===== SMALL MOBILE BREAKPOINT (480px) ===== */
@media (max-width: 480px) {
    /* Hero adjustments */
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
    }
    
    /* Dashboard stats stack vertically */
    .dashboard-stats-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-card-dashboard {
        padding: 1.25rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .stat-card-dashboard div:first-child {
        font-size: 2rem;
    }
    
    .stat-card-dashboard div:last-child {
        font-size: 0.85rem;
    }
    
    /* Landing dashboard mockup */
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .stat-card {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .table-row-mock {
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem;
        font-size: 0.7rem;
    }
    
    /* Pricing */
    .pricing-amount .price {
        font-size: 2.75rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    /* CTAs full width */
    .btn-lg {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Carousels tighter */
    .carousel-arrow {
        width: 32px;
        height: 32px;
    }
    
    .slide-mockup {
        padding: 0.75rem;
    }
    
    /* Auth pages */
    .auth-card {
        padding: 1.5rem;
    }
    
    .auth-card h1 {
        font-size: 1.25rem;
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    /* Features hero */
    .features-hero h1 {
        font-size: 1.4rem;
    }
}

/* ===== VERY SMALL SCREENS (360px) ===== */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.2rem;
    }
    
    .pricing-amount .price {
        font-size: 2.25rem;
    }
    
    .cta-section h2 {
        font-size: 1.2rem;
    }
}
