* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0b0b0b;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

#hero {
    min-height: 85vh;
    padding: 8rem 5vw 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(26, 255, 102, 0.03) 0%, transparent 70%),
        linear-gradient(135deg, rgba(26, 255, 102, 0.01) 0%, transparent 50%);
    z-index: 0;
}

#tsparticles {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1aff66;
    background: rgba(26, 255, 102, 0.08);
    border: 1px solid rgba(26, 255, 102, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.hero-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 255, 102, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.badge-icon {
    display: inline-block;
    animation: pulse 2s infinite;
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, #1aff66 0%, #00cc52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-text p.subhead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 2rem;
    max-width: 520px;
    font-weight: 400;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.user-avatars {
    display: flex;
    align-items: center;
    gap: -0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #1aff66;
    background: linear-gradient(135deg, #1aff66, #00cc52);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
    margin-left: -8px;
    position: relative;
    z-index: 1;
}

.avatar:first-child {
    margin-left: 0;
}

.social-text {
    font-size: 0.95rem;
    color: #aaa;
}

.social-text .highlight-number {
    color: #1aff66;
    font-weight: 700;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cta.large {
    background: linear-gradient(135deg, #1aff66 0%, #00cc52 100%);
    color: #000000;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(26, 255, 102, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cta.large::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta.large:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(26, 255, 102, 0.4);
}

.cta.large:hover::before {
    left: 100%;
}

.cta-subtext {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.urgency-bar {
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.urgency-text {
    font-size: 0.9rem;
    color: #ff6b35;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.urgency-icon {
    animation: pulse 1.5s infinite;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-image:hover {
    transform: scale(1.02);
}

.glow-behind {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(26, 255, 102, 0.15), transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero-text>* {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-text>*:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-text>*:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-text>*:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-text>*:nth-child(4) {
    animation-delay: 0.4s;
}

.hero-text>*:nth-child(5) {
    animation-delay: 0.5s;
}

.hero-text>*:nth-child(6) {
    animation-delay: 0.6s;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.why-section {
    padding: 5rem 5vw;
    background: linear-gradient(135deg, #0c0c0c 0%, #0e0e0e 50%, #0c0c0c 100%);
    color: #f5f5f5;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(26, 255, 102, 0.1);
    border-bottom: 1px solid rgba(26, 255, 102, 0.1);
}

.why-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(26, 255, 102, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 255, 102, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1aff66;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background: rgba(26, 255, 102, 0.1);
    border: 1px solid rgba(26, 255, 102, 0.3);
    border-radius: 999px;
    position: relative;
    overflow: hidden;
}

.section-eyebrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 255, 102, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #1aff66 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.results-teaser {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.result-stat {
    text-align: center;
}

.result-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1aff66;
    display: block;
    line-height: 1;
}

.result-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(26, 255, 102, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(26, 255, 102, 0.3), transparent);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(26, 255, 102, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(26, 255, 102, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card:hover h3 {
    color: #1aff66;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(26, 255, 102, 0.3));
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #c0c0c0;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #d0d0d0;
}

.proof-point {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #1aff66;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.feature-card:hover .proof-point {
    opacity: 1;
    transform: translateY(0);
}

.why-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-cta h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-cta p {
    color: #aaa;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1aff66 0%, #00cc52 100%);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(26, 255, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(26, 255, 102, 0.4);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(3px);
}

.feature-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.result-stat {
    opacity: 0;
    animation: countUp 0.6s ease-out forwards;
}

.result-stat:nth-child(1) {
    animation-delay: 0.3s;
}

.result-stat:nth-child(2) {
    animation-delay: 0.4s;
}

.result-stat:nth-child(3) {
    animation-delay: 0.5s;
}

.compatible-section {
    padding: 4rem 5vw;
    background: #0a0a0a;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.compatible-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(26, 255, 102, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(26, 255, 102, 0.015) 0%, transparent 50%);
    animation: pulse-bg 8s ease-in-out infinite;
    z-index: 0;
}

.compatible-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.compatible-heading {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.compatible-subheading {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 3rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.trust-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.trust-item:nth-child(1) {
    animation-delay: 0.2s;
}

.trust-item:nth-child(2) {
    animation-delay: 0.3s;
}

.trust-item:nth-child(3) {
    animation-delay: 0.4s;
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1aff66;
    display: block;
    line-height: 1;
}

.trust-label {
    font-size: 0.85rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}

.platforms-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.platforms-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(26, 255, 102, 0.03), transparent);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platforms-wrapper:hover::before {
    opacity: 1;
}

.platforms-label {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(20px);
    animation: logoFadeIn 0.6s ease-out forwards;
}

.logo-item:nth-child(1) {
    animation-delay: 0.5s;
}

.logo-item:nth-child(2) {
    animation-delay: 0.6s;
}

.logo-item:nth-child(3) {
    animation-delay: 0.7s;
}

.logo-item:nth-child(4) {
    animation-delay: 0.8s;
}

.logo-item:nth-child(5) {
    animation-delay: 0.9s;
}

.logo-item:nth-child(6) {
    animation-delay: 1.0s;
}

.logo-item img {
    height: 36px;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(1.2);
}

.logo-item:hover {
    transform: translateY(-4px) scale(1.05);
}

.logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

.platform-name {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-item:hover .platform-name {
    opacity: 1;
    color: #aaa;
}

.compatibility-cta {
    background: rgba(26, 255, 102, 0.05);
    border: 1px solid rgba(26, 255, 102, 0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.compatibility-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 255, 102, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.cta-text {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.cta-highlight {
    font-size: 0.9rem;
    color: #1aff66;
    font-weight: 600;
}

.tools-section {
    padding: 5rem 5vw;
    background: linear-gradient(135deg, #0b0b0b 0%, #0d0d0d 50%, #0b0b0b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(26, 255, 102, 0.1);
}

.tools-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(26, 255, 102, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(26, 255, 102, 0.015) 0%, transparent 50%);
    z-index: 0;
}

.section-intro {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #1aff66 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.value-prop {
    background: rgba(26, 255, 102, 0.05);
    border: 1px solid rgba(26, 255, 102, 0.2);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.value-prop::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 255, 102, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.value-text {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.value-highlight {
    font-size: 0.9rem;
    color: #1aff66;
    font-weight: 700;
}

.tool-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 255, 102, 0.2), transparent);
    transition: left 0.6s;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #1aff66 0%, #00cc52 100%);
    color: #000000;
    border-color: #1aff66;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(26, 255, 102, 0.3);
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 100%;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.tool-card {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tool-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(26, 255, 102, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tool-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(26, 255, 102, 0.4), transparent);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.tool-card.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(26, 255, 102, 0.2);
    border-color: rgba(26, 255, 102, 0.3);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-card:hover::after {
    opacity: 1;
}

.tool-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.badge-premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 4px 12px rgba(255, 215, 0, 0.2);
}

.badge-free {
    background: linear-gradient(135deg, rgba(26, 255, 102, 0.2) 0%, rgba(26, 255, 102, 0.1) 100%);
    color: #1aff66;
    border: 1px solid rgba(26, 255, 102, 0.4);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 4px 12px rgba(26, 255, 102, 0.2);
}

.tool-icon {
    font-size: 2.5rem;
    background: rgba(26, 255, 102, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: #1aff66;
    border: 1px solid rgba(26, 255, 102, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tool-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(26, 255, 102, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover .tool-icon {
    background: rgba(26, 255, 102, 0.15);
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(26, 255, 102, 0.4);
    box-shadow: 0 8px 25px rgba(26, 255, 102, 0.3);
}

.tool-card:hover .tool-icon::before {
    opacity: 1;
}

.tool-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.tool-card:hover h3 {
    color: #1aff66;
}

.tool-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.tool-card:hover p {
    color: #d0d0d0;
}

.tool-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #1aff66 0%, #00cc52 100%);
    color: #000;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.tool-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.tool-cta::after {
    content: "→";
    transition: transform 0.3s ease;
}

.tool-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(26, 255, 102, 0.4);
}

.tool-cta:hover::before {
    left: 100%;
}

.tool-cta:hover::after {
    transform: translateX(3px);
}

.tools-bottom-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bottom-cta-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bottom-cta-subtext {
    color: #aaa;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.main-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1aff66 0%, #00cc52 100%);
    color: #000000;
    padding: 1.25rem 3rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 40px rgba(26, 255, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.main-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.main-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 50px rgba(26, 255, 102, 0.4);
}

.main-cta-button:hover::before {
    left: 100%;
}

.tool-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.tool-card:nth-child(1) {
    animation-delay: 0.1s;
}

.tool-card:nth-child(2) {
    animation-delay: 0.2s;
}

.tool-card:nth-child(3) {
    animation-delay: 0.3s;
}

.tool-card:nth-child(4) {
    animation-delay: 0.4s;
}

.tool-card:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-bg {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    #hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
        min-height: 75vh;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p.subhead {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .social-proof {
        justify-content: center;
    }

    .cta-wrapper {
        align-items: center;
    }

    .cta.large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .why-section {
        padding: 4rem 5vw;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .feature-card {
        padding: 2.5rem 2rem;
    }

    .results-teaser {
        gap: 2rem;
        margin-top: 1.5rem;
    }

    .result-number {
        font-size: 1.8rem;
    }

    .why-cta {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .compatible-section {
        padding: 3rem 5vw;
    }

    .compatible-heading {
        font-size: 2rem;
    }

    .compatible-subheading {
        font-size: 1rem;
    }

    .trust-metrics {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .logo-grid {
        gap: 1.5rem 2.5rem;
    }

    .logo-item img {
        height: 28px;
        max-width: 90px;
    }

    .platforms-wrapper {
        padding: 2rem 1.5rem;
    }

    .trust-number {
        font-size: 1.5rem;
    }

    .tools-section {
        padding: 4rem 5vw;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .tool-filters {
        flex-direction: column;
        gap: 0.75rem;
        margin: 2rem 0;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1.5rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tool-card {
        padding: 2rem 1.5rem;
    }

    .tool-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .value-prop {
        padding: 1rem 1.5rem;
        margin: 1.5rem auto;
    }

    .main-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .results-teaser {
        flex-direction: column;
        gap: 1.5rem;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .trust-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }

    .logo-grid {
        gap: 1.5rem;
    }

    .logo-item img {
        height: 24px;
        max-width: 80px;
    }

    .compatibility-cta {
        padding: 1.25rem 1.5rem;
    }
}