@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@500;600;700&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap');

:root {
    --bg-main: #fafafa;
    --bg-card: #ffffff;
    --text-title: #0f172a;
    --text-body: #4b575e;
    --text-muted: #6b6b6b;
    --primary: #0b57d0;
    --primary-hover: #083c91;
    --primary-light: #f1f5fc;
    --border: #e2e8f0;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-heading: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    --font-body: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

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

/* Custom Slim Scrollbar (Hidden globally) */
::-webkit-scrollbar {
    display: none !important;
    width: 0px;
    height: 0px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: transparent;
}

html, body {
    overflow-x: visible;
    width: 100%;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Premium Dynamic Aurora Background Container */
.aurora-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(180deg, #f3f6fc 0%, #f8fafd 35%, #faf8fa 70%, #ffffff 100%);
    background-attachment: fixed;
}

/* High-performance GPU-accelerated blobs */
.aurora-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.28; /* Soft, readable contrast for 7 overlapping layers */
    will-change: transform;
    pointer-events: none;
}

.blob-violet {
    background-color: #ebdff5; /* Violet */
    top: -15%;
    left: -15%;
    animation: float-violet 25s infinite alternate ease-in-out;
}

.blob-indigo {
    background-color: #dfdff2; /* Indigo */
    top: 15%;
    right: -15%;
    animation: float-indigo 30s infinite alternate ease-in-out;
}

.blob-blue {
    background-color: #e3effd; /* Blue */
    bottom: -10%;
    left: 15%;
    animation: float-blue 28s infinite alternate ease-in-out;
}

.blob-green {
    background-color: #e4f3eb; /* Green */
    bottom: 15%;
    right: 10%;
    animation: float-green 35s infinite alternate ease-in-out;
}

.blob-yellow {
    background-color: #faf2dc; /* Yellow */
    top: 40%;
    left: -10%;
    animation: float-yellow 32s infinite alternate ease-in-out;
}

.blob-orange {
    background-color: #faebd7; /* Orange/Peach */
    bottom: 40%;
    right: -10%;
    animation: float-orange 27s infinite alternate ease-in-out;
}

.blob-red {
    background-color: #fbe6e3; /* Red */
    top: -10%;
    right: 30%;
    animation: float-red 33s infinite alternate ease-in-out;
}

/* GPU-accelerated 2D translation movements for 7 distinct colors */
@keyframes float-violet {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(100px, 80px, 0) scale(1.1); }
    100% { transform: translate3d(-50px, 150px, 0) scale(0.95); }
}

@keyframes float-indigo {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-120px, 100px, 0) scale(0.9); }
    100% { transform: translate3d(80px, -50px, 0) scale(1.15); }
}

@keyframes float-blue {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(120px, 90px, 0) scale(1.1); }
    100% { transform: translate3d(-60px, 160px, 0) scale(0.95); }
}

@keyframes float-green {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-70px, 90px, 0) scale(0.95); }
    100% { transform: translate3d(130px, -110px, 0) scale(1.1); }
}

@keyframes float-yellow {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(90px, -140px, 0) scale(1.1); }
    100% { transform: translate3d(-110px, 60px, 0) scale(0.9); }
}

@keyframes float-orange {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-80px, 100px, 0) scale(1.05); }
    100% { transform: translate3d(110px, -90px, 0) scale(0.9); }
}

@keyframes float-red {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-140px, 110px, 0) scale(0.9); }
    100% { transform: translate3d(90px, -60px, 0) scale(1.15); }
}

body {
    background: transparent;
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: initial;
    -webkit-font-smoothing: antialiased;
}

/* Container responsive width alignments matching grid content width */
.container {
    margin: 0 auto;
    width: 100%;
}

/* 
   Container width breakpoints to exactly match app grid column layout edges
   - 5 Columns: 5 * 296 + 4 * 20 = 1560px
   - 4 Columns: 4 * 296 + 3 * 20 = 1244px
   - 3 Columns: 3 * 296 + 2 * 20 = 928px
   - 2 Columns: 2 * 296 + 1 * 20 = 612px
*/
@media (min-width: 2040px) {
    .container {
        max-width: 1876px; /* 6 * 296 + 5 * 20 = 1876px to fit 6 columns on ultra-wide */
        padding: 0;
    }
}
@media (min-width: 1720px) and (max-width: 2039px) {
    .container {
        max-width: 1560px; /* 5 columns */
        padding: 0;
    }
}
@media (min-width: 1344px) and (max-width: 1719px) {
    .container {
        max-width: 1244px; /* 4 columns */
        padding: 0;
    }
}
@media (min-width: 1024px) and (max-width: 1343px) {
    .container {
        max-width: 928px; /* 3 columns */
        padding: 0;
    }
}
@media (min-width: 700px) and (max-width: 1023px) {
    .container {
        max-width: 612px; /* 2 columns */
        padding: 0;
    }
}
@media (max-width: 699px) {
    .container {
        max-width: 100%;
        padding: 0 30px; /* Changed from 50px to 30px for a better mobile layout gap */
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 20px; /* 20px gap for smaller phones to maximize text space */
    }
    .supported-apps-section .container {
        padding: 0 20px !important; /* Aligned with standard 20px padding */
    }
}

/* Header / Navbar */
header {
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
}

main {
    padding-top: 64px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    position: relative;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    z-index: 102;
}

.logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    margin-right: 12px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 1;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    z-index: 101;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.nav-links a:hover {
    color: #000;
}

.header-icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: var(--transition);
}

.header-icon-btn:hover {
    color: #000;
}

/* Hamburger */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: -0.5rem;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

@media (hover: hover) {
    .hamburger-btn:hover {
        background: rgb(0 0 0 / 5%);
    }
}

.hamburger-btn svg {
    width: 24px;
    height: 24px;
    fill: #000;
}

/* Dropdown Menu CSS */
.dropdown-wrapper {
    position: relative;
    height: 64px; /* Align with header height */
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    line-height: 1;
    color: var(--text-body);
    font-weight: 500;
    transition: color 0.2s ease;
}

.dropdown-toggle:hover,
.dropdown-wrapper.active .dropdown-toggle {
    color: #111111; /* Dark/black color on hover or active dropdown open state */
}

.dropdown-caret {
    display: inline-block;
    width: 16px;
    opacity: 0;
    margin-left: 5px;
    flex-shrink: 0;
    margin-top: 5px;
    stroke: var(--text-body);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                stroke 0.2s ease,
                opacity 0.25s ease;
}

.dropdown-toggle:hover .dropdown-caret,
.dropdown-wrapper.active .dropdown-caret {
    stroke: #111111;
    opacity: 1;
}

.dropdown-wrapper.active .dropdown-caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
    min-width: 180px;
    max-width: 250px;
    list-style: none;
    padding: 6px 8px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), 
                visibility 0.25s;
    z-index: 105;
}

/* Custom minimal scrollbar for desktop dropdown */
.dropdown-menu::-webkit-scrollbar {
    width: 4px;
}
.dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}
.dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}
.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.dropdown-wrapper.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Align dropdown to the right only when it overflows the right edge */
.dropdown-menu.align-right {
    left: auto !important;
    right: 0 !important;
    transform: translateY(8px) !important;
}

.dropdown-wrapper.active .dropdown-menu.align-right {
    transform: translateY(0) !important;
}

/* Close states when clicked */
.dropdown-menu.closed {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.dropdown-menu li a,
.drawer-group-links li a {
    padding: 0.65rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a5568; /* Sleek charcoal text */
    display: block;
    border-radius: 8px;
    margin: 2px 0;
    text-decoration: none;
    background-color: transparent;
    white-space: nowrap;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active,
.drawer-group-links li a:hover,
.drawer-group-links li a.active {
    background-color: #00000008;
    color: #111111;
}

.dropdown-item-icon {
    display: none; /* Hide any icons inside dropdown links */
}

/* Mobile Dropdown Menu Wrapper */
.mobile-menu-wrapper {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
}

@media (max-width: 850px) {
    .mobile-menu-wrapper {
        display: inline-flex;
    }
}

.mobile-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
    min-width: 180px;
    max-width: 250px;
    padding: 10px 8px 6px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), 
                visibility 0.25s;
    z-index: 150;
}

/* Custom minimal scrollbar for mobile dropdown */
.mobile-dropdown::-webkit-scrollbar {
    width: 4px;
}
.mobile-dropdown::-webkit-scrollbar-track {
    background: transparent;
}
.mobile-dropdown::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}
.mobile-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Divider line between mobile menu groups */
.mobile-dropdown .drawer-group:not(:last-child) {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.mobile-dropdown .drawer-group:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -8px;
    right: -8px;
    height: 0.5px;
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-wrapper.active .mobile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drawer-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.drawer-group-title {
    font-size: 13px;
    font-weight: bold;
    color: rgb(0 0 0 / 75%);
    padding: 0.65rem 1.15rem;
    margin-bottom: 2px;
    pointer-events: none;
    text-transform: none;
    letter-spacing: normal;
}

.drawer-group-links {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* Brand Intro spinning/slide animation block */
.brand-intro {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 60px; /* Reduced gap above logo/name */
    margin-bottom: 40px; /* Reduced gap below logo/name */
    width: 100%;
}

.brand-logo-container {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    /* Smooth ease-out rotation like the Google Gemini logo */
    animation: logoGeminiSpin 2.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-left: 20px;
    z-index: 5;
    /* Slide out behind the logo animation */
    animation: nameSlideIn 2.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes logoGeminiSpin {
    0% {
        transform: rotate(0deg) scale(0.6);
        opacity: 0;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 1;
    }
}

@keyframes nameSlideIn {
    0% {
        transform: translateX(-40px);
        opacity: 0;
    }
    30% {
        transform: translateX(-40px); /* Hold until logo completes fast spin */
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-content-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem; /* Reduced for a tighter vertical stack on mobile/tablet viewports */
    align-items: center;
    width: 100%;
}

@media (min-width: 968px) {
    .hero-content-row {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
    }
}

@media (min-width: 968px) and (max-width: 1023px) {
    .hero-content-row {
        gap: 2rem;
    }
}

.hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-text-side .brand-intro {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: heroTitleFloatDown 2.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroTitleFloatDown {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-body);
    margin-bottom: 2rem;
}

/* Premium solid blue CTA button */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 1px 2rem 0px;
    background-color: #1f1f1f;
    color: #ffffff;
    border: 2px solid transparent;
    border-radius: 20px;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.1s;
}

.hero-cta-btn:hover {
    background-color: #0b0b0b;
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.35); /* Bottom-heavy shadow on hover */
}

.hero-cta-btn:focus {
    outline: none;
}

.hero-cta-btn:active {
    outline: 3px solid #1f1f1f;
    outline-offset: 3px;
    border-color: transparent;
    background-color: #0b0b0b;
    box-shadow: none;
    transform: scale(0.95); /* Snappy scale down click feedback matching filter tabs */
}

.hero-visual-side {
    position: relative;
    width: 480px; /* Matches animation width exactly */
    height: 550px; /* Increased height to fully clear top/bottom floating animations */
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: visible; /* Prevent internal scrollbars; outer .hero will handle horizontal clipping */
    justify-self: center; /* Center horizontally in CSS Grid cell */
    margin: 0 auto; /* Center horizontally in block layouts */
}

@media (max-width: 1343px) {
    .hero-visual-side {
        width: 408px; /* 480px * 0.85 scale */
        height: 450px; /* Adjusted height to fit scaled 520px container height */
    }
    .mockup-container {
        transform: translate(-50%, -50%) scale(0.85) !important;
        transform-origin: center center;
    }
}

@media (max-width: 1023px) {
    .hero-visual-side {
        width: 278px; /* 480px * 0.58 scale */
        height: 320px; /* Adjusted height to fit scaled 520px container height */
    }
    .mockup-container {
        transform: translate(-50%, -50%) scale(0.58) !important;
        transform-origin: center center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .platforms-section {
        padding: 4rem 0;
    }
    .supported-apps-section {
        padding: 4rem 0;
    }
    .platforms-section-title {
        font-size: 24px;
        margin-bottom: 2.5rem;
    }
    .platform-card {
        padding: 1.5rem;
    }
    .supported-apps-section .container {
        padding: 0 30px !important;
    }
    .supported-apps-title {
        font-size: 24px;
    }
    .supported-apps-subtitle {
        margin-bottom: 32px;
    }
    .explore-title {
        font-size: 24px;
    }
    .explore-subtitle {
        margin-bottom: 32px;
    }
    .explore-header {
        margin-bottom: 2.5rem;
    }
    .supported-apps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        justify-items: center;
        gap: 16px 8px;
        padding: 0;
    }
    .supported-app-card-wrapper {
        width: 100%;
        max-width: 100px;
        height: 52px;
        position: relative;
        margin: 0;
    }
    .supported-app-card {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 100px;
        height: 52px;
        padding: 6px 4px;
        border-radius: 8px;
        background: transparent;
        transition: all 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .app-card-icon {
        width: 22px;
        height: 22px;
        margin-bottom: 2px;
    }
    .supported-app-card-wrapper:hover .app-card-icon {
        width: 22px;
        height: 22px;
        margin-bottom: 2px;
    }
    .supported-app-card .app-card-title {
        font-size: 10px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100%;
        text-align: center !important;
        padding: 0 !important;
        margin: 0;
        line-height: 1.2;
    }
    .supported-app-card-wrapper:hover .app-card-title {
        font-size: 10.5px;
        font-weight: 700;
        white-space: nowrap;
        width: 100%;
        text-align: center !important;
        padding: 0 !important;
    }
    /* Expanded responsive mobile hover card */
    .supported-app-card-wrapper:hover .supported-app-card {
        width: 156px;
        max-width: 156px;
        height: 104px;
        transform: translateX(-50%) translateY(-26px);
        padding: 10px 8px;
        border-radius: 12px;
        background: linear-gradient(135deg, #ffffff 0%, #f6f9fc 100%);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
        z-index: 50;
    }
    .supported-app-card .app-card-desc {
        font-size: 8.5px;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.2;
        width: 100%;
        text-align: center !important;
        padding: 0 !important;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transform: translateY(4px);
        transition: all 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .supported-app-card-wrapper:hover .app-card-desc {
        display: -webkit-box !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 32px !important;
        margin-top: 4px !important;
        transform: translateY(0);
        text-align: center !important;
        padding: 0 !important;
    }
}

/* On mobile, columns stack vertically, so visual side is full-width */
@media (max-width: 699px) {
    .hero-visual-side {
        width: 480px; /* 480px * 1 scale */
        height: 530px; /* Adjusted to fit the full 520px container height + float overflow */
        margin: 0 auto; /* Center horizontally in vertical stack */
    }
    .mockup-container {
        transform: translate(-50%, -50%) scale(1) !important;
        transform-origin: center center;
    }
}

@media (max-width: 580px) {
    .hero-visual-side {
        width: 374px; /* 480px * 0.78 scale */
        height: 415px; /* Fits scaled 520px container at 0.78 scale + float overflow */
        margin: 0 auto;
    }
    .mockup-container {
        transform: translate(-50%, -50%) scale(0.78) !important;
        transform-origin: center center;
    }
}

@media (max-width: 480px) {
    .hero-visual-side {
        width: 288px; /* 480px * 0.6 scale */
        height: 320px; /* Fits scaled 520px container at 0.6 scale + float overflow */
        margin: 0 auto;
    }
    .mockup-container {
        transform: translate(-50%, -50%) scale(0.6) !important;
        transform-origin: center center;
    }
}

@media (max-width: 360px) {
    .hero-visual-side {
        width: 264px; /* 480px * 0.55 scale */
        height: 295px; /* Fits scaled 520px container at 0.55 scale + float overflow */
        margin: 0 auto;
    }
    .mockup-container {
        transform: translate(-50%, -50%) scale(0.55) !important;
        transform-origin: center center;
    }
}

.mockup-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 480px; /* Expanded to contain all shifted coordinates symmetrically */
    height: 520px; /* Expanded further to fully contain Chrome bubble & Tasks box at the bottom during animation */
    transition: transform 0.1s ease;
    flex-shrink: 0;
}

/* Glassmorphic Mockup Cards styling */
.mockup-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    width: 280px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.crm-sync-card {
    top: 80px;
    left: 125px; /* Shifted right by 35px to center card stack */
    animation: floatCard1 6s ease-in-out infinite;
}

.tasks-list-card {
    bottom: 65px; /* Adjusted to 65px for the 520px container height to keep visual position identical */
    right: 65px; /* Shifted right by 35px to center card stack */
    width: 280px;
    z-index: 4;
    animation: floatCard2 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Header style inside mockup cards */
.mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    width: 100%;
}

.mockup-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.mockup-meta {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mockup-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.mockup-subtitle {
    font-size: 11px;
    color: #64748b;
    line-height: 1.2;
}

.mockup-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-active {
    background: #e6f4ea;
    color: #137333;
}

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.sync-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.sync-label {
    font-weight: 500;
    color: #334155;
}

.sync-value {
    font-weight: 700;
}

.text-green {
    color: #137333;
}

.text-blue {
    color: var(--primary);
}

.sync-progress {
    height: 6px;
    background-color: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
    width: 100%;
}

.sync-bar {
    height: 100%;
    background-color: #34a853;
    border-radius: 3px;
}

.sync-footer {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #94a3b8;
    margin-top: 4px;
    font-weight: 500;
}

/* Tasks list styling inside mockup */
.mockup-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.mockup-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    color: #334155;
}

.mockup-checklist li.checked span {
    text-decoration: line-through;
    color: #94a3b8;
}

.check-icon {
    width: 16px;
    height: 16px;
    fill: #1a73e8;
    flex-shrink: 0;
}

.check-box {
    width: 16px;
    height: 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 3px;
    flex-shrink: 0;
}

/* Shopify Sync Card styling inside mockup */
.shopify-sync-card {
    top: 200px;
    left: 30px; /* Shifted right by 35px to center card stack */
    width: 280px;
    z-index: 2;
    animation: floatCard3 6s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes floatCard3 {
    0% { transform: translateY(0px) rotate(-3deg); }
    50% { transform: translateY(6px) rotate(-4.5deg); }
    100% { transform: translateY(0px) rotate(-3deg); }
}

.floating-app-bubble {
    position: absolute;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-app-bubble:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    z-index: 10;
}

.floating-app-bubble img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bubble-1 {
    width: 44px;
    height: 44px;
    top: 55px;
    left: 80px; /* Shifted right by 35px */
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.2);
    animation: floatCard1 8s ease-in-out infinite;
    animation-delay: 0.2s;
}

.bubble-2 {
    width: 48px;
    height: 48px;
    top: 135px;
    right: 15px;
    box-shadow: 0 6px 18px rgba(251, 188, 5, 0.2);
    animation: floatCard2 7s ease-in-out infinite;
    animation-delay: 1.5s;
}

.bubble-3 {
    width: 44px;
    height: 44px;
    top: 260px;
    right: 30px; /* Shifted right by 20px to stay balanced and prevent edge clipping */
    box-shadow: 0 6px 18px rgba(26, 115, 232, 0.2);
    animation: floatCard1 9s ease-in-out infinite;
    animation-delay: 0.8s;
}

.bubble-4 {
    width: 40px;
    height: 40px;
    top: 50px;
    left: 350px;
    z-index: 1;
    box-shadow: 0 6px 18px rgba(52, 168, 83, 0.15);
    animation: floatCard2 6s ease-in-out infinite;
    animation-delay: 2.2s;
}

.bubble-5 {
    width: 42px;
    height: 42px;
    top: 375px;
    left: 55px; /* Shifted right by 35px */
    box-shadow: 0 6px 18px rgba(10, 102, 194, 0.2);
    animation: floatCard1 7.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.bubble-6 {
    width: 40px;
    height: 40px;
    top: 445px; /* Restored original offset by shifting to top + 35px */
    right: 185px; /* Shifted right by 35px to center with cards */
    z-index: 5;
    box-shadow: 0 6px 18px rgba(66, 133, 244, 0.15);
    animation: floatCard2 8.5s ease-in-out infinite;
    animation-delay: 1.8s;
}

.bubble-7 {
    width: 44px;
    height: 44px;
    top: 170px;
    left: 15px;
    z-index: 1;
    box-shadow: 0 6px 18px rgba(234, 67, 53, 0.2);
    animation: floatCard1 6.5s ease-in-out infinite;
    animation-delay: 1.1s;
}

.bubble-8 {
    width: 44px;
    height: 44px;
    top: 5px;
    left: 215px; /* Shifted right by 35px */
    box-shadow: 0 6px 18px rgba(242, 153, 74, 0.22);
    animation: floatCard2 7.5s ease-in-out infinite;
    animation-delay: 0.4s;
}

.bubble-9 {
    width: 40px;
    height: 40px;
    top: 310px;
    right: 90px; /* Shifted right by 35px */
    box-shadow: 0 6px 18px rgba(0, 180, 216, 0.2);
    animation: floatCard1 8s ease-in-out infinite;
    animation-delay: 1.6s;
}

.bubble-10 {
    width: 40px;
    height: 40px;
    top: 405px;
    right: 45px; /* Shifted right by 35px */
    z-index: 5;
    box-shadow: 0 6px 18px rgba(66, 133, 244, 0.15);
    animation: floatCard2 6.5s ease-in-out infinite;
    animation-delay: 2s;
}

.bubble-logo {
    width: 44px;
    height: 44px;
    top: 238.5px;
    left: 322px; /* Shifted right by 35px */
    z-index: 5;
    background: #ffffff;
    border: none;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bubble-logo img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    position: relative;
    top: -2.4px;
    transform-origin: 50% 59.63%;
    animation: slowLogoRotate 15s linear infinite;
}

@keyframes slowLogoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floats animations */
@keyframes floatCard1 {
    0% { transform: translateY(0px) rotate(6.5deg); }
    50% { transform: translateY(-8px) rotate(8.5deg); }
    100% { transform: translateY(0px) rotate(6.5deg); }
}

@keyframes floatCard2 {
    0% { transform: translateY(0px) rotate(-11deg); }
    50% { transform: translateY(8px) rotate(-13.5deg); }
    100% { transform: translateY(0px) rotate(-11deg); }
}

/* Platforms Container Section */
.platforms-section {
    width: 100%;
    padding: 5rem 0;
    background: transparent;
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden; /* Prevent horizontal scroll from any children */
}

.platforms-section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: #202124;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    line-height: 1.25;
}

/* Minimal Supported Apps Row */
.section-separator {
    width: 100%;
    padding: 20px 0;
}

.separator-line {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(15, 23, 42, 0.08) 20%, rgba(15, 23, 42, 0.08) 80%, transparent);
}

.supported-apps-section {
    padding: 5rem 0;
    text-align: center;
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.supported-apps-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 10px;
    line-height: 1.25;
    letter-spacing: normal;
}

.supported-apps-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 75px;
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.supported-apps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 46px 46px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    justify-content: center;
}

.supported-app-card-wrapper {
    position: relative;
    width: 146px;
    height: 72px;
    margin: 0;
}

.supported-app-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 146px;
    height: 72px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: none;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    z-index: 10;
    opacity: 1;
    filter: none;
}

/* Outline on active (click) and focus-visible state */
.supported-app-card:active,
.supported-app-card:focus-visible {
    outline: 3px solid #000000;
    outline-offset: 2px;
    z-index: 60;
    border-radius: 12px;
}

/* Hover state: Card expands vertically (72px -> 116px) with custom shadow, rounded corners and premium gradient background */
/* Hover state: Card expands symmetrically in all directions (width 146->190, height 72->116) from center */
.supported-app-card-wrapper:hover .supported-app-card {
    width: 190px;
    height: 116px;
    background: linear-gradient(135deg, #ffffff 0%, #f6f9fc 100%);
    border-color: transparent;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 3px 10px rgba(0, 0, 0, 0.04);
    z-index: 50;
    transform: translateX(-50%) translateY(-22px);
    padding: 14px 16px;
    justify-content: center;
}

.app-card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 8px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 0;
    transition: all 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.app-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.32s ease;
    opacity: 1;
    filter: none;
}

/* On hover, icon remains transparent with no border, bg or shadow, just scaling the image */
.supported-app-card-wrapper:hover .app-card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.supported-app-card-wrapper:hover .app-card-icon img {
    transform: scale(1.08);
}

.app-card-icon img[src*="google-tasks"] {
    mix-blend-mode: normal;
}

.app-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 0px;
}

.supported-app-card .app-card-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-title);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center !important;
    padding: 0 !important;
    overflow: hidden;
    transition: all 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.supported-app-card-wrapper:hover .app-card-title {
    color: var(--text-title);
    font-size: 12px;
    font-weight: 700;
    text-align: center !important;
    padding: 0 !important;
}

/* Hide description by default */
.supported-app-card .app-card-desc {
    font-family: var(--font-body);
    font-size: 9px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.3;
    white-space: normal;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center !important;
    padding: 0 !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    margin-top: 0;
    transform: translateY(4px);
    transition: all 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reveal description on hover with good gaps and soft slide up */
.supported-app-card-wrapper:hover .app-card-desc {
    opacity: 1;
    visibility: visible;
    max-height: 32px;
    margin-top: 6px;
    transform: translateY(0);
    text-align: center !important;
    padding: 0 !important;
}

/* Card click overlay and link icon styling for vendor marketplace */
.supported-app-card-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
}

.app-card-title-row {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

.supported-app-card .app-card-title-row .app-card-title,
.supported-app-card-wrapper:hover .app-card-title-row .app-card-title {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin: 0;
    display: block !important;
}

.vendor-marketplace-link {
    position: absolute;
    top: 15px;
    right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 20;
    padding: 2px;
    opacity: 0;
    visibility: hidden;
}

.supported-app-card-wrapper:hover .vendor-marketplace-link {
    opacity: 1;
    visibility: visible;
}

.vendor-marketplace-link svg {
    display: block;
    stroke: currentColor;
}

/* Section Header vendor links */
.section-vendor-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: color 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
    padding: 0;
    margin-left: 2px;
    opacity: 0.5;
    transform: translateY(1px);
}

.section-vendor-link:hover {
    opacity: 1;
    transform: translateY(1px) scale(1.05);
}

.section-vendor-link:active {
    color: #000000 !important;
    transform: translateY(1px) scale(0.92);
}

.section-vendor-link svg {
    display: block;
    stroke: currentColor;
    width: 16px;
    height: 16px;
}

/* Platforms grid layout: 1 column stack on mobile, 2 columns on tablet, 3 columns on desktop */
.platform-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Tablet/Medium Screens (1024px to 1343px) matching 2-column container width */
@media (min-width: 1024px) and (max-width: 1343px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .med-span-2 {
        grid-column: span 2;
    }
    .med-span-1 {
        grid-column: span 1;
    }
}

/* Large Desktop Screens (1344px and up) matching 3-column container width */
@media (min-width: 1344px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .lg-span-3 {
        grid-column: span 3;
    }
    .lg-span-2 {
        grid-column: span 2;
    }
    .lg-span-1 {
        grid-column: span 1;
    }
}

.platform-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 2px 8px -2px rgba(9, 14, 18, 0.16);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
    max-width: 100%; /* Prevents horizontal overflow on smaller screens */
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 16px;
}

/* Enhanced shadow on hover */
.platform-card:hover {
    border-color: rgba(0, 0, 0, 0.02);
    box-shadow: 
        0 8px 16px -4px rgba(9, 14, 18, 0.15), 
        0 2px 4px -1px rgba(9, 14, 18, 0.08);
}

.platform-img {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.015); /* Black with 0.015 opacity as requested */
    border-radius: 12px;
    padding: 10px;
    transition: var(--transition);
}

.platform-card:hover .platform-img {
    transform: scale(1.08); /* Scales up slightly on hover */
    background-color: #ffffff;
    /* Black-related box shadow on hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.platform-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-text-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.platform-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.25;
    font-weight: 600;
    color: #000;
}

.platform-desc {
    font-size: 15px;
    line-height: 22px;
    color: var(--text-body);
    font-weight: 400;
}

/* Calligraphy Divider Lines styling */
.calligraphy-divider-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 60px;
    margin-bottom: 60px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calligraphy-divider {
    width: 100%;
    height: 12px;
}

/* Explore Title Area */
.explore-badge-wrapper {
    margin-bottom: 0.75rem;
}

.explore-badge {
    background-color: #ffffff;
    color: #1a73e8;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(26, 115, 232, 0.15);
    display: inline-block;
    box-shadow: 0 2px 6px rgba(26, 115, 232, 0.06);
}

.explore-section {
    padding-top: 5rem;
    text-align: center;
    scroll-margin-top: 65px;
}

.explore-container {
    border-bottom: none;
    padding-bottom: 0;
}

.explore-header {
    margin-top: 0;
    margin-bottom: 3.5rem; /* Increased gap between title and search box */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.explore-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 10px;
    line-height: 1.25;
    letter-spacing: normal;
}

.explore-search-btn-text {
    background-color: #0f172a;
    color: #ffffff;
    border: 1px solid #0f172a;
    border-radius: 2rem;
    padding: 8px 24px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 2rem; /* Swapped with header bottom margin (was 1.25rem) */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.explore-search-btn-text:hover {
    background-color: #000000;
    border-color: #000000;
}

.explore-search-btn-text.active {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(11, 87, 208, 0.15);
    transform: scale(1.03);
}

.explore-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.4;
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
}

/* Explore section search overlay & filter buttons */
.search-filter-container {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin: 0 auto 4.5rem auto; /* Add bottom margin to push the section divider line down with adequate gap */
    width: 80%; /* Reduced width by 10% on left and right (was 60%) */
    display: flex;
    flex-direction: column;
    /* Removed gap: 1rem to keep margins symmetrical when search-box is hidden */
}

@media (max-width: 900px) {
    .search-filter-container {
        width: 100%; /* Spans full width on tablets/mobiles */
    }
}

.search-box-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
    
    display: flex;
    align-items: center;
    border-radius: 14px;
    background-color: #f8fafc;
    border: 1px solid transparent;
}

.search-box-wrapper.active {
    max-height: 52px; /* 50px content height + 2px borders */
    height: 52px;
    opacity: 1;
    margin-bottom: 1.25rem; /* Spacing between active search input and tabs */
    overflow: visible; /* Prevent box shadow clipping */
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.search-box-wrapper:focus-within {
    border-color: var(--primary);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.12);
}

.search-box-wrapper > svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--text-muted);
    stroke: var(--text-muted);
    stroke-width: 0.8px;
    pointer-events: none;
    transition: var(--transition);
    margin-left: 1.25rem; /* Gap to left boundary (20px) */
    margin-right: 0.75rem; /* Gap to search input text (12px) */
    flex-shrink: 0;
}

.search-box-wrapper:focus-within .search-icon-left {
    fill: var(--primary);
    stroke: var(--primary);
}

.search-input {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #000;
    outline: none;
    padding: 0;
}

.search-close-btn {
    width: 32px; /* Fixed width for perfect vertical and horizontal centering */
    height: 32px; /* Fixed height for perfect vertical and horizontal centering */
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0; /* Clear padding to align SVG exactly in the center */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-right: 1.25rem; /* Gap to right boundary (20px) */
    margin-left: 1.25rem; /* Symmetrical gap to left/input text (20px) */
    flex-shrink: 0;
}

.search-close-btn:hover {
    color: #000;
    transform: scale(1.1);
}

.search-close-btn svg {
    stroke: currentColor;
    stroke-width: 1px;
}

.filter-tabs-wrapper {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.filter-tabs {
    font-size: 13.5px;
    line-height: 0;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    background: #ffffff;
    color: #7d7d7d;
    border-radius: 25px;
    padding: 22px 12px 24px 12px;
    outline: 0;
    filter: url(#goo) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
    font-family: 'Segoe UI', sans-serif;
    user-select: none;
    list-style: none;
    margin: 0;
}


.filter-tab {
    display: inline-block;
    vertical-align: middle;
    padding: 8px 16px;
    margin: 5px 5px;
    border-radius: 15px;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    color: #3c4043;
    border: none;
    transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.1s ease, box-shadow 0.25s ease;
    user-select: none;
    white-space: nowrap;
    line-height: 1.4;
}

.filter-tab:not(.active):hover {
    background-color: rgba(0, 0, 0, 0.03); /* Premium soft dark hover pill */
    color: #202124; /* Darker text on hover */
}

.filter-tab:active {
    transform: scale(0.95); /* Snappy tactile press-down feedback on click */
}

.filter-tab.active {
    background-color: #0f172a; /* Premium dark charcoal/black background */
    color: #ffffff; /* White text for high contrast */
    font-weight: 500; /* Matched to normal weight to prevent text jitter/blink */
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.35); /* Rich bottom-heavy shadow matching the slate-black active pill */
}


/* Inline Search Tab Styles */
.filter-search-container {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0 !important;
}

#filter-search-tab {
    overflow: visible !important;
    isolation: auto !important;
}

.filter-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 10px;
    color: rgb(0 0 0 / 50%);
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    transition: all 0.2s ease;
    height: 100%;
}

.filter-search-icon:hover {
    background-color: rgba(0, 0, 0, 0.03);
    color: #3c4043;
}

.filter-search-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.filter-search-box-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    height: 38px;
    width: 200px;
    margin: 0;
    padding: 0 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0px 0px 4px rgba(0, 0, 0, 0.05);
    animation: expandSearch 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes expandSearch {
    from { width: 0; opacity: 0; }
    to { width: 200px; opacity: 1; }
}

.filter-search-input {
    border: none;
    background: transparent;
    font-size: 13px;
    color: #000;
    outline: none;
    flex: 1; /* Occupies only remaining space to avoid overlapping the close button */
    min-width: 0;
    padding: 0;
}

.filter-search-close-btn {
    border: none;
    background-color: #7d202017;
    color: #6b2424;
    cursor: pointer;
    width: 18px;
    height: 18px;
    border-radius: 8px; /* 8px rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative; /* Forces button above other elements for 100% clickability */
    z-index: 5;
}

.filter-search-close-btn:hover {
    background-color: #b04b4b;
    color: #ffffff;
    transform: rotate(90deg); /* Playful rotating feedback */
}

.filter-search-icon.hidden,
.filter-search-box-inline.hidden {
    display: none !important;
}

/* Search line break - forces search row break on mobile and desktop as requested */
#filter-search-br {
    display: block;
    content: "";
    height: 12px;
}

/* Sections scroll config */
.section-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 80px; /* Consistent equal top gap below border-top */
    padding-bottom: 80px; /* Consistent equal bottom gap */
    border-top: 1px solid rgba(0, 0, 0, 0.04); /* Separate divider line above sections - matching hero section */
    border-bottom: none;
    scroll-margin-top: 65px;
}

.section-wrapper.hidden {
    display: none !important;
}

.section-info {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px; /* Reduced gap to keep icon and title close */
    row-gap: 12px;
    align-items: center;
    margin-bottom: 35px;
    text-align: left; /* Explicitly left-aligned */
}

/* Section headers icon box positioned BEFORE name (natural flow) */
.section-icon-box {
    grid-row: 1;
    grid-column: 1;
    width: 44px; /* Slightly larger premium box size */
    height: 44px; /* Slightly larger premium box size */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgb(236, 236, 236);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    padding: 7px;
    flex-shrink: 0;
}

.section-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-text-block {
    display: contents; /* Allows title and description to be direct grid items */
}

.section-info h2 {
    grid-row: 1;
    grid-column: 2;
    color: #434343; /* Standard soft charcoal color */
    font-family: 'Segoe UI', sans-serif;
    font-size: 26px;
    line-height: 32px;
    font-weight: 500;
    margin: 0;
}

.section-info p {
    grid-row: 2;
    grid-column: 1 / -1; /* Spans full width, starting from leftmost start of description */
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #666666;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 0;
    margin-bottom: 0;
}

/* Mobile responsive scaling for section headers */
@media (max-width: 600px) {
    .section-info {
        column-gap: 10px;
        row-gap: 8px;
        margin-bottom: 24px;
    }
    .section-icon-box {
        width: 36px;
        height: 36px;
        padding: 5px;
        border-radius: 6px;
    }
    .section-info h2 {
        font-size: 22px;
        line-height: 28px;
    }
    .section-info p {
        font-size: 14px;
        line-height: 20px;
        margin-top: 8px;
    }
}

/* Left-aligned clean app grid structure */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 296px);
    gap: 20px;
    justify-content: flex-start;
    width: 100%;
}

.app-card-container {
    width: 296px;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    animation: fadeIn 0.4s ease forwards;
}

.app-card-container.hidden {
    display: none !important;
}

/* App Card style - completely flat, no hover jump and no shadow changes */
.app-card {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
    background-color: var(--bg-card);
    transition: none; /* Disables hover movements and animations */
}

/* Inactive Card visual styling (e.g. Google Drive, WhatsApp Web) */
.app-card.inactive {
    background-color: rgb(255 255 255 / 50%) !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
    box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px;
}

/* No hover translation or shadow changes */
.app-card:hover {
    transform: none;
    box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px;
    border-color: rgba(0,0,0,0.02);
}

.app-card-header {
    min-height: 80px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px; /* Symmetrical equal gaps on all sides and between items */
}

/* Circle icons wrapper */
.app-icon-wrapper {
    display: inline-block;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    flex-shrink: 0;
}

.app-icon-circle {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    z-index: 1;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 0px 3px rgb(203 203 203), 0 1px 2px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

.app-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-card-title {
    padding: 0; /* Rely on gap: 24px for equal spacing */
    padding-right: 20px; /* Added right gap for typography breathing room */
    line-height: 1.3;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 22px;
    color: #000;
    white-space: normal; /* Allows text to wrap to next line instead of ellipsis */
    word-break: break-word;
    text-align: left;
}

/* Badges right-aligned with top divider line */
.app-card-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end; /* Align labels from the right side */
    padding: 20px 24px;
    margin: 0;
    gap: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.04); /* Light line above labels */
}

/* Categorized labels pill details upgraded */
.app-card-badge {
    font-size: 12px;
    line-height: 20px;
    color: #6b6b6b;
    font-family: 'Segoe UI', sans-serif;
    padding: 3px 10px;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: none;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
    background-color: #ffffff;
    border: none;
    white-space: nowrap;
    display: inline-block;
}

/* App description container alignments
   - Spacing is 24px on all 4 sides to match left/right gap
   - Top and bottom dividers are uniform and light
*/
.app-card-desc-container {
    padding: 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns description to the top-left */
    justify-content: flex-start;
}

.app-card-description {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 20px;
    min-height: 80px; /* Sized to fit at least 4 lines of 20px line-height description content */
    color: #606060;
    margin: 0;
    text-align: left; /* Always top-left start, never centered */
    align-self: flex-start;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* webkit-line-clamp is applied dynamically by JavaScript based on available container height */
}

.app-card-actions {
    padding: 24px;
    gap: 10px;
    display: flex;
    align-items: center;
    min-height: 52px;
    margin-top: auto;
}

/* Sleek solid install button style aligned with charcoal black */
.app-btn-install {
    position: relative; /* For ripple positioning */
    overflow: hidden; /* For ripple containment */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: auto;
    height: 36px;
    padding: 1px 16px 0 16px;
    background-color: rgb(42 42 42);
    color: white;
    border: none;
    border-radius: 8px; /* 8px rounded corners */
    font-family: Roboto, sans-serif;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none;
    transition: background-color 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 0.1s ease;
}

.app-btn-install:hover {
    background-color: rgb(10 10 10);
    box-shadow: none;
}

.app-btn-install:active {
    background-color: #000000;
    transform: scale(0.95); /* Snappy tactile click feedback */
    box-shadow: none;
}

/* View Details aligned side by side with Install button (no left gap) */
.app-btn-details {
    position: relative; /* For ripple positioning */
    overflow: hidden; /* For ripple containment */
    height: 36px;
    padding: 1px 16px 0 16px;
    background-color: transparent;
    color: #444444; /* Match install button theme */
    border: 1px solid rgb(228 228 228);
    border-radius: 8px; /* 8px rounded corners */
    font-family: Roboto, sans-serif;
    font-size: 14px;
    letter-spacing: 0.25px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 280ms cubic-bezier(0.4, 0, 0.2, 1), border-color 280ms ease, color 280ms ease, transform 0.1s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.app-btn-details:hover {
    background-color: rgba(0, 0, 0, 0.02); /* rgb(0 0 0 / 2%) light black background */
    border-color: rgb(218 218 218);
    box-shadow: none;
}

.app-btn-details:active {
    background-color: rgb(0 0 0 / 2.5%);
    border: 1px solid rgb(196 196 196);
    transform: scale(0.95); /* Snappy tactile click feedback */
    box-shadow: none;
}

/* Button Ripple Effect */
.ripple {
    position: absolute;
    background: rgba(11, 87, 208, 0.12); /* Default theme blue */
    border-radius: 50%;
    transform: scale(0);
    opacity: 1;
    transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.ripple.active {
    transform: scale(1);
}

.ripple.fade-out {
    opacity: 0;
}

/* Custom ripple colors matching each button's background/hover theme */
.app-btn-install .ripple,
.support-channel-btn .ripple,
.explore-search-btn-text .ripple,
.support-form-submit-btn .ripple,
.filter-tab.active .ripple {
    background: rgba(255, 255, 255, 0.15); /* Premium soft white/grey visible glow */
}

.search-close-btn .ripple,
.hamburger-btn .ripple,
.drawer-close-btn .ripple,
.filter-tab:not(.active) .ripple {
    background: rgba(0, 0, 0, 0.05); /* Soft grey/dark ripple on close/drawer/inactive tabs */
}

.dropdown-link .ripple,
.drawer-link .ripple {
    background: rgba(0, 0, 0, 0.05); /* Soft grey ripple */
}

.app-btn-details .ripple {
    background: rgba(0, 0, 0, 0.05); /* Premium light black/grey ripple */
}

/* Enable relative positioning and overflow containment for ripple effect on all interactive items */
.explore-search-btn-text,
.search-close-btn,
.hamburger-btn,
.drawer-close-btn,
.support-form-submit-btn,
.dropdown-link,
.drawer-group-links li a,
.drawer-links a,
.footer-links-row a,
.nav-links a,
.filter-tab,
.app-btn-install,
.app-btn-details {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
}

.app-btn-details svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    margin-left: 5px;
    flex-shrink: 0;
}

/* Show More (All Apps) Dashboard Card style */
/* Show More (All Apps) Button styles */
.show-more-btn-outer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 35px;
}

.view-all-integrations-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 2px 20px 0 28px;
    background-color: #ffffff;
    color: #3c4043;
    border: 1px solid #00000000;
    border-radius: 25px;
    font-family: Roboto, sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    cursor: pointer;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), background-color 200ms ease, border-color 200ms ease, border-radius 300ms cubic-bezier(0.34, 1.56, 0.64, 1), filter 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    gap: 12px;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.view-all-integrations-btn:hover {
    transform: scale(1.15); /* Symmetrical 4-side scaling from center */
    color: #1a1a1a;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
    border-radius: 20px;
}

.view-all-integrations-btn:active {
    transform: scale(1);
}

.view-all-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f3f4;
    color: #5f6368;
    font-size: 11.5px;
    font-weight: 600;
    padding: 2.5px 8px 2px;
    border-radius: 10px;
    line-height: 16px;
    transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.view-all-integrations-btn:hover .view-all-counter {
    background-color: #444444;
    color: #ffffff;
}

.view-all-arrow {
    width: 20px;
    height: 20px;
    fill: #5f6368;
    transition: transform 200ms ease, fill 200ms ease;
}

.view-all-integrations-btn:hover .view-all-arrow {
    transform: translateY(0px);
    fill: #1a1a1a;
}

.show-more-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* View More Container resets */
.view-more-container {
    display: none !important;
}

/* Support Section - Redesigned matching other section wrappers */
.support-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 2-column layout for Support channels stack & Contact form card */
.support-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

.support-channels-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 992px) {
    .support-grid-layout {
        grid-template-columns: 5fr 7fr;
        align-items: stretch;
    }
    .support-channels-stack {
        height: 100%;
    }
    .support-channels-stack .support-channel-card {
        flex: 1 1 0%;
    }
    .contact-form-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .contact-form-card .support-contact-form {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 1.25rem;
    }
    .contact-form-card .support-contact-form .support-form-group:nth-of-type(3) {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .contact-form-card .support-contact-form .support-textarea {
        flex-grow: 1;
        min-height: 120px;
    }
}

/* Additional support cards grid below the first row */
.support-additional-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin-top: 24px;
}

@media (min-width: 768px) {
    .support-additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Odd number of additional cards: the last card spans full width (100%) */
    .support-additional-grid .support-channel-card:last-child:nth-child(odd) {
        grid-column: span 2;
    }
}

.support-progress-flow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 2rem;
    width: 100%;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: #5f6368;
}

.progress-step.active {
    color: #1a73e8; /* Blue active label */
    font-weight: 600;
}

.progress-step .step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #5f6368;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.progress-step.active .step-num {
    background-color: #1a73e8;
    border-color: #1a73e8;
    color: #ffffff;
}

.progress-line {
    height: 2px;
    background-color: #cbd5e1;
    flex-grow: 1;
    max-width: 60px;
}

/* Form Container Card */
.support-form-side {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
}

.support-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .form-row-two-col {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.support-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.support-form-label {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    margin-top: 0.5rem;
}

.support-input {
    width: 100%;
    height: 42px;
    border: 1px solid rgb(0 0 0 / 15%);
    border-radius: 6px;
    padding: 0 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #ffffff;
    color: #202124;
    font-family: var(--font-body);
    font-size: 14.5px;
}

.support-input:focus {
    box-shadow: 0 0 0 3px rgb(0 0 0 / 5%);
}

/* Phone input flag select dropdown styling */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #dadce0;
    border-radius: 6px;
    background-color: #ffffff;
    overflow: hidden;
    height: 42px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-input-wrapper:focus-within {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.12);
}

.phone-input-wrapper .phone-input-field {
    border: none !important;
    height: 100% !important;
    padding: 0 12px !important;
    box-shadow: none !important;
    flex-grow: 1;
}

.country-flag-select {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
    background-color: #f8f9fa;
    border-right: 1px solid #dadce0;
    height: 100%;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
}

.country-flag-select:hover {
    background-color: #f1f3f4;
}

.flag-icon {
    font-size: 16px;
}

.country-code-text {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.dropdown-arrow-small {
    color: #5f6368;
}

/* Professional solid blue Submit button */
.support-form-submit-btn {
    align-self: flex-end;
    background-color: #1f1f1f;
    color: #ffffff;
    border: 2px solid transparent;
    border-radius: 20px;
    height: 48px;
    padding: 1px 2rem 0px;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, box-shadow 0.2s, transform 0.1s;
    margin: 1rem 0;
}

.support-form-submit-btn:hover {
    background-color: #0b0b0b;
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.35); /* Bottom-heavy shadow on hover */
}

.support-form-submit-btn:focus {
    outline: none;
}

.support-form-submit-btn:active {
    outline: 3px solid #1f1f1f;
    outline-offset: 3px;
    border-color: transparent;
    background-color: #0b0b0b;
    box-shadow: none;
    transform: scale(0.95); /* Snappy scale down click feedback matching filter tabs */
}

.support-success-message {
    padding: 2rem 1rem;
    text-align: center;
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeIn 0.35s ease forwards;
}

.support-success-message svg {
    width: 48px;
    height: 48px;
    fill: #1c3d5a;
}

.support-success-message h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #0f172a;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    margin-top: 100px;
    margin-bottom: 80px;
    scroll-margin-top: 164px;
    width: 100%;
}

.faq-main-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 3rem;
    text-align: left;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}

@media (min-width: 968px) {
    .faq-grid {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

/* Accordion list items styles */
.faq-accordion-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #cbd5e1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: #202124;
    transition: color 0.2s ease;
    gap: 1.5rem;
}

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

.faq-chevron {
    color: var(--primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5f6368;
    padding-bottom: 1.5rem;
    margin: 0;
}

/* FAQ Sidebar styling (Explore Learning Centre & Get Admin Help) */
.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-help-card {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 2.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 0.75rem;
}

.faq-card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #5f6368;
    margin-bottom: 1.5rem;
}

/* Hollow Blue Button design */
.btn-hollow-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 1.5rem;
    border: 1.5px solid #dadce0;
    border-radius: 20px;
    color: var(--primary);
    background-color: transparent;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.1s;
}

.btn-hollow-blue:hover {
    background-color: rgba(11, 87, 208, 0.06);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-hollow-blue:active {
    transform: scale(0.98);
    box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.15);
}

/* Footer Section - Symmetrical Full Viewport Width Divider */
footer {
    padding: 3rem 0;
    position: relative;
}

/* Full HTML Width Divider positioned absolute at top of footer */
.footer-divider-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw; /* Spans full body width bypassing container padding */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12px;
    overflow: visible;
}

/* Vertical footer links row and copyright alignment centering with small gap */
.footer-content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px; /* Increased gap slightly for vertical alignment spacing */
    padding-top: 1.5rem;
}

.footer-links-row {
    display: flex;
    font-family: var(--font-body);
    font-weight: 600;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px 20px;
    flex-wrap: wrap;
    margin: 0; /* Clear margins */
}

.copyright {
    color: var(--text-muted);
    font-size: 11px; /* Smaller font size */
    font-family: 'Comfortaa', var(--font-heading); /* Nice custom font style */
    margin: 0;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: lowercase; /* Clean lowercase © encodingz copyright */
}

/* Skeleton Loading Shimmer Utility */
.skeleton-platform-card,
.skeleton-tab,
.skeleton-app-card,
.skeleton-support-bubble,
.skeleton-footer-link {
    background: linear-gradient(90deg, #f1f5fc 25%, #e2e8f0 50%, #f1f5fc 75%);
    background-size: 200% 100%;
    animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-platform-card {
    height: 220px;
    border-radius: 1rem;
}

.skeleton-tab {
    width: 100px;
    height: 38px;
    border-radius: 2rem;
}

.skeleton-app-card {
    width: 296px;
    height: 340px;
    border-radius: 8px;
}

.skeleton-support-bubble {
    width: 100%;
    height: 56px;
    border-radius: 4px;
}

.skeleton-footer-link {
    width: 80px;
    height: 20px;
    border-radius: 4px;
}

/* No Results State */
.no-results {
    text-align: center;
    padding: 1rem 2rem;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    color: #0f172a;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%; /* Full width */
    margin: 0 auto 5rem auto;
    font-family: var(--font-body);
}

.no-results-icon-wrapper {
    display: none !important;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #8000000a; /* Soft translucent maroon/red bg */
    color: #59000054; /* Translucent maroon/red color for search icon */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: none; /* Removed shadow */
}

.no-results svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.no-results-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-heading);
}

.no-results-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    max-width: 400px;
}

.footer-thick-divider {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    margin: 1.5rem 0 1.5rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive configurations */
@media (max-width: 968px) {
    /* Support text hide and label display for header icons */
    .support-text-label {
        display: none;
    }
    .support-icon-header {
        display: inline-block !important;
    }
    .hero-text-side {
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }
    .hero-text-side .brand-intro {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 850px) {
    .nav-links {
        display: none;
    }
    .hamburger-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .support-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .support-form-side {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 580px) {
    .app-grid {
        grid-template-columns: 1fr;
        justify-content: center;
    }
    .app-card-container {
        width: 100%;
        max-width: 100%; /* Full container width on mobiles */
        margin: 0;
    }
}

/* ----------------------------------------------------
   MIGRATE & INTEGRATE SECTION STYLING
---------------------------------------------------- */
.migrate-section {
    padding: 80px 0;
    margin: 40px 0 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.migrate-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 968px) {
    .migrate-row {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.migrate-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.migrate-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: #202124;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.migrate-desc {
    font-size: 15px;
    line-height: 24px;
    color: var(--text-body);
    margin-bottom: 2rem;
}

/* Custom Dropdown Button Look matching image 1 */
.migrate-dropdown-wrapper {
    position: relative;
    display: inline-block;
}
.migrate-dropdown-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    padding: 0; /* Clear padding to align children and separator */
    border: 1.5px solid #dadce0; /* Hollow grey border */
    border-radius: 20px; /* Rounded pill */
    background-color: transparent;
    color: var(--primary); /* Blue text */
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.migrate-dropdown-btn:hover {
    background-color: rgba(11, 87, 208, 0.04); /* Soft hover fill */
    border-color: var(--primary);
}

.migrate-dropdown-btn:active {
    transform: scale(0.98);
}

.migrate-dropdown-btn span {
    padding: 0 16px 0 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

.migrate-dropdown-arrow {
    border-left: 1.5px solid #dadce0; /* Divider line separating text and arrow */
    padding: 0 16px 0 12px;
    height: 100%;
    width: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.migrate-dropdown-wrapper.active .migrate-dropdown-btn {
    border-color: var(--primary); /* Highlighted outer border when open */
    background-color: rgba(11, 87, 208, 0.06);
}

.migrate-dropdown-wrapper.active .migrate-dropdown-arrow {
    transform: rotate(180deg);
    border-left-color: var(--primary); /* Match highlight color */
}

/* Dropdown list popup styles */
.migrate-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    list-style: none;
    padding: 6px 0;
    margin: 0;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.migrate-dropdown-wrapper.active .migrate-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.migrate-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #3c4043;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Dropdown items hover style pointing in image 1 */
.migrate-dropdown-item:hover {
    background-color: rgba(11, 87, 208, 0.05); /* Option hover bg */
    color: var(--primary); /* Option hover text color */
}

.migrate-dropdown-item .item-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #cbd5e1;
    transition: background-color 0.2s ease;
}

.migrate-dropdown-item:hover .item-circle {
    background-color: var(--primary);
}

/* Right-side security visual shield styling */
.migrate-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 320px;
    width: 100%;
}

.shield-graphic-container {
    position: relative;
    width: 260px;
    height: 260px;
}

.shield-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 190px;
    background-color: #e8f0fe;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatCard1 6s ease-in-out infinite;
}

.shield-inner {
    width: 120px;
    height: 145px;
    background-color: #1a73e8;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.shield-keyhole {
    width: 44px;
    height: 44px;
    color: #ffffff;
}

.floating-bubble {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.bubble-mail {
    top: 20px;
    left: 10px;
    animation: floatCard2 5s ease-in-out infinite;
}

.bubble-cal {
    top: 40px;
    right: 15px;
    animation: floatCard1 5.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.bubble-user {
    bottom: 80px;
    right: 10px;
    animation: floatCard2 6s ease-in-out infinite;
    animation-delay: 1s;
}

.bubble-pdf {
    bottom: 50px;
    left: 20px;
    width: 145px;
    height: 38px;
    border-radius: 6px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: floatCard1 5.2s ease-in-out infinite;
    animation-delay: 1.5s;
    cursor: pointer;
}

.pdf-icon-badge {
    background-color: #d93025;
    color: #ffffff;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 3px;
    text-transform: uppercase;
}

.pdf-text-line {
    width: 60px;
    height: 6px;
    background-color: #e8eaed;
    border-radius: 3px;
}

/* PDF Tooltip pop up on hover */
.pdf-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background-color: #3c4043;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.bubble-pdf:hover .pdf-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ----------------------------------------------------
   REDESIGNED WORKSPACE FOOTER STYLING
---------------------------------------------------- */
.footer-workspace {
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding: 80px 0 40px 0;
    font-family: var(--font-body);
}

.footer-top-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

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

.social-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #3c4043;
    transition: color 0.2s ease;
}

.social-title:hover {
    color: #1a1a1a;
}

.social-divider {
    color: #cbd5e1;
}

.social-divider-pipe {
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #cbd5e1;
    margin: 0;
    align-self: center;
}

.footer-bottom-bullet {
    display: inline-block;
    color: #cbd5e1;
    font-size: 10px;
    margin: 0;
    user-select: none;
    line-height: 1;
    vertical-align: middle;
}

.social-icons a svg {
    display: block;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icons a {
    color: #5f6368;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.social-icons a:hover {
    color: #202124;
}

/* Site Search input in footer matching normal style */
.footer-search-box {
    display: flex;
    align-items: center;
    background-color: #f1f3f4; /* Off-white normal style bg */
    border: 1px solid transparent;
    border-radius: 8px;
    height: 38px;
    width: 100%;
    max-width: 280px;
    padding: 0 10px;
    transition: all 0.2s ease;
}

.footer-search-icon {
    color: #5f6368;
    margin-right: 8px;
}

.footer-search-box input {
    background: transparent;
    border: none;
    outline: none;
    font-size: 13px;
    color: #202124;
    width: 100%;
}

/* Focused style look from image 3: sharp 1px dark border */
.footer-search-box:focus-within {
    background-color: #ffffff;
    border-color: #000000; /* Sharp black border */
    box-shadow: none;
}

/* Footer columns grid layout */
.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    width: 100%;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    font-size: 13px;
    color: #5f6368;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col ul li a:hover {
    color: #1a1a1a;
    padding-left: 2px;
}

/* Footer Bottom Area - logo, quick links, region selector */
.footer-bottom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.footer-bottom-label {
    font-size: 12px;
    color: #202124;
    font-weight: 500;
    font-family: var(--font-heading);
    line-height: 1;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    line-height: 1;
}

.footer-bottom-links a {
    text-decoration: none;
    font-size: 12px;
    color: #5f6368;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-bottom-links a svg {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-bottom-links a:hover {
    color: #202124;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.2rem;
}

.footer-social-links {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.copyright {
    margin: 0;
    line-height: 1;
    font-size: 11px;
    color: #5f6368;
}

@media (max-width: 768px) {
    .footer-top-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-search-box {
        max-width: 100%;
    }
}

@media (max-width: 420px) {
    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.5rem;
    }
    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        justify-content: flex-start;
    }
    .footer-bottom-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        justify-content: flex-start;
    }
    .footer-bottom-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        justify-content: flex-start;
    }
    #footer-social-copyright-divider {
        display: inline-block !important;
    }
}

/* Support Textarea Form Field Style */
.support-textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid rgb(0 0 0 / 15%);
    border-radius: 6px;
    padding: 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #ffffff;
    color: #202124;
    font-family: var(--font-body);
    font-size: 14.5px;
    resize: vertical;
}

.support-textarea:focus {
    box-shadow: 0 0 0 3px rgb(0 0 0 / 5%);
}

/* Email Hover Copy Box Styles */
.support-email-wrapper {
    display: flex;
    gap: 8px;
    width: 100%;
    border: none;
    background: none;
    padding: 0;
    box-shadow: none;
    cursor: default;
}

.support-email-box {
    width: fit-content;
    border: 1px solid rgb(0 0 0 / 15%);
    border-radius: 8px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    font-size: 13px;
    color: #3c4043;
    background-color: rgb(0 0 0 / 2%);
    font-family: Roboto, sans-serif;
    font-weight: 500;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: border-color 0.2s, background-color 0.2s;
    cursor: default;
    user-select: text;
}

.support-email-wrapper .support-channel-btn {
    min-width: 80px;
    flex-shrink: 0;
}

/* Support Bubbles/Content Info Panel styling */
.support-bubbles-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    width: 100%;
    margin-top: 1.5rem;
}

/* Premium Support Channel Cards */
.support-channel-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: none;
    border: none;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
    transition: box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    box-sizing: border-box;
}

.support-channel-card:hover {
    box-shadow: none;
}

.support-channel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgb(236, 236, 236);
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 1.15rem;
}

.support-channel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid rgb(236, 236, 236);
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Google Meet icon inherits standard border/background */

.support-channel-icon img,
.support-channel-icon svg {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
}

.support-channel-icon.gmeet-icon img,
.support-channel-icon.gmeet-icon svg {
    width: 18px;
    height: 18px;
}

/* Matching Brand/Category Colors for Icons */
.support-channel-icon.email-icon {
    color: #ea4335;
}

.support-channel-icon.phone-icon {
    color: #1a73e8;
}

.support-channel-icon.whatsapp-icon {
    color: #25d366;
}

.support-channel-icon.chat-icon {
    color: #e8710a;
}

.support-channel-icon.social-icon {
    color: #0a66c2;
}

.support-channel-icon.faq-icon {
    color: #673ab7;
}

.support-channel-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-title);
}

.support-channel-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.support-channel-action {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.support-channel-btn {
    position: relative; /* For ripple positioning */
    overflow: hidden; /* For ripple containment */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    color: white;
    border-radius: 8px;
    height: 36px;
    padding: 0 16px;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.25px;
    background-color: rgb(42 42 42);
    transition: background-color 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 0.1s ease;
    cursor: pointer;
    box-sizing: border-box;
    box-shadow: none;
}

.support-channel-btn:hover {
    background-color: rgb(10 10 10);
    color: white;
    border-color: transparent;
    box-shadow: none;
    transform: translateY(0);
}

.support-channel-btn:active {
    background-color: #000000;
    transform: scale(0.95);
    box-shadow: none;
}

.support-channel-btn:disabled,
.support-channel-btn.copied-success {
    pointer-events: none !important;
    cursor: default !important;
    transform: none !important;
    box-shadow: none !important;
}

.support-channel-btn:disabled:hover,
.support-channel-btn:disabled:active,
.support-channel-btn.copied-success:hover,
.support-channel-btn.copied-success:active {
    transform: none !important;
    background-color: rgb(246 255 249) !important;
    color: rgb(19, 115, 51) !important;
    border: 1px solid rgb(19, 115, 51) !important;
    box-shadow: none !important;
}

.support-badge-wrapper {
    margin-bottom: 0.75rem;
}

.support-badge {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}

/* Hide Google's default fixed scheduling button */
button.qxCTlb,
.qxCTlb,
[class*="calendar-scheduling-button"],
div[style*="position: fixed"][style*="bottom"] button {
    display: none !important;
}

/* Form Submit Loading Spinner Animation */
@keyframes form-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.support-form-submit-btn:disabled {
    opacity: 0.85 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}
