:root {
    /* Color Palette */
    --primary: #3E9BA1;
    --primary-light: #E8F5F6;
    --secondary: #FF6B5A;
    --background: #F2F2F7;
    --white: #FFFFFF;
    --text: #000000;
    --text-secondary: #666666;
    --border: #E0E0E0;
    --error: #FF3B30;
    --success: #34C759;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
    font-family: 'GroupRide';
    src: url('assets/fonts/GroupRide-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GroupRide';
    src: url('assets/fonts/GroupRide-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'GroupRide';
    src: url('assets/fonts/GroupRide-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

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

body {
    font-family: 'GroupRide', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: bold;
    color: var(--text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
header {
    background-color: rgba(20, 184, 166, 0.7);
    /* Teal-500 with 80% opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
}

header.header-hidden {
    transform: translateY(-100%);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo img {
    height: 100px;
}

.logo span {
    font-size: 2.2rem;
    font-weight: bold;
    color: #000;
}

/* Header Controls (Language + Button) */
.header-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-controls .lang-select {
    border-color: rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-top: 40px;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .lang-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 6px 10px;
    font-size: 0.85rem;
}

.footer-bottom .lang-select option {
    background-color: #0c111d;
    color: var(--white);
}

.lang-select {
    padding: 8px 12px;
    border-radius: 20px;
    border: 2px solid var(--border);
    background-color: var(--white);
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

.lang-select:hover,
.lang-select:focus {
    border-color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: url('assets/images/index-hero.png') no-repeat center center/cover fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-glass-card {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px;
    background: rgba(0, 0, 0, 0.2);
    /* Darker glass background for contrast */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-content {
    flex: 1;
}

.hero-tagline {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    margin-top: 40px;
    /* Added spacing from DB Badge */
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.metric-value {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .metric-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .metric-value {
        font-size: 1.8rem;
    }
}

.db-badge {
    padding: 8px 16px;
    border-radius: 12px;
    border: 2px solid var(--border);
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-content .db-badge {
    margin-top: var(--spacing-lg);
    background-color: var(--white);
}


.db-badge img {
    height: 24px;
}

.db-badge span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #357F84;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(62, 155, 161, 0.2);
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: auto;
    filter: grayscale(0.5);
}

.btn-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    background-color: var(--primary) !important;
}

/* Features */
.features {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #56B1B8;
    /* Thinner accent border */
    transition: var(--transition);
    position: relative;
    overflow: visible;

    /* Stronger Neon Glow */
    box-shadow: 0 0 40px rgba(62, 155, 161, 0.4),
        0 0 80px rgba(62, 155, 161, 0.2),
        inset 0 0 30px rgba(62, 155, 161, 0.15);

    z-index: 1;

    /* Increased Size: Forces 2 columns or full width */
    flex: 1 1 480px;
    max-width: 100%;
    min-width: 350px;

    /* New Layout: Flex Horizontal (Icon | Title | Text) */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    text-align: left;
    height: 160px;
    /* Static fixed height */
}

.feature-card:hover {
    transform: translateY(-5px);
    /* Removed scale to prevent size change */
    z-index: 10;
    /* Intense Neon Glow on Hover */
    box-shadow: 0 0 60px rgba(62, 155, 161, 0.7),
        0 0 120px rgba(62, 155, 161, 0.4),
        inset 0 0 50px rgba(62, 155, 161, 0.3);
}

.feature-card::after {
    /* Removed the heavy outer glow pseudo-element for a cleaner look */
    content: none;
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 0;
    color: var(--primary);

    /* Flex item sizing */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(62, 155, 161, 0.1);
}

.feature-card h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.2;
    flex-shrink: 0;
    /* Prevent title from wrapping unnecessarily */
    min-width: 100px;
    /* Ensure title has some space */
    max-width: 200px;
}

.feature-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0;
    flex-grow: 1;
    /* Text takes remaining space */
}

/* App Showcase */
.app-showcase {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
    overflow: hidden;
}

.app-showcase .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.app-mockups {
    flex: 1;
    display: flex;
    gap: var(--spacing-md);
    min-width: 300px;
    justify-content: center;
}

.mockup {
    width: 280px;
    height: auto;
    transition: var(--transition);
}

.mockup:hover {
    transform: scale(1.05) translateY(-10px);
}

.showcase-content {
    flex: 1;
    min-width: 300px;
}

/* Footer Styling */
footer {
    background-color: #0c111d;
    /* Deep premium dark */
    color: var(--white);
    padding: 80px 0 40px;
    margin-top: 0;
    /* Remove margin as it should sit flush with sections */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3);
}

.footer-column h4 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer-column ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}


footer .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

footer .logo img {
    height: 60px;
    width: auto;
}

footer .logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

/* Specific styling for the first column content */
.footer-column:first-child {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 20px;
}

.footer-column p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-column a[href^="mailto"] {
    display: inline-block;
    margin-top: 0;
    font-weight: 500;
    color: var(--primary-light);
    opacity: 1;
}

.footer-column a[href^="mailto"]:hover {
    text-decoration: underline;
}

/* Footer DB Badge Desktop Spacing */
footer .db-badge {
    margin-top: 20px;
    align-self: flex-start;
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
}

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

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

.reveal-delay-3 {
    transition-delay: 0.6s;
}

/* Existing Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Post-it Note */
@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap');

.post-it {
    position: absolute;
    bottom: -100px;
    left: 50%;
    width: 200px;
    height: 200px;
    background: #FFEB3B;
    background: linear-gradient(135deg, #FFF176 0%, #FFEB3B 100%);
    padding: 30px 20px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%) rotate(-3deg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 100;
    transition: var(--transition);
    cursor: default;
}

.post-it:hover {
    transform: translateX(-50%) rotate(0deg) scale(1.05);
}

.post-it span {
    font-family: 'Gochi Hand', cursive;
    font-size: 1.8rem;
    color: #333;
    line-height: 1.1;
    display: block;
}

.post-it::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.02);
}

/* Secondary Button */
.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

header .btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Buttons Container */
.hero-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .app-mockups {
        flex-direction: column;
        align-items: center;
    }

    header {
        background-color: rgba(20, 184, 166, 0.7);
        /* Teal-500 with 70% opacity */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    header .logo img {
        height: 60px;
        /* Reduced for mobile */
    }

    header .logo span {
        font-size: 1.4rem;
        color: #000;
        /* Black text */
    }

    header .btn-secondary {
        border-color: var(--white);
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    header .db-badge {
        display: none;
    }

    footer .db-badge {
        display: flex;
        margin-top: 20px;
    }

    .db-badge {
        width: auto;
        justify-content: center;
        background-color: var(--white);
    }

    .feature-card {
        max-width: 100%;
        flex-basis: 100%;
        min-width: 100%;
        margin: 20px auto;
        padding: 30px;

        /* Mobile Layout Adjustment: Stack vertically and allowed height to grow */
        height: auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .feature-card h3 {
        min-width: 0;
        max-width: 100%;
    }

    .db-badge img {
        height: 28px;
    }

    .db-badge span {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .post-it {
        width: 140px;
        height: 140px;
        bottom: -70px;
        left: 50%;
        transform: translateX(-50%) rotate(-3deg);
        top: auto;
    }

    .post-it span {
        font-size: 1.8rem;
    }

    .hero-cta {
        justify-content: center;
    }



    footer .logo img {
        height: 80px;
    }

    footer .logo span {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .social-links {
        justify-content: center;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
        margin-bottom: var(--spacing-md);
    }

    .footer-column .logo {
        justify-content: center;
    }


    .hero {
        padding: 100px 0 60px;
        min-height: auto;
        background-attachment: scroll;
        /* Better performance on mobile */
    }

    .hero::before {
        background: rgba(0, 0, 0, 0.6);
        /* Darker overlay for mobile */
    }

    .hero-glass-card {
        padding: 30px 20px;
        border-radius: 20px;
        width: 100%;
        margin: 0 10px;
        background: rgba(0, 0, 0, 0.5);
        /* Much darker background for glass card */
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero h1 {
        font-size: 2.4rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    }

    .hero p {
        font-size: 1.1rem;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-glass-card {
        padding: 24px 15px;
    }

    .hero-tagline {
        font-size: 0.9rem;
        padding: 4px 12px;
    }
}

/* Waitlist / Newsletter Section */
.waitlist-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: url('assets/images/index-hero.png') no-repeat center center/cover fixed;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.4), rgba(15, 23, 42, 0.4));
}

.glass-card {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    color: var(--white);
}

.glass-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.glass-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.waitlist-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.waitlist-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.waitlist-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-light);
}

.waitlist-btn {
    padding: 15px 30px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.waitlist-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.4);
}

@media (max-width: 600px) {
    .waitlist-form {
        flex-direction: column;
    }

    .glass-card {
        padding: 40px 20px;
        margin: 0 15px;
    }
}

/* Go-to-Market Section */
.gtm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

/* Connector Line (Desktop only) */
@media (min-width: 992px) {
    .gtm-grid::before {
        content: '';
        position: absolute;
        top: 60px;
        /* Aligns with icon center approx */
        left: 50px;
        right: 50px;
        height: 2px;
        background: linear-gradient(90deg,
                rgba(62, 155, 161, 0) 0%,
                rgba(62, 155, 161, 0.5) 20%,
                rgba(62, 155, 161, 0.5) 80%,
                rgba(62, 155, 161, 0) 100%);
        z-index: 0;
        pointer-events: none;
    }
}

.gtm-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
    /* Above line */
}

.gtm-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gtm-header {
    display: flex;
    justify-content: center;
    /* Center icon */
    margin-bottom: 20px;
}

.gtm-phase-badge {
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.gtm-footer {
    margin-top: auto;
    /* Pushes to bottom */
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.gtm-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    background: rgba(255, 255, 255, 0.05);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gtm-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--white);
    text-align: center;
}

.gtm-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 15px;
}

/* Comparison Section Styles */
.comparison-container {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
    /* Ensure scrolling on very small screens */
}

.comp-table th,
.comp-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.comp-table th {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 30px;
}

.comp-table td {
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* Row Headers (Criteria) */
.comp-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--white);
    width: 25%;
}

/* Highlight Column (GroupRide) */
.comp-highlight {
    background: rgba(62, 155, 161, 0.1) !important;
    border-left: 1px solid var(--primary);
    border-right: 1px solid var(--primary);
    position: relative;
}

/* Top corners of highlight */
.comp-table thead th.comp-highlight {
    background: var(--primary) !important;
    color: white;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border: none;
    position: relative;
    font-size: 1.2rem;
}

/* Badge for highlight header */
.comp-table thead th.comp-highlight::after {
    content: 'WINNER';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    /* Gold */
    color: #000;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Bottom corners of highlight */
.comp-table tbody tr:last-child td.comp-highlight {
    border-bottom: 1px solid var(--primary);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.check-icon {
    color: var(--success);
    font-size: 1.2rem;
}

.cross-icon {
    color: var(--error, #e74c3c);
    /* Fallback or var */
    font-size: 1.2rem;
}

/* Demo Button Container */
.demo-cta-container {
    text-align: center;
    margin-top: 50px;
}

.btn-demo-pulse {
    background: var(--primary);
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(62, 155, 161, 0.4);
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
}

.btn-demo-pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(62, 155, 161, 0.6);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(62, 155, 161, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(62, 155, 161, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(62, 155, 161, 0);
    }
}