/* ============================================================
   Demoz Public Pages - Shared Styles
   Used by: index.html, signup.html, login.html, product pages, etc.
   ============================================================ */

:root {
    --ethiopian-green: #009639;
    --ethiopian-yellow: #FCDD09;
    --ethiopian-red: #DA121A;
    --dark-green: #006428;
    --dark-red: #A30E14;
    --light-cream: #FFFEF8;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
}

/* ---- Base ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--light-cream);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ---- Buttons ---- */
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    display: inline-block;
}
.btn-primary {
    background: var(--ethiopian-green);
    color: white;
    box-shadow: 0 2px 8px rgba(0,150,57,0.25);
}
.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,150,57,0.35);
}
.btn-secondary {
    background: transparent;
    color: var(--ethiopian-green);
    border: 2px solid var(--ethiopian-green);
}
.btn-secondary:hover {
    background: var(--ethiopian-green);
    color: white;
}
.btn-white {
    background: white;
    color: var(--ethiopian-green);
    border: 2px solid white;
}
.btn-white:hover {
    background: rgba(255,255,255,0.9);
}

/* ============================================================
   NAVIGATION - Mega Menu
   ============================================================ */
.public-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 254, 248, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 150, 57, 0.1);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}
.logo:hover { opacity: 0.8; }
.logo img { height: 40px; width: auto; }

/* Nav Links (Desktop) */
.nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-item > a,
.nav-dropdown-trigger {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.nav-item > a:hover,
.nav-dropdown-trigger:hover {
    color: var(--ethiopian-green);
    background: rgba(0,150,57,0.04);
}

.nav-dropdown-trigger svg.chevron-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    opacity: 0.6;
}
.nav-dropdown:hover > .nav-dropdown-trigger svg.chevron-icon,
.nav-dropdown.active > .nav-dropdown-trigger svg.chevron-icon {
    opacity: 1;
}

/* Dropdown Panel */
.mega-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    padding: 1.25rem;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(8px);
    z-index: 100;
}

.mega-menu-panel::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.mega-menu-wide {
    min-width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mega-menu-3col {
    min-width: 740px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

/* Show on hover */
.nav-dropdown:hover > .mega-menu-panel,
.nav-dropdown.active > .mega-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover > .nav-dropdown-trigger svg.chevron-icon,
.nav-dropdown.active > .nav-dropdown-trigger svg.chevron-icon {
    transform: rotate(180deg);
}

/* Column Header */
.mega-menu-column-header {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    padding: 0 0.85rem 0.5rem;
    margin-bottom: 0.25rem;
}

/* Dropdown Links (with icon) */
.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-menu-link {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
    color: var(--text-dark);
}
.mega-menu-link:hover {
    background: rgba(0,150,57,0.04);
}

.mega-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(0,150,57,0.08), rgba(252,221,9,0.08));
}

.mega-menu-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.mega-menu-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Dropdown Text Links (Gusto-style, no icon) */
.mega-menu-text-link {
    display: block;
    padding: 0.65rem 0.85rem;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
    border-radius: 4px;
}
.mega-menu-text-link:last-child {
    border-bottom: none;
}
.mega-menu-text-link:hover {
    background: rgba(0,150,57,0.04);
}
.mega-menu-text-link .mega-menu-title {
    color: var(--ethiopian-green);
    font-size: 0.9rem;
}

/* Simple Link List (for industries) */
.mega-menu-simple-list {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.mega-menu-simple-list a {
    color: var(--ethiopian-green);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    transition: background 0.2s;
}
.mega-menu-simple-list a:hover {
    background: rgba(0,150,57,0.04);
}

/* Nav CTA */
.nav-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}
.nav-cta .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}
.nav-see-demo {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid var(--text-dark);
    padding-bottom: 2px;
    transition: all 0.2s;
}
.nav-see-demo:hover {
    color: var(--ethiopian-green);
    border-bottom-color: var(--ethiopian-green);
}
.nav-signin {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-signin:hover {
    color: var(--ethiopian-green);
}

/* ---- Mobile Menu Toggle ---- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile Navigation Overlay ---- */
.mobile-nav {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 254, 248, 0.99);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
}
.mobile-nav.active { display: flex; }

.mobile-nav-section {
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.mobile-nav-heading svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    color: var(--text-light);
}
.mobile-nav-heading.active svg {
    transform: rotate(180deg);
}

.mobile-nav-links {
    display: none;
    flex-direction: column;
    padding-bottom: 0.75rem;
}
.mobile-nav-links.active { display: flex; }

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s;
}
.mobile-nav-links a:hover {
    background: rgba(0,150,57,0.05);
    color: var(--ethiopian-green);
}

.mobile-nav-simple {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #e5e7eb;
}
.mobile-nav-simple:hover { color: var(--ethiopian-green); }

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
}
.mobile-nav-cta .btn {
    text-align: center;
    width: 100%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo img {
    height: 36px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    margin-top: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    padding: 0.15rem 0;
}
.footer-link:hover {
    color: var(--ethiopian-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}
.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ============================================================
   SHARED PAGE COMPONENTS
   ============================================================ */

/* Page Hero (centered) */
.page-hero {
    margin-top: 62px;
    padding: 5rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,150,57,0.03) 0%, var(--light-cream) 100%);
}
.page-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}
.page-hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.page-hero .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ============================================================
   PRODUCT PAGE - Split Hero
   ============================================================ */
.product-hero {
    margin-top: 62px;
    padding: 5rem 2rem;
    background: linear-gradient(180deg, rgba(0,150,57,0.03) 0%, var(--light-cream) 100%);
}
.product-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.product-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}
.product-hero-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.product-hero-content .hero-cta {
    display: flex;
    gap: 1rem;
}
.product-hero-image {
    position: relative;
}
.product-hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ============================================================
   PRODUCT PAGE - Feature Showcase (alternating sections)
   ============================================================ */
.feature-showcase {
    padding: 5rem 2rem;
}
.feature-showcase.bg-white {
    background: white;
}
.feature-showcase-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.feature-showcase.reverse .feature-showcase-image {
    order: -1;
}
.feature-showcase-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ethiopian-green);
    margin-bottom: 0.75rem;
}
.feature-showcase-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.feature-showcase-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.feature-showcase-checks {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}
.feature-showcase-checks li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--text-medium);
}
.feature-showcase-checks li::before {
    content: '\2713';
    color: var(--ethiopian-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.feature-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--ethiopian-green);
    padding-bottom: 2px;
    transition: color 0.2s;
}
.feature-showcase-link:hover {
    color: var(--ethiopian-green);
}
.feature-showcase-image {
    position: relative;
}
.feature-showcase-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* Floating Overlay Cards (Gusto-style) */
.image-overlay-cards {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.image-overlay-cards.bottom-right {
    bottom: 1.5rem;
    right: -1rem;
}
.image-overlay-cards.bottom-left {
    bottom: 1.5rem;
    left: -1rem;
}
.image-overlay-cards.top-right {
    top: 1.5rem;
    right: -1rem;
}

.overlay-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    padding: 0.7rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    white-space: nowrap;
    animation: floatIn 0.6s ease-out both;
}
.overlay-card:nth-child(2) { animation-delay: 0.15s; }
.overlay-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.overlay-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.overlay-card-icon.green {
    background: rgba(0, 150, 57, 0.1);
    color: var(--ethiopian-green);
}
.overlay-card-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}
.overlay-card-icon.amber {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.overlay-card-icon svg {
    width: 16px;
    height: 16px;
}

.overlay-card-text {
    display: flex;
    flex-direction: column;
}
.overlay-card-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}
.overlay-card-value {
    font-size: 0.72rem;
    color: var(--ethiopian-green);
    font-weight: 600;
    line-height: 1.2;
}

/* ============================================================
   PRODUCT PAGE - Testimonial
   ============================================================ */
.testimonial-section {
    padding: 5rem 2rem;
    background: var(--text-dark);
    color: white;
    text-align: center;
}
.testimonial-inner {
    max-width: 700px;
    margin: 0 auto;
}
.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author-info {
    text-align: left;
}
.testimonial-name {
    font-weight: 600;
    font-size: 1rem;
}
.testimonial-role {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* ============================================================
   PRODUCT PAGE - Feature Icons Row
   ============================================================ */
.feature-icons-section {
    padding: 4rem 2rem;
    text-align: center;
}
.feature-icons-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.feature-icons-section > p {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.feature-icons-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
}
.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.feature-icon-item .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,150,57,0.08), rgba(252,221,9,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon-item span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* Feature Grid */
.feature-grid-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-grid-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.feature-grid-section > p {
    text-align: center;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card-v2 {
    background: white;
    border: 2px solid rgba(0,150,57,0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.feature-card-v2:hover {
    transform: translateY(-4px);
    border-color: var(--ethiopian-green);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.feature-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(0,150,57,0.08), rgba(252,221,9,0.08));
}
.feature-card-v2 h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.feature-card-v2 p {
    color: var(--text-medium);
    font-size: 0.92rem;
    line-height: 1.6;
}
.feature-card-v2 ul {
    list-style: none;
    padding: 0;
    margin-top: 0.75rem;
}
.feature-card-v2 ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    color: var(--text-medium);
    font-size: 0.88rem;
}
.feature-card-v2 ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ethiopian-green);
    flex-shrink: 0;
}

/* How It Works Steps */
.steps-section {
    padding: 5rem 2rem;
    background: white;
}
.steps-container {
    max-width: 900px;
    margin: 0 auto;
}
.steps-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}
.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ethiopian-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}
.step-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--ethiopian-green), var(--dark-green));
    text-align: center;
    color: white;
}
.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-banner p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner .btn {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

/* Pricing Cards - Gusto-style */
.pricing-section {
    padding: 4rem 2rem 2rem;
    max-width: 1140px;
    margin: 0 auto;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.pricing-card.featured {
    border-color: var(--ethiopian-green);
    position: relative;
    z-index: 1;
    border-width: 2px;
}
.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 40px;
    background: var(--ethiopian-green);
    border-radius: 16px 16px 0 0;
}
.pricing-badge {
    position: relative;
    z-index: 2;
    display: block;
    background: var(--ethiopian-green);
    color: white;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    margin: -2.25rem -2rem 1rem -2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    border-radius: 14px 14px 0 0;
}
.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.pricing-card .price-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    min-height: 2.75rem;
}
.pricing-card .price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--ethiopian-green);
    margin-bottom: 0.15rem;
    line-height: 1;
}
.pricing-card .price .price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ethiopian-green);
    vertical-align: super;
    margin-right: 2px;
}
.pricing-card .price .price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}
.pricing-card .price-per-person {
    font-size: 0.88rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}
.pricing-card .price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 1.75rem;
}
.pricing-features-header {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.45rem 0;
    font-size: 0.88rem;
    color: var(--text-medium);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check {
    color: var(--ethiopian-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.pricing-features .check-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--ethiopian-green);
    display: inline-block;
    margin-top: 6px;
}

/* Compare Plans Table */
.compare-section {
    padding: 4rem 2rem;
    max-width: 1140px;
    margin: 0 auto;
}
.compare-container {
    text-align: center;
}
.compare-container > h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.compare-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}
.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}
.compare-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
}
.compare-table th {
    padding: 1.25rem 1rem;
    vertical-align: bottom;
    border-bottom: 2px solid #e5e7eb;
}
.compare-feature-col {
    width: 36%;
    text-align: left;
}
.compare-plan-col {
    width: 21.33%;
    text-align: center;
}
.compare-plan-col.compare-plan-featured {
    position: relative;
    background: rgba(0,150,57,0.03);
}
.compare-badge {
    display: block;
    background: var(--ethiopian-green);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 auto 0.5rem;
    width: fit-content;
}
.compare-plan-name {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.compare-table .btn-sm {
    padding: 0.4rem 1.25rem;
    font-size: 0.8rem;
}
.compare-category {
    cursor: pointer;
    user-select: none;
}
.compare-category td {
    background: #f8f9fa;
    padding: 0.85rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: left;
    border-top: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.compare-category td {
    display: table-cell;
    position: relative;
}
.compare-chevron {
    float: right;
    transition: transform 0.2s ease;
    color: var(--text-light);
}
.compare-category.collapsed .compare-chevron {
    transform: rotate(-90deg);
}
.compare-row td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f1f3;
    font-size: 0.9rem;
    color: var(--text-medium);
}
.compare-row td:first-child {
    text-align: left;
}
.compare-check {
    color: var(--ethiopian-green);
    font-weight: 700;
    font-size: 1.15rem;
}
.compare-dash {
    color: #d1d5db;
    font-size: 1.15rem;
}
.compare-plan-featured-bg {
    background: rgba(0,150,57,0.03);
}
.compare-row td:nth-child(3) {
    background: rgba(0,150,57,0.02);
}

/* ============================================================
   BUSINESS PAGES - Breadcrumb
   ============================================================ */
.breadcrumb-trail {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.breadcrumb-trail a {
    color: var(--ethiopian-green);
    text-decoration: none;
}
.breadcrumb-trail a:hover {
    text-decoration: underline;
}
.breadcrumb-trail span {
    color: var(--text-medium);
}

/* ============================================================
   BUSINESS PAGES - Value Props (3-column)
   ============================================================ */
.value-props-section {
    padding: 5rem 2rem;
    background: white;
}
.value-props-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.value-prop-item {
    text-align: center;
}
.value-prop-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-prop-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.value-prop-item p {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ============================================================
   BUSINESS PAGES - Callout Box
   ============================================================ */
.callout-box {
    border-left: 3px solid var(--ethiopian-green);
    background: rgba(0,150,57,0.04);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
}
.callout-box p {
    font-size: 0.92rem;
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
   BUSINESS PAGES - Steps Subtitle
   ============================================================ */
.steps-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    margin-top: -1.5rem;
}

/* ============================================================
   BUSINESS PAGES - CTA Section
   ============================================================ */
.biz-cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, white 0%, rgba(0,150,57,0.03) 100%);
}
.biz-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}
.biz-cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.biz-cta-inner p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}
.biz-cta-inner .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ============================================================
   SWITCH PAGE - Comparison Table (Gusto-style)
   ============================================================ */
.compare-section {
    padding: 5rem 2rem;
    background: white;
}
.compare-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.compare-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}
.compare-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.compare-table thead th {
    padding: 1rem;
    text-align: center;
    vertical-align: bottom;
    border-bottom: 2px solid #e5e7eb;
}
.compare-table thead th:first-child {
    text-align: left;
    width: 45%;
}
.compare-brand-badge {
    background: var(--ethiopian-green);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    display: inline-block;
}
.compare-competitor-select select {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.65rem 2rem 0.65rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    appearance: auto;
    min-width: 180px;
}
.compare-competitor-select select:hover {
    border-color: var(--text-medium);
}
.compare-section-header td {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 1.25rem 1rem 0.5rem;
    border-bottom: none;
}
.compare-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
}
.compare-table tbody td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}
.compare-table tbody td:first-child {
    color: var(--text-medium);
}
.compare-table td.compare-demoz {
    text-align: center;
    background: rgba(0,150,57,0.02);
}
.compare-table thead th.compare-demoz {
    background: rgba(0,150,57,0.02);
}
.compare-table tbody td:last-child {
    text-align: center;
    color: var(--text-medium);
}
.compare-check {
    color: var(--ethiopian-green);
    font-weight: 700;
    font-size: 1.1rem;
}
.compare-x {
    color: var(--ethiopian-red);
    font-weight: 700;
    font-size: 1.1rem;
}
.compare-cost {
    color: var(--ethiopian-red);
    font-weight: 600;
}
.compare-note {
    font-size: 0.85rem;
}

/* 2-column mega menu for Businesses */
.mega-menu-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.careers-section {
    padding: 4rem 2rem 5rem;
    background: #faf9f7;
}
.careers-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Filter bar */
.careers-filter-bar {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.careers-filters {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.careers-filter-label {
    font-size: 0.88rem;
    color: var(--text-light);
}
.careers-filters select {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 2rem 0.5rem 0.85rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    appearance: auto;
}
.careers-filters select:hover {
    border-color: var(--text-medium);
}
.careers-count {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
    white-space: nowrap;
}

/* Department sections */
.careers-department {
    margin-bottom: 2.5rem;
}
.careers-dept-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Job cards */
.careers-job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 12px;
    padding: 1.25rem 1.75rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1.5px solid transparent;
}
.careers-job-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: var(--ethiopian-green);
}
.careers-job-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ethiopian-green);
}
.careers-job-location {
    font-size: 0.88rem;
    color: var(--text-medium);
    text-align: right;
    flex-shrink: 0;
    margin-left: 2rem;
}

/* No results */
.careers-no-results {
    text-align: center;
    padding: 3rem 1rem;
}
.careers-no-results p {
    font-size: 1rem;
    color: var(--text-medium);
}

/* ============================================================
   CAREER DETAIL PAGE
   ============================================================ */
.career-detail-section {
    padding: 2rem 2rem 5rem;
    background: #faf9f7;
}
.career-detail-container {
    max-width: 1100px;
    margin: 0 auto;
}
.career-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ethiopian-green);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: opacity 0.2s;
}
.career-back-link:hover { opacity: 0.7; }

.career-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

/* Header */
.career-detail-header {
    margin-bottom: 2.5rem;
}
.career-detail-dept {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ethiopian-green);
    background: rgba(0, 150, 57, 0.08);
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}
.career-detail-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}
.career-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.career-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.92rem;
    color: var(--text-medium);
}
.career-meta-item svg {
    color: var(--text-light);
    flex-shrink: 0;
}

/* Body content */
.career-detail-body {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.career-section {
    margin-bottom: 2rem;
}
.career-section:last-child {
    margin-bottom: 0;
}
.career-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}
.career-section-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    padding: 0.5rem 0;
    transition: color 0.2s;
}
.career-section-toggle:hover {
    color: var(--ethiopian-green);
}
.career-toggle-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.career-section:not(.open) .career-toggle-icon {
    transform: rotate(-90deg);
}
.career-section-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}
.career-section.open .career-section-content {
    max-height: 1000px;
}
.career-section.open .career-section-toggle {
    margin-bottom: 0.85rem;
}
.career-section:not(.open) .career-section-toggle {
    margin-bottom: 0;
}
.career-section p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}
.career-section ul {
    list-style: none;
    padding: 0;
}
.career-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}
.career-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ethiopian-green);
}

/* Sidebar */
.career-apply-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    position: sticky;
    top: 6rem;
}
.career-apply-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Apply form */
.career-form-group {
    margin-bottom: 1.25rem;
}
.career-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}
.career-form-group input[type="text"],
.career-form-group input[type="email"],
.career-form-group input[type="tel"],
.career-form-group input[type="url"],
.career-form-group textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: var(--text-dark);
    transition: border-color 0.2s;
}
.career-form-group input:focus,
.career-form-group textarea:focus {
    outline: none;
    border-color: var(--ethiopian-green);
    box-shadow: 0 0 0 3px rgba(0, 150, 57, 0.08);
}
.career-form-group textarea {
    resize: vertical;
    min-height: 90px;
}

/* File upload */
.career-file-upload {
    position: relative;
    border: 2px dashed #e5e7eb;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.career-file-upload:hover {
    border-color: var(--ethiopian-green);
    background: rgba(0, 150, 57, 0.02);
}
.career-file-upload.has-file {
    border-color: var(--ethiopian-green);
    border-style: solid;
    background: rgba(0, 150, 57, 0.04);
}
.career-file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.career-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-medium);
}
.career-file-label svg {
    color: var(--ethiopian-green);
    margin-bottom: 0.25rem;
}
.career-file-label span {
    font-size: 0.88rem;
}
.career-file-hint {
    font-size: 0.78rem !important;
    color: var(--text-light) !important;
}
.career-file-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ethiopian-green);
    margin-top: 0.5rem;
}

/* Submit button */
.career-submit-btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
}

/* Disclaimer */
.career-form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.5;
}

/* Success state */
.career-apply-success {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 2rem 0;
}
.career-apply-success h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}
.career-apply-success p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-menu-toggle { display: flex; }

    .page-hero h1 { font-size: 2.5rem; }
    .page-hero p { font-size: 1.05rem; }
    .page-hero .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .product-hero-content h1 { font-size: 2.5rem; }
    .product-hero-content .hero-cta {
        justify-content: center;
    }

    .feature-showcase-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .feature-showcase.reverse .feature-showcase-image {
        order: 0;
    }
    .feature-showcase-content h2 { font-size: 1.85rem; }
    .feature-showcase-checks {
        grid-template-columns: 1fr;
    }

    .image-overlay-cards.bottom-right,
    .image-overlay-cards.bottom-left,
    .image-overlay-cards.top-right {
        right: 0.5rem;
        left: auto;
    }
    .overlay-card {
        padding: 0.5rem 0.85rem;
    }
    .overlay-card-label { font-size: 0.72rem; }
    .overlay-card-value { font-size: 0.68rem; }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: span 2;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        gap: 1.5rem;
    }
    .pricing-card {
        margin: 0;
    }

    .compare-table-wrap {
        margin: 0 -1rem;
    }
    .compare-table th,
    .compare-table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
    }
    .compare-plan-name {
        font-size: 0.9rem;
    }
    .compare-feature-col {
        width: 40%;
    }

    .steps-section h2,
    .feature-grid-section h2,
    .cta-banner h2,
    .feature-icons-section h2,
    .compare-section h2,
    .biz-cta-inner h2 {
        font-size: 2rem;
    }

    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .compare-table {
        font-size: 0.82rem;
    }
    .compare-brand-badge {
        font-size: 0.95rem;
        padding: 0.5rem 1.25rem;
    }
    .compare-competitor-select select {
        font-size: 0.85rem;
        min-width: 140px;
    }

    .biz-cta-inner .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .careers-filter-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    .careers-filters {
        flex-wrap: wrap;
    }
    .careers-count {
        text-align: center;
    }
    .careers-job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
    .careers-job-location {
        text-align: left;
        margin-left: 0;
    }

    .career-detail-layout {
        grid-template-columns: 1fr;
    }
    .career-detail-header h1 {
        font-size: 1.75rem;
    }
    .career-apply-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 4rem 1rem 3rem;
    }
    .page-hero h1 { font-size: 2rem; }

    .product-hero {
        padding: 3.5rem 1rem;
    }
    .product-hero-content h1 { font-size: 2rem; }
    .product-hero-content .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .feature-showcase {
        padding: 3.5rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-quote {
        font-size: 1.3rem;
    }
}

/* Touch-friendly */
@media (hover: none) and (pointer: coarse) {
    .btn { min-height: 48px; }
    .nav-item > a,
    .nav-dropdown-trigger {
        padding: 0.65rem 0.85rem;
    }
}
