:root {
    /* Global Brand Colors */
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --secondary: #3b82f6;

    /* Design System Colors from linkdeed7.png */
    --hero-bg: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
    --card-bg: #ffffff;
    --header-bg: #ffffff;
    --footer-bg: #f8fafc;

    /* Surfaces */
    --bg-white: #ffffff;
    --bg-light: #f1f5f9;
    --bg-dark: #0f172a;
    --border-light: #e2e8f0;

    /* Text */
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-white: #ffffff;

    /* Borders & Impact */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow-premium: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

/* Global Brand Colors & Variables already defined above */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Nav */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Floating Install pill (Bottom Right, above share) */
.floating-install-btn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    /* Always visible as per user request */
    /* Hidden by default, shown by PWA script */
    align-items: center;
    gap: 8px;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}


.floating-install-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Floating Share Pill (Bottom Right) */
.floating-share-pill {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    cursor: pointer;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.floating-share-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

/* Share Modal Overlay */
.share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.share-modal {
    background: white;
    border-radius: 32px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.share-modal-overlay.active .share-modal {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-modal:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.share-btn {
    padding: 16px 20px;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s;
    color: white !important;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.whatsapp {
    background: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.linkedin {
    background: #0077b5;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.twitter {
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b !important;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.logo-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #475569 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2563eb;
}

.btn-nav-login {
    color: #475569 !important;
}

.btn-start,
.nav-links .btn-start,
.nav-links a.btn-start {
    background: #2563eb !important;
    color: white !important;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-start:hover {
    transform: translateY(-2px);
    background: #1e40af;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Header email CTA */
.header-email-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 4px 4px 4px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-email-input {
    border: none;
    outline: none;
    font-size: 0.9rem;
    color: var(--text-main);
    width: 170px;
    background: transparent;
}

.header-email-input::placeholder {
    color: var(--text-muted);
}

/* Hero tip */
.hero-tip {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Search pills */
.search-row {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.search-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.pill.pill-active {
    background: #eff6ff;
    border-color: var(--primary);
    color: var(--primary);
}

.pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Jobs Feed Section */
.jobs-feed-section {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
}

.jobs-feed-header {
    margin-bottom: 28px;
    text-align: center;
}

.jobs-feed-title {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.jobs-feed-sub {
    color: var(--text-muted);
    font-size: 1rem;
}

.jobs-feed-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

/* Job Row */
.job-row {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: center;
    transition: box-shadow 0.2s;
}

.job-row:hover {
    box-shadow: var(--shadow-premium);
}

.job-row.skeleton {
    height: 72px;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 400% 100%;
    animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.job-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.job-title a {
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.95rem;
}

.job-title a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.job-company {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.job-location {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.job-location i {
    color: var(--primary);
    margin-right: 3px;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

.job-applicants,
.job-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.job-applicants i {
    color: var(--accent);
}

.job-date i {
    color: var(--primary);
}

.job-actions {
    display: flex;
    gap: 8px;
}

.btn-apply-auto {
    background: var(--primary);
    color: white !important;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.btn-apply-auto:hover {
    background: var(--primary-dark);
}

.btn-save-job {
    background: white;
    color: var(--primary) !important;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid var(--primary);
    transition: all 0.2s;
}

.btn-save-job:hover {
    background: #eff6ff;
}

.jobs-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 40px;
    font-size: 1rem;
}

.search-status-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-md);
}

.search-status-bar i {
    color: var(--primary);
    font-size: 1.1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jobs-feed-footer {
    text-align: center;
    margin-top: 16px;
}

.btn-start-applying {
    display: inline-block;
    background: var(--primary);
    color: white !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    transition: all 0.2s;
}

.btn-start-applying:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .header-email-cta {
        display: none;
    }

    .hero-tip {
        display: none;
    }

    .job-row {
        grid-template-columns: 1fr;
    }

    .job-meta {
        align-items: flex-start;
        flex-direction: row;
        gap: 12px;
    }

    .job-actions {
        flex-wrap: wrap;
    }

    .search-row {
        grid-template-columns: 1fr;
    }
}


/* Hero Section */
.hero {
    background:
        linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0) 70%),
        url('/assets/linkdeed3b.png') no-repeat center right / cover;
    padding: 180px 0 160px;
    min-height: 850px;
    position: relative;
    overflow: hidden;
    color: #1e293b;
    display: flex;
    align-items: center;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    padding-bottom: 60px;
}

.hero-intro {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2563eb !important;
    margin-bottom: 24px;
    display: block;
    line-height: 1.2;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1e293b !important;
    font-weight: 800;
    letter-spacing: -2px;
    font-family: 'Outfit', sans-serif;
    text-shadow: none !important;
}

.gradient-text {
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.75em;
}

.hero-subtext {
    font-size: 1.6rem;
    color: #475569;
    margin-bottom: 48px;
    max-width: 550px;
    line-height: 1.4;
    font-weight: 500;
}

.highlight {
    color: #2563eb;
    font-weight: 700;
}

.underline {
    position: relative;
    display: inline-block;
}

.underline::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.2rem;
        letter-spacing: -1.5px;
    }

    .hero-subtext {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.6) 100%),
            url('/assets/linkdeed3b.png') no-repeat center right / cover;
        padding: 140px 0 100px;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-subtext {
        font-size: 1.15rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .logo {
        font-size: 1.6rem;
    }

    .nav-links {
        display: none;
        /* Consider a mobile menu later */
    }
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-preview img {
    width: 100%;
    display: block;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 14px 0 rgba(0, 118, 255, 0.39);
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.hero-illustration {
    position: relative;
    z-index: 1;
}

.hero-illustration img {
    width: 130%;
    max-width: none;
    margin-left: -15%;
    margin-bottom: -100px;
    filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.1));
}

/* Search Bar Section */
.search-bar-container {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr 0.8fr auto;
    gap: 16px;
    align-items: center;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
}

.search-field i {
    color: var(--text-muted);
}

.search-field input,
.search-field select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    color: var(--text-main);
}

.btn-search {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-search:hover {
    background: var(--primary-dark);
}

/* Stats Strip */
.stats-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.stat-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Hero Slideshow Background */
.hero-slideshow-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.features {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: var(--primary-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    text-align: left;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* How It Works Steps */
.how-it-works-steps {
    padding: 80px 0;
    background: white;
    border-top: 1px solid var(--border-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-title {
    font-weight: 700;
    color: var(--primary-dark);
}

/* Detailed Process Flow */
.process-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.process-item:hover .process-icon-wrapper {
    background: var(--primary);
    color: white;
}

.process-item h4 {
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.process-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Testimonials Section */
.testimonial-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-card-single {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trustpilot-stars {
    color: #00b67a;
    font-size: 1.2rem;
}

/* Stat Cards */
.stats-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    min-width: 260px;
}

.stat-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

/* As Seen On */
.as-seen-on {
    padding: 32px 0;
    background: white;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.as-seen-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.as-seen-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.as-seen-logo {
    height: 28px;
    object-fit: contain;
    opacity: 0.75;
    filter: grayscale(20%);
}

.as-seen-text {
    opacity: 0.75;
    font-family: var(--font-heading);
}

/* Testimonial Cards Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.t-stars {
    font-size: 1.1rem;
}

.testimonial-card p {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.t-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.t-author span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-strip {
        flex-direction: column;
        align-items: center;
    }

    .as-seen-logos {
        gap: 24px;
    }
}


/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: var(--hero-bg);
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.final-cta p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.btn-large {
    background: var(--primary);
    color: white;
    border: none;
    padding: 18px 48px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-grid,
    .search-grid,
    .features-grid,
    .steps-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .testimonial-card-single {
        flex-direction: column;
        text-align: center;
    }

    .sticky-header {
        height: 70px;
    }

    .header-content {
        padding: 0 16px;
    }

    .logo img {
        height: 30px !important;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .hero-subtext {
        font-size: 1rem !important;
    }

    .search-bar-container {
        padding: 16px;
        margin-top: -40px;
    }

    .search-row {
        flex-direction: column;
        gap: 12px;
    }

    .search-field {
        border-right: none !important;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 12px;
    }

    .btn-search {
        width: 100%;
        border-radius: var(--radius-md) !important;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
        /* Hide nav links on very small screens for now, or use a burger menu */
    }

    .hero {
        padding: 60px 0;
    }

    .container {
        padding: 0 12px;
    }
}