:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;
    
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    
    --border-primary: #E2E8F0;
    --border-secondary: #F1F5F9;
    
    --accent-dark: #0F172A;
    --accent-dark-hover: #1E293B;
    --accent-blue: #2563EB;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -4px rgba(0, 0, 0, 0.02);
    --shadow-dashboard: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

/* --- Utilities & Typography --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4 {
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

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

/* --- Buttons (SaaS styling) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--accent-dark);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background-color: var(--accent-dark-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--border-primary);
    box-shadow: var(--shadow-sm);
}

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

/* --- Header --- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-secondary);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 24px;
    width: auto;
    filter: grayscale(100%) contrast(200%);
}

.brand-name {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.03em;
}

.main-nav {
    display: none;
    gap: 1.75rem;
}

@media (max-width: 767px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-primary);
        border-bottom: 1px solid var(--border-secondary);
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: 1.25rem;
        align-items: flex-start;
        z-index: 999;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    }
    
    .main-nav.active {
        display: flex;
    }

    .main-nav .nav-dropdown {
        width: 100%;
    }

    .main-nav .dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }

    .main-nav .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: var(--bg-secondary);
        margin-top: 0.5rem;
        width: 100%;
        min-width: unset;
        display: none;
        padding: 0.25rem 0;
        border-radius: 6px;
    }

    .main-nav .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    
    .main-nav .dropdown-menu a {
        padding: 0.6rem 1.25rem !important;
        font-size: 0.8rem !important;
    }
}

@media (min-width: 768px) {
    .logo-area {
        flex: 1;
    }
    .main-nav {
        display: flex;
        justify-content: center;
    }
}

.main-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.15s ease;
}

.main-nav a:hover {
    color: var(--text-primary);
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
        flex: 1;
        justify-content: flex-end;
    }
}

.header-cta .btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.85rem;
}

.mobile-menu-toggle {
    display: block;
    cursor: pointer;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* --- Hero Section --- */
.hero {
    padding: 9rem 0 6.5rem;
    text-align: center;
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(99, 102, 241, 0.02) 0%, rgba(2, 132, 199, 0.02) 100%);
    background-size: 24px 24px, 100% 100%;
    border-bottom: 1px solid var(--border-secondary);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 720px;
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.hero-content .subheadline {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.hero-actions .btn {
    padding: 0.65rem 1.25rem;
}

/* Central Visual Mockup (Clinical Light Theme) */
.hero-visuals {
    width: 100%;
    max-width: 1060px;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-visuals {
        grid-template-columns: 1.8fr 1fr;
    }
}

.mockup-dashboard {
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-dashboard);
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background-color: var(--bg-secondary);
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-primary);
}

.mockup-dots {
    display: flex;
    gap: 5px;
    margin-right: 1.5rem;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E2E8F0;
}

.mockup-dots span:nth-child(1) { background-color: #EF4444; }
.mockup-dots span:nth-child(2) { background-color: #F59E0B; }
.mockup-dots span:nth-child(3) { background-color: #10B981; }

.mockup-title {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.mockup-body {
    padding: 1.5rem;
    background: var(--bg-primary);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .mockup-body {
        grid-template-columns: 1fr 1.5fr;
    }
}

.dashboard-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dashboard-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.card-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.score-value {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.score-stars {
    color: var(--border-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.star.filled {
    color: #F59E0B;
}

.dashboard-btn {
    background-color: var(--accent-dark);
    color: var(--bg-primary);
    border: none;
    width: 100%;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

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

.dashboard-chart {
    height: 90px;
    margin-top: 0.5rem;
}

#trend-line, #trend-fill {
    transition: d 0.6s cubic-bezier(0.4, 0, 0.2, 1), fill 0.6s ease;
}

#trend-dot {
    transition: cx 0.85s cubic-bezier(0.4, 0, 0.2, 1), cy 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-feed-area {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feed-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-secondary);
}

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

.feed-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--bg-tertiary);
    flex-shrink: 0;
}

.feed-content {
    flex: 1;
}

.feed-stars {
    font-size: 0.7rem;
    color: var(--border-primary);
}

.feed-text {
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.15rem;
    color: var(--text-primary);
}

.feed-time {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.feed-source {
    font-size: 0.75rem;
    font-weight: 700;
}

.feed-source.google { color: #4285F4; }
.feed-source.trustpilot { color: #00B67A; }

/* --- Logo Strip (Monochrome Infinite Scroll) --- */
.logo-strip {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-secondary);
    border-bottom: 1px solid var(--border-secondary);
    background-color: var(--bg-secondary);
}

.logo-strip-container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo-strip-text {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-align: center;
}


.logo-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    /* Gradient mask for smooth fade at borders */
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.logo-marquee-track {
    display: flex;
    gap: 6rem;
    width: max-content;
    animation: scrollMarquee 20s linear infinite;
    align-items: center;
}

.logo-marquee-track span {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-muted);
    opacity: 0.55;
    text-transform: uppercase;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
}

.logo-marquee-track span:hover {
    opacity: 1;
    color: var(--text-primary);
    transform: scale(1.08) translateY(-2px);
}

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

/* --- Features Section (Interactive Grid) --- */
.features {
    padding: 7rem 0;
    background-color: var(--bg-primary);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px -10px rgba(15, 23, 42, 0.08);
}

/* Secondary Tech Palette - Feature Cards Tints & Outlines */
.feature-card.card-blue {
    background-color: #FAFDFE;
    border-color: #E0F2FE;
}
.feature-card.card-blue:hover {
    background-color: #F0F9FF;
    border-color: #0284c7;
}

.feature-card.card-purple {
    background-color: #FAF9FD;
    border-color: #E6E1F4;
}
.feature-card.card-purple:hover {
    background-color: #FAF8FD;
    border-color: #6366F1;
}

.feature-card.card-green {
    background-color: #F9FDFB;
    border-color: #DCFCE7;
}
.feature-card.card-green:hover {
    background-color: #F0FDF4;
    border-color: #10B981;
}

.feature-header {
    margin-bottom: 2rem;
}

.feature-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

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

.feature-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.15s ease;
}

.feature-link:hover {
    color: var(--accent-blue);
}

/* --- Metrics / Social Proof --- */
.metrics {
    padding: 6.5rem 0;
    background-color: #FAF9F6; /* Warm taupe background tint */
    border-top: 1px solid #EAE6DF;
    border-bottom: 1px solid #EAE6DF;
}

.metrics-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .metrics-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-val {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.metric-item p {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    max-width: 220px;
}

/* --- Call to Action --- */
.cta-section {
    padding: 8rem 0;
    text-align: center;
    background-color: var(--bg-primary);
}

.cta-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-container h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

/* --- Footer --- */
.footer {
    padding: 4rem 0 3rem;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
}

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

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1.5fr repeat(2, 1fr);
    }
}

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

.footer-brand p {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 240px;
}

.footer-nav-col h4 {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.footer-nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-col ul a {
    text-decoration: none;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: color 0.15s ease;
}

.footer-nav-col ul a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-primary);
    padding-top: 1.5rem;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: color 0.15s ease;
}

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

/* --- About Us Page Layout & Redesign --- */
.about-page {
    background-color: var(--bg-primary);
    padding-bottom: 6rem;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero {
    padding: 8rem 0 5.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(2, 132, 199, 0.02) 100%), var(--bg-primary);
    border-bottom: 1px solid var(--border-secondary);
}

.eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.about-intro h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.15;
}

.about-lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 680px;
    margin: 0 auto;
}

.about-metrics {
    padding: 1.5rem 0 5rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.metric-card {
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    border: 1px solid var(--border-primary);
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .metric-card:nth-child(even) {
        transform: translateY(16px);
    }
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.metric-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.metric-description {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.about-quote {
    padding: 6rem 0;
}

.quote-wrapper {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.about-quote blockquote {
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.about-quote blockquote p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-quote blockquote p:last-child {
    margin-bottom: 0;
}

.quote-author {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.author-line {
    width: 30px;
    height: 1px;
    background-color: #78716C; /* Warm taupe colored accent line */
}

.quote-author span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.about-pillars {
    padding: 6rem 0 4rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.pillar-header {
    margin-bottom: 1rem;
}

.pillar-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.pillar-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

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

.about-integrations {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.integrations-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0;
    margin-bottom: 3rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 5rem;
}

@media (min-width: 640px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logo-item {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.15s ease;
}

.logo-item:hover {
    border-color: var(--text-muted);
    transform: translateY(-1px);
}

.logo-badge {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.google-badge {
    background-color: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}
.mail-badge {
    background-color: rgba(15, 23, 42, 0.08);
    color: var(--text-primary);
}
.crm-badge {
    background-color: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.about-cta-box {
    background-color: var(--accent-dark);
    border-radius: 16px;
    padding: 3.5rem 2rem;
    text-align: center;
    color: var(--bg-primary);
}

.about-cta-box h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--bg-primary);
    letter-spacing: -0.03em;
}

.about-cta-box p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    color: var(--bg-primary);
}

.cta-actions {
    display: flex;
    justify-content: center;
}

/* --- Smartphone Mockup --- */
.mockup-phone {
    width: 220px;
    height: 440px;
    border: 8px solid #1E293B;
    border-radius: 28px;
    background: #000000;
    position: relative;
    box-shadow: var(--shadow-dashboard);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    flex-shrink: 0;
}

.phone-notch {
    width: 60px;
    height: 12px;
    background: #000000;
    border-radius: 6px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    background-color: #F8F9FA;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.phone-header {
    height: 24px;
    background: #F8F9FA;
    border-bottom: 1px solid var(--border-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0.85rem 0;
    font-size: 0.55rem;
    color: var(--text-muted);
    font-weight: 600;
    z-index: 5;
}

.phone-status-icons {
    display: flex;
    align-items: center;
    gap: 3px;
}

.status-cellular-text {
    font-size: 0.45rem;
    font-weight: 700;
    color: var(--text-secondary);
    line-height: 1;
    margin-right: 1px;
}

.status-cellular {
    display: flex;
    gap: 1px;
    align-items: flex-end;
    height: 7px;
    margin-right: 1px;
}

.status-cellular span {
    width: 1.2px;
    background-color: var(--text-secondary);
    border-radius: 0.3px;
    display: block;
}

.status-cellular span:nth-child(1) { height: 2px; }
.status-cellular span:nth-child(2) { height: 4px; }
.status-cellular span:nth-child(3) { height: 5.5px; }
.status-cellular span:nth-child(4) { height: 7px; }

.status-battery {
    position: relative;
    width: 13px;
    height: 7px;
    border: 1px solid var(--text-secondary);
    border-radius: 1.8px;
    display: flex;
    align-items: center;
    padding: 0.6px;
}

.battery-body {
    height: 100%;
    width: 100%;
    background-color: var(--text-secondary);
    border-radius: 0.5px;
}

.battery-tip {
    position: absolute;
    right: -2px;
    top: 1.8px;
    width: 1px;
    height: 2.4px;
    background-color: var(--text-secondary);
    border-radius: 0 0.4px 0.4px 0;
}

.phone-screen-content {
    display: none;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    width: 100%;
    opacity: 0;
}

.phone-screen-content.active {
    display: flex;
    animation: fadeInScreen 0.25s ease-out forwards;
}

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

/* SMS Screen */
.sms-app-header {
    background-color: #F8F9FA;
    border-bottom: 1px solid #E5E7EB;
    padding: 0.4rem 0.65rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.sms-back-btn {
    font-size: 1.35rem;
    color: #007AFF;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    margin-left: -4px;
}

.sms-info-btn {
    font-size: 0.48rem;
    color: #007AFF;
    border: 1px solid #007AFF;
    border-radius: 50%;
    width: 11px;
    height: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
}

.sms-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #FFFFFF;
}

.contact-name {
    font-size: 0.45rem;
    font-weight: 500;
    color: #4b5563;
    margin-top: 0.1rem;
}

.sms-body {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    background-color: #FFFFFF;
    overflow-y: auto;
    position: relative;
}

.sms-date {
    font-size: 0.48rem;
    text-align: center;
    color: #9CA3AF;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.sms-bubble-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.sms-bubble {
    position: relative;
    background-color: #E9E9EB;
    border-radius: 16px;
    padding: 0.5rem 0.75rem;
    font-size: 0.58rem;
    max-width: 80%;
    color: #000000;
    line-height: 1.35;
    margin-left: 6px;
    z-index: 2;
}

.sms-bubble::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -5px;
    height: 15px;
    width: 15px;
    background-color: #E9E9EB;
    border-bottom-right-radius: 12px 10px;
    z-index: -1;
}

.sms-bubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -8px;
    height: 15px;
    width: 8px;
    background-color: #FFFFFF;
    border-bottom-right-radius: 8px;
    z-index: -1;
}

.sms-bubble p {
    margin-bottom: 0.35rem;
}

.sms-link-btn {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    color: #007AFF;
    padding: 0.4rem 0.55rem;
    border-radius: 10px;
    font-size: 0.52rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    display: block;
    width: 100%;
    transition: background 0.15s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.sms-link-btn:hover {
    background: #F9FAFB;
}

/* SMS Input Bar */
.sms-input-bar {
    background-color: #F8F9FA;
    padding: 0.4rem 0.65rem 1.2rem; /* padding bottom extra for home indicator */
    border-top: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 5;
}

.sms-input-icon {
    font-size: 0.85rem;
    color: #8E8E93;
    cursor: pointer;
    flex-shrink: 0;
}

.sms-input-icon.camera {
    font-size: 0.75rem;
}

.sms-input-icon.appstore {
    background-color: #007AFF;
    color: #FFFFFF;
    font-size: 0.45rem;
    font-weight: 800;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, sans-serif;
}

.sms-input-icon.mic {
    font-size: 0.75rem;
}

.sms-input-field {
    flex: 1;
    border: 1px solid #D1D5DB;
    border-radius: 14px;
    background: #FFFFFF;
    height: 22px;
    display: flex;
    align-items: center;
    padding-left: 0.6rem;
    color: #C7C7CC;
    font-size: 0.58rem;
}

/* Home Indicator */
.phone-home-indicator {
    width: 76px;
    height: 3px;
    background-color: #000000;
    border-radius: 1.5px;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

/* Rating Screen */
.rating-app-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-secondary);
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.google-g-logo {
    color: #4285F4;
    font-weight: 900;
    font-size: 0.75rem;
}

.rating-body {
    padding: 1.5rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    background: #FFFFFF;
}

.rating-body h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.rating-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.interactive-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.phone-star {
    font-size: 1.35rem;
    color: #E5E7EB;
    cursor: pointer;
    transition: color 0.1s ease;
}

.phone-star.filled {
    color: #F59E0B;
}

.phone-submit-btn {
    width: 100%;
    padding: 0.55rem;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    background-color: #E5E7EB;
    color: #9CA3AF;
    cursor: not-allowed;
    transition: all 0.2s ease;
}

.phone-submit-btn.enabled {
    background-color: #4285F4;
    color: #FFFFFF;
    cursor: pointer;
}

.phone-submit-btn.enabled:hover {
    background-color: #357AE8;
}

/* Success Screen */
.thanks-body {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    background: #FFFFFF;
}

.success-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #DCFCE7;
    color: #16A34A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 0.85rem;
}

.thanks-body h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.thanks-body p {
    font-size: 0.6rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.phone-reset-btn {
    padding: 0.4rem 1rem;
    font-size: 0.6rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid var(--border-primary);
    background: transparent;
    cursor: pointer;
    transition: background 0.15s ease;
}

.phone-reset-btn:hover {
    background: var(--bg-secondary);
}

/* Feed item animation */
@keyframes fadeInReview {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Navigation Dropdown --- */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    background: none;
    border: none;
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.15s ease;
}

.dropdown-trigger:hover,
.nav-dropdown:hover .dropdown-trigger {
    color: var(--text-primary);
}

.dropdown-trigger .arrow {
    font-size: 0.5rem;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-trigger .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    min-width: max-content;
    padding: 0.5rem 0;
    z-index: 1000;
    margin-top: 0.75rem;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-primary);
    border-left: 1px solid var(--border-primary);
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
    background: transparent;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    transition: all 0.15s ease;
    text-align: left;
}

.dropdown-menu a:hover {
    background-color: var(--bg-secondary);
    color: var(--text-primary) !important;
    padding-left: 1.5rem !important;
}

/* Mobile optimization: phone mockup on top of dashboard */
@media (max-width: 1023px) {
    .mockup-phone {
        order: -1;
    }
}
