/* Landing Page Styles */

/* Logo Styles */
.logo-img {
    height: 40px;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-img-white {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Fixed Landing Navbar */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0d5c7;
    padding: 12px 0;
}

.landing-navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-logo {
    display: flex;
    align-items: center;
}

.logo-img-hero {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.landing-nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-btn-outline {
    color: #1a5c3e;
    border: 2px solid #e0d5c7;
    background: transparent;
}

.nav-btn-outline:hover {
    border-color: #1a5c3e;
    background: rgba(26, 92, 62, 0.05);
}

.nav-btn-filled {
    background: #1a5c3e;
    color: white;
    border: 2px solid #1a5c3e;
}

.nav-btn-filled:hover {
    background: #0d3d2b;
    border-color: #0d3d2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 92, 62, 0.25);
}

.nav-btn-business {
    background: linear-gradient(135deg, #1e3a5f, #0f2744);
    color: white;
    border: 2px solid #1e3a5f;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-btn-business i {
    font-size: 16px;
}

.nav-btn-business:hover {
    background: linear-gradient(135deg, #0f2744, #091a2e);
    border-color: #0f2744;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.35);
}

/* Mobile menu business link */
.mobile-menu a.business {
    background: linear-gradient(135deg, #1e3a5f, #0f2744);
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.mobile-menu a.business:hover {
    background: linear-gradient(135deg, #0f2744, #091a2e);
}

/* Hero Section - Trustpilot-style with blobs */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #1a5c3e;
    padding: 80px 0 60px;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
}

/* Decorative Blobs */
.blob {
    position: absolute;
    z-index: 0;
    opacity: 1;
}

/* Top left blob - dark green (brand) */
.blob--green-dark {
    width: 70vw;
    height: 70vw;
    top: -18vw;
    left: -22vw;
    fill: #1a5c3e;
}

/* Bottom left blob - gold accent */
.blob--gold {
    width: 55vw;
    height: 55vw;
    bottom: -14vw;
    left: -18vw;
    fill: #d4a853;
}

/* Bottom right blob - light green */
.blob--green-light {
    width: 60vw;
    height: 60vw;
    bottom: -16vw;
    right: -20vw;
    fill: #40b973;
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 56px 20px 44px;
    text-align: center;
}

.hero__content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 16px;
    animation: fadeInUp 0.8s ease-out;
}

.hero__content h1 span {
    display: inline;
}

.hero__content p {
    font-size: 20px;
    color: #e0e0e0;
    margin: 0 0 32px;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

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

/* Hero Search Bar */
.hero-search {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 28px;
    background: #ffffff;
    border-radius: 999px;
    border: 1px solid #e0d5c7;
    padding: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    transition: all 0.3s ease;
}

.hero-search:focus-within {
    border-color: #1a5c3e;
    box-shadow: 0 4px 24px rgba(26, 92, 62, 0.15);
}

.hero-search .search-icon {
    display: none;
}

.hero-search input {
    flex: 1;
    height: 44px;
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    color: #333;
    padding: 0 18px;
}

.hero-search input::placeholder {
    color: #999;
}

.hero-search button {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    border: 0;
    background: #1a5c3e;
    color: #fff;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-search button::before {
    content: '\eb8c';
    font-family: 'boxicons';
    font-size: 20px;
}

.hero-search button:hover {
    background: #0d3d2b;
    transform: scale(1.05);
}

/* Secondary CTA */
.secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 2px solid #1a5c3e;
    background: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    color: #1a5c3e;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.secondary-cta:hover {
    background: #1a5c3e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 92, 62, 0.25);
}

.secondary-cta i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.secondary-cta:hover i {
    transform: translateX(4px);
}

/* Section Wave Transitions */
.section-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
}

.section-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* Explore Categories Section */
.explore-section {
    background: #ffffff;
    padding: 60px 20px;
}

.explore-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.explore-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.explore-card:hover {
    background: #ffffff;
    border-color: currentColor;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.explore-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.explore-card__icon i {
    font-size: 28px;
    color: white;
}

.explore-card__content {
    flex: 1;
    min-width: 0;
}

.explore-card__content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #1a1a1a;
}

.explore-card__content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.explore-card__arrow {
    font-size: 24px;
    color: #ccc;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.explore-card:hover .explore-card__arrow {
    color: currentColor;
    transform: translateX(4px);
}

/* Card color variants */
.explore-card--sport {
    color: #e74c3c;
}
.explore-card--sport .explore-card__icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.explore-card--tech {
    color: #3498db;
}
.explore-card--tech .explore-card__icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.explore-card--business {
    color: #1a5c3e;
}
.explore-card--business .explore-card__icon {
    background: linear-gradient(135deg, #1a5c3e, #0d3d2b);
}

.explore-card--entertainment {
    color: #9b59b6;
}
.explore-card--entertainment .explore-card__icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcf8 100%);
    padding: clamp(72px, 8vw, 108px) 20px clamp(76px, 8vw, 116px);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 10%, rgba(64, 185, 115, 0.08), transparent 24%),
        radial-gradient(circle at 86% 88%, rgba(26, 92, 62, 0.06), transparent 30%);
    pointer-events: none;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-section__heading {
    max-width: 920px;
    margin: 0 auto 44px;
    text-align: center;
}

.features-section .section-title {
    margin-bottom: 16px;
    font-size: clamp(40px, 5.8vw, 70px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.features-section .section-title::after {
    content: '';
    display: block;
    width: 88px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(64, 185, 115, 0.95), rgba(26, 92, 62, 0.95));
}

.features-section__subtitle {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #55616b;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px 22px;
}

.tool-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: inherit;
    text-decoration: none;
    text-align: left;
    padding-top: 18px;
    border-top: 1px solid rgba(18, 38, 28, 0.08);
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.tool-item:focus-visible {
    outline: none;
}

.tool-item:focus-visible .tool-item__link {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.tool-item__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 0 8px 4px;
}

.tool-item__media img {
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(26, 92, 62, 0.1));
    transition: transform 0.28s ease;
}

.tool-item__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 18px;
    border-left: 1px solid rgba(26, 92, 62, 0.12);
}

.tool-item__content h3 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 1.8vw + 16px, 38px);
    font-weight: 900;
    color: #10261c;
    line-height: 1;
    letter-spacing: -0.07em;
    text-wrap: balance;
    position: relative;
}

.tool-item__content h3::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 0.22em;
    width: 6px;
    height: 1.05em;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(64, 185, 115, 0.95), rgba(26, 92, 62, 0.95));
}

.tool-item__content p {
    margin: 0;
    max-width: 32ch;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
    color: #55616b;
}

.tool-item__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: 6px;
    padding: 10px 16px;
    border: 1.5px solid rgba(26, 92, 62, 0.8);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--color-green-dark);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(26, 92, 62, 0.06);
    transition: gap 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.tool-item__link i {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.tool-item:hover .tool-item__link {
    gap: 8px;
    color: var(--color-green-light);
    border-color: rgba(64, 185, 115, 0.95);
    background: rgba(64, 185, 115, 0.08);
}

.tool-item:hover .tool-item__link i {
    transform: translateX(2px);
}

.tool-item:hover {
    transform: translateY(-4px);
    border-top-color: rgba(26, 92, 62, 0.18);
}

.tool-item:hover .tool-item__media img {
    transform: translateY(-6px) scale(1.03);
}

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

@media (min-width: 1100px) {
    .tools-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Landing Page Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
}

/* Toast Notifications */
#toastContainer {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.notification-toast.success {
    background: #10b981;
    color: white;
}

.notification-toast.error {
    background: #ef4444;
    color: white;
}

.notification-toast.warning {
    background: #f59e0b;
    color: white;
}

.notification-toast.info {
    background: #3b82f6;
    color: white;
}

.notification-toast button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    margin-left: 8px;
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.notification-toast button:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(400px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats Section */
.stats-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(64, 185, 115, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 92, 62, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.stat {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 48px 36px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-green-dark), var(--color-green-light));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 20px;
}

.stat::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 20px;
}

.stat:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(26, 92, 62, 0.2), 0 0 30px rgba(64, 185, 115, 0.15);
    border-color: var(--color-green-light);
}

.stat:hover::before {
    opacity: 0.1;
}

.stat-icon {
    font-size: 56px;
    background: linear-gradient(135deg, var(--color-green-dark), var(--color-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.stat:hover .stat-icon {
    transform: scale(1.2) rotate(8deg);
    filter: drop-shadow(0 8px 16px rgba(26, 92, 62, 0.2));
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-green-dark), var(--color-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    transition: transform 0.4s ease;
}

.stat:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-family: 'Roboto', sans-serif;
    color: #5a6c7d;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.stat:hover .stat-label {
    color: var(--color-green-dark);
}

/* Landing Navbar */
.landing-navbar {
    background: white;
    border-bottom: 1px solid #e0d5c7;
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.landing-navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -0.5px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: -12px;
}

.landing-logo:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.landing-logo .logo-text {
    font-weight: 900;
    font-size: 24px;
    color: #000;
}

.landing-logo .logo-icon-sloth {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--color-green-dark);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e0d5c7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 999;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

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

.mobile-menu a {
    display: block;
    padding: 16px 20px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #f0ede5;
    transition: background 0.3s ease;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: #f8f6f2;
    color: var(--color-green-dark);
}

.mobile-menu a.signup {
    background: var(--color-cream);
    color: var(--color-green-dark);
    font-weight: 600;
}

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

/* Mini Footer */
.landing-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    margin-top: 80px;
    padding: 32px 20px;
    text-align: center;
    color: #666;
    position: relative;
    overflow: hidden;
}

.landing-footer::before {
    content: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-logo-sloth {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.footer-logo-text {
    font-weight: 900;
    font-size: 18px;
    color: #000;
    letter-spacing: 1px;
}

.footer-branding strong {
    color: var(--color-green-dark);
    font-size: 16px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--color-green-dark);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e5e7eb;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    white-space: nowrap;
}

.footer-divider {
    width: 1px;
    height: 20px;
    background: #e5e7eb;
    opacity: 1;
}

/* Section Titles */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 48px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #ffffff;
}

.how-it-works .container {
    max-width: none;
    width: 100%;
    padding: 0 clamp(20px, 4vw, 64px);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2vw, 28px);
    max-width: none;
    width: 100%;
    margin: 0 auto;
}

.step-card {
    background: transparent;
    border-radius: 0;
    padding: 32px 12px 8px;
    text-align: center;
    position: relative;
    flex: 1;
    max-width: none;
    border: none;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    font-size: 48px;
    color: var(--color-green-dark);
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.step-connector {
    color: var(--color-green-light);
    font-size: 28px;
    opacity: 0.5;
}

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
    padding: 72px 0 64px;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 clamp(20px, 4vw, 64px);
}

.testimonials-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Scrolling Track */
.testimonials-track-wrapper {
    position: relative;
    width: 100%;
    padding: 0 clamp(20px, 4vw, 64px);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials-track {
    display: flex;
    gap: clamp(16px, 2vw, 28px);
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

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

/* Testimonial Card */
.testimonial-card {
    background: transparent;
    border-radius: 0;
    padding: 24px;
    width: min(80vw, 520px);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: none;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

/* Rating */
.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating i {
    font-size: 14px;
    color: #ffc107;
}

/* Quote */
.testimonial-quote {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    flex: 1;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a5c3e 0%, #2d8659 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.testimonial-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-info strong {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.testimonial-info span {
    font-size: 12px;
    color: #1a5c3e;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-green-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--color-green-dark);
}

.faq-question i {
    font-size: 20px;
    color: var(--color-green-dark);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    position: relative;
    margin-top: 0;
    padding: 80px 20px;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(135deg, #1a5c3e 0%, #0d3d2b 100%);
}

.cta-section::before {
    content: none;
}

.cta-section::after {
    content: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    animation: slideInUp 0.8s ease-out;
}

.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #ffffff;
}

.cta-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 1;
    line-height: 1.6;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #1a5c3e;
    border: 1px solid rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.92);
    color: #0d3d2b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 40px;
    }

    /* Mobile blob adjustments */
    .blob--green-dark {
        width: 80vw;
        height: 80vw;
        top: -25vw;
        left: -30vw;
    }

    .blob--gold {
        width: 65vw;
        height: 65vw;
        bottom: -20vw;
        left: -25vw;
    }

    .blob--green-light {
        width: 70vw;
        height: 70vw;
        bottom: -22vw;
        right: -28vw;
    }

    .hero__content {
        padding: 40px 16px 30px;
    }

    .hero__content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero__content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-search {
        grid-template-columns: 1fr 48px;
        gap: 8px;
        max-width: 100%;
    }

    .hero-search input {
        height: 48px;
        padding: 0 16px;
        font-size: 14px;
    }

    .hero-search button {
        height: 48px;
        width: 48px;
    }

    .hero-search button i {
        font-size: 20px;
    }

    .secondary-cta {
        font-size: 13px;
        padding: 10px 16px;
    }

    .landing-nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        color: #1a5c3e;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
    }

    .logo-img-hero {
        height: 32px;
    }

    .hero-search {
        max-width: 100%;
        padding: 4px;
    }

    .hero-search input {
        height: 40px;
        padding: 0 14px;
        font-size: 14px;
    }

    .hero-search button {
        width: 40px;
        height: 40px;
    }

    .hero-search button::before {
        font-size: 18px;
    }

    /* Explore section mobile */
    .explore-section {
        padding: 40px 16px;
    }

    .explore-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .explore-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .explore-card {
        padding: 16px;
        gap: 12px;
    }

    .explore-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .explore-card__icon i {
        font-size: 24px;
    }

    .explore-card__content h3 {
        font-size: 16px;
    }

    .explore-card__content p {
        font-size: 12px;
    }

    .section-wave svg {
        height: 50px;
    }

    .explore-section {
        padding: 40px 16px;
    }

    .features-section {
        padding: 48px 16px 64px;
    }

    .features-section__heading {
        margin-bottom: 30px;
    }

    .features-section__subtitle {
        font-size: 15px;
        line-height: 1.7;
    }

    .tools-grid {
        gap: 28px 20px;
    }

    .tool-item__media {
        min-height: 180px;
    }

    .tool-item__media img {
        max-width: 220px;
    }

    .tool-item__content h3 {
        font-size: 24px;
    }

    .tool-item__content p {
        font-size: 14px;
        line-height: 1.68;
    }

    .tool-item__link {
        font-size: 11px;
        letter-spacing: 0.12em;
        padding: 9px 14px;
    }

    /* Testimonials mobile */
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-header {
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .testimonial-card {
        width: min(88vw, 460px);
        padding: 20px 8px 0;
    }

    .testimonials-track {
        gap: 16px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat {
        padding: 36px 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-icon {
        font-size: 44px;
        margin-bottom: 20px;
    }

    .stat-label {
        font-size: 13px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        justify-content: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-divider {
        display: none;
    }

    .footer-copyright {
        width: 100%;
    }

    .cta-section {
        padding: 60px 20px;
        margin-top: 60px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 16px;
    }

    #toastContainer {
        right: 10px;
        left: 10px;
        top: 70px;
    }

    .notification-toast {
        font-size: 13px;
        padding: 12px 14px;
    }

    /* How It Works Mobile */
    .how-it-works {
        padding: 60px 20px;
    }

    .steps-grid {
        flex-direction: column;
        gap: 32px;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: -16px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 13px;
    }
}
