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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
    background: #f5f5f7;
    color: #1d1d1f;
    line-height: 1.47059;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
nav.top-nav {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav.top-nav .nav-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
}

/* Navigation Container (Alternative naming) */
.nav-container {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.top-nav .logo {
    font-size: 21px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
}

/* Navigation Logo (Alternative naming) */
.nav-logo {
    font-weight: 600;
    font-size: 19px;
    color: #1d1d1f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}


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

nav.top-nav .nav-links a {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s;
}

nav.top-nav .nav-links a:hover {
    opacity: 1;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    color: #1d1d1f;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-family: inherit;
}

.nav-item-dropdown:hover .nav-dropdown-btn {
    opacity: 1;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 8px 0;
    z-index: 1002;
    margin-top: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}

.nav-dropdown-content::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav-item-dropdown.active .nav-dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

@media (hover: hover) {
    .nav-item-dropdown:hover .nav-dropdown-content {
        display: block;
        animation: fadeIn 0.2s ease-out;
    }
}

.nav-dropdown-content a {
    color: #1d1d1f;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 13px !important;
    text-align: left;
    white-space: nowrap;
    opacity: 1 !important;
}

.nav-dropdown-content a:hover {
    background-color: #f5f5f7;
    color: #0071e3;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 8px;
}

.language-toggle button {
    background: #f5f5f7;
    color: #1d1d1f;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 980px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.language-toggle button:hover {
    opacity: 1;
    background: #e5e5e7;
    transform: scale(1.05);
}

.language-toggle button.active {
    background: #1d1d1f;
    color: #fff;
    opacity: 1;
}

/* Language Toggle Alternative (lang-btn) */
.lang-btn {
    background: #f5f5f7;
    border: none;
    font-size: 11px;
    font-weight: 500;
    color: #1d1d1f;
    opacity: 0.7;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 980px;
    transition: all 0.2s;
    text-transform: uppercase;
}

.lang-btn:hover {
    opacity: 1;
    background: #e5e5e7;
    transform: scale(1.05);
}

.lang-btn.active {
    opacity: 1;
    font-weight: 600;
    background: #1d1d1f;
    color: #fff;
}

/* Desktop Dropdown Menu (Alternative naming) */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: #1d1d1f;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-dropdown-toggle:hover {
    opacity: 1;
}

.dropdown-arrow {
    transition: transform 0.3s;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #1d1d1f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.04);
}

/* Hide mobile-only items on desktop */
.mobile-only {
    display: none;
}


/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background: #1d1d1f;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    nav.top-nav .nav-links {
        position: fixed;
        top: 44px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        padding: 20px 22px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    nav.top-nav .nav-links.active {
        max-height: 1000px;
        opacity: 1;
    }

    nav.top-nav .nav-links a {
        padding: 12px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    nav.top-nav .nav-links a:last-child {
        border-bottom: none;
    }

    .language-toggle {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        justify-content: center;
    }

    /* Mobile Dropdown */
    .nav-item-dropdown {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-dropdown-btn {
        width: 100%;
        padding: 12px 0;
        font-size: 14px;
        justify-content: center;
        gap: 8px;
    }

    .nav-dropdown-content {
        position: static;
        transform: none;
        width: 100%;
        min-width: auto;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin: 0;
        display: none;
        text-align: center;
    }

    /* Show on tap (hover state on mobile) */
    .nav-item-dropdown:hover .nav-dropdown-content,
    .nav-item-dropdown:active .nav-dropdown-content,
    .nav-item-dropdown.active .nav-dropdown-content {
        display: block;
        animation: none;
    }

    .nav-dropdown-content::before,
    .nav-dropdown-content::after {
        display: none;
    }

    .nav-dropdown-content a {
        padding: 10px 0;
        color: #666;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: center;
    }

    .nav-dropdown-content a:last-child {
        border-bottom: none;
    }

    /* Mobile-only items visibility */
    .mobile-only {
        display: block !important;
    }

    /* Hide nav-dropdown on mobile */
    .nav-dropdown {
        display: none;
    }
}

/* Scroll offset for anchor links (to avoid being hidden by sticky nav) */
section[id],
.section-headline[id],
.container[id] {
    scroll-margin-top: 60px;
}

/* Larger offset for app cards to show logo properly */
.app-card[id] {
    scroll-margin-top: 55px;
}

/* Mobile: Increase scroll offset for better visibility and spacing */
@media (max-width: 768px) {

    section[id],
    .section-headline[id],
    .container[id] {
        scroll-margin-top: 60px;
    }

    /* Even larger offset for app cards on mobile */
    .app-card[id] {
        scroll-margin-top: 60px;
    }
}

/* Hero Section */
.hero {
    background: #000;
    color: #f5f5f7;
    text-align: center;
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(29, 29, 31, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.07143;
    letter-spacing: -0.005em;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.hero .subheadline {
    font-size: 28px;
    line-height: 1.14286;
    font-weight: 400;
    color: #a1a1a6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero .description {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.hero .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.hero .cta-button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}

.hero .cta-buttons a {
    display: inline-block;
    padding: 12px 22px;
    font-size: 17px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s;
    white-space: nowrap;
}

.hero .cta-buttons .btn-primary {
    background: #0071e3;
    color: #fff;
}

.hero .cta-buttons .btn-primary:hover {
    background: #0077ed;
}

.hero .cta-buttons .btn-secondary {
    border: 1px solid #424245;
    color: #f5f5f7;
}

.hero .cta-buttons .btn-secondary:hover {
    background: #1d1d1f;
}

.hero .cta-buttons .btn-download-hero {
    background: transparent;
    color: #0071e3;
    border: 1px solid #0071e3;
}

.hero .cta-buttons .btn-download-hero:hover {
    background: rgba(0, 113, 227, 0.12);
}

/* Hero Content (Alternative naming) */
.hero-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
    position: relative;
    z-index: 2;
}

/* Hero Buttons (Alternative naming) */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

/* Generic Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 980px;
    font-size: 17px;
    line-height: 1.17648;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #0071e3;
    color: #fff;
}

.btn-primary:hover {
    background: #0077ed;
}

/* Features Section (QRBay style) */
.features {
    padding: 120px 0;
    background: #f5f5f7;
}

/* Bento Grid (QRBay style) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.bento-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bento-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.bento-icon {
    width: 64px;
    height: 64px;
    background: #f5f5f7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
}

.bento-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 17px;
    color: #86868b;
    line-height: 1.5;
}

/* Supported Formats Section */
.formats {
    padding: 120px 0;
    background: #fff;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.format-item {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    font-family: monospace;
    font-size: 14px;
    color: #1d1d1f;
    transition: all 0.2s;
}

.format-item:hover {
    background: #e5e5e7;
    transform: translateY(-2px);
}

/* FAQ Section (QRBay style) */
.faq {
    padding: 120px 0;
    background: #f5f5f7;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 22px;
}


/* Container */
.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 80px 22px;
}

/* Section Headline */
.section-headline {
    text-align: center;
    margin-bottom: 60px;
}

.section-headline .eyebrow {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 600;
    color: #6e6e73;
    margin-bottom: 8px;
}

.section-headline h2 {
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -0.003em;
    color: #1d1d1f;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 50px 40px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    box-shadow: 2px 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.feature-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f7;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 28px;
    line-height: 1.14286;
    font-weight: 600;
    letter-spacing: 0.004em;
    color: #1d1d1f;
    margin-bottom: 16px;
    text-align: center;
}

.feature-card p {
    font-size: 17px;
    line-height: 1.47059;
    color: #6e6e73;
    text-align: center;
}

/* Hero Image */
.hero-image {
    text-align: center;
    margin: 60px 0;
}

.hero-image img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 2px 4px 24px rgba(0, 0, 0, 0.15);
}

/* App Showcase */
.app-showcase {
    background: #fff;
    border-radius: 18px;
    padding: 60px 40px;
    margin-bottom: 40px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
}

.app-showcase h2 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0em;
    color: #1d1d1f;
    margin-bottom: 40px;
    text-align: center;
}

.app-showcase .feature-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #d2d2d7;
}

.app-showcase .feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.app-showcase .feature-item h4 {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.app-showcase .feature-item p {
    font-size: 17px;
    line-height: 1.47059;
    color: #6e6e73;
}


/* App Grid */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.app-card {
    background: #fff;
    border-radius: 18px;
    padding: 50px 40px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-card:hover {
    box-shadow: 2px 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.app-card .app-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    margin: 0 auto 24px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-card h3 {
    font-size: 32px;
    line-height: 1.125;
    font-weight: 600;
    letter-spacing: 0.004em;
    color: #1d1d1f;
    margin-bottom: 8px;
    text-align: center;
}

.app-card .app-subtitle {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    color: #6e6e73;
    margin-bottom: 24px;
    text-align: center;
}

.app-card .features-list {
    list-style: none;
    margin-bottom: 30px;
}

.app-card .features-list li {
    font-size: 17px;
    line-height: 1.47059;
    color: #1d1d1f;
    padding: 10px 0;
    border-bottom: 1px solid #d2d2d7;
}

.app-card .features-list li:last-child {
    border-bottom: none;
}

.app-card .app-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.app-card .app-buttons a {
    flex: 1;
    padding: 12px 22px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s;
    min-width: 140px;
}

.app-card .btn-download {
    background: #0071e3;
    color: #fff;
    border: none;
}

.app-card .btn-download:hover {
    background: #0077ed;
    color: #fff;
}

.app-card .btn-learn-more {
    background: transparent;
    color: #0071e3;
    border: 1px solid #0071e3;
}

.app-card .btn-learn-more:hover {
    background: rgba(0, 113, 227, 0.08);
}

.app-card .testimonial {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 20px;
    font-size: 15px;
    line-height: 1.47059;
    color: #1d1d1f;
    font-style: italic;
}

.app-card .testimonial .author {
    margin-top: 10px;
    font-size: 14px;
    color: #6e6e73;
    font-style: normal;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    border-radius: 18px;
    padding: 50px 40px;
    margin-bottom: 40px;
}

.faq-section h2 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0em;
    color: #1d1d1f;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #d2d2d7;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.47059;
    color: #6e6e73;
}

/* FAQ Accordion Functionality */
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 19px;
    line-height: 1.42105;
    font-weight: 600;
    color: #1d1d1f;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #0066cc;
}

.faq-icon {
    font-size: 24px;
    color: #86868b;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer.open {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 17px;
    line-height: 1.47059;
    color: #6e6e73;
}

.faq-answer ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 12px;
}

.faq-answer ul li {
    margin-bottom: 8px;
}

.faq-answer a {
    color: #0066cc;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}


/* Footer */
footer {
    background: #f5f5f7;
    padding: 40px 22px;
    text-align: center;
    border-top: 1px solid #d2d2d7;
}

.social-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.social-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    min-width: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link-card:hover {
    background: #f5f5f7;
    border-color: #86868b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-link-card img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}

.social-link-card:hover img {
    transform: scale(1.1);
}

.social-link-card span {
    font-size: 12px;
    line-height: 1.33337;
    color: #1d1d1f;
    font-weight: 500;
}

footer p {
    font-size: 12px;
    line-height: 1.33337;
    color: #6e6e73;
}

footer a {
    color: #0066cc;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Footer Link Buttons */
.footer-link-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.42857;
    font-weight: 400;
    color: #1d1d1f !important;
    background: #fff;
    border: 1px solid #d2d2d7;
    border-radius: 980px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link-button:hover {
    background: #f5f5f7;
    border-color: #86868b;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 1068px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero .subheadline {
        font-size: 24px;
    }

    .section-headline h2 {
        font-size: 40px;
    }
}

@media (max-width: 734px) {
    nav.top-nav .nav-content {
        padding: 0 16px;
    }

    nav.top-nav .nav-links {
        gap: 20px;
    }

    .hero {
        padding: 50px 16px 70px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero .subheadline {
        font-size: 19px;
    }

    .hero .description {
        font-size: 17px;
    }

    .hero .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .hero .cta-button-group {
        width: 100%;
        max-width: 300px;
    }

    .hero .cta-buttons a {
        width: 100%;
    }

    .container {
        padding: 50px 16px;
    }

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

    .app-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .app-card {
        padding: 40px 30px;
    }

    .app-card h3 {
        font-size: 28px;
    }

    .app-card .app-buttons {
        flex-direction: column;
    }

    .app-card .app-buttons a {
        width: 100%;
    }

    .faq-section {
        padding: 40px 30px;
    }

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

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .feature-card h3 {
        font-size: 24px;
    }

    .app-showcase {
        padding: 40px 30px;
    }

    .app-showcase h2 {
        font-size: 32px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Privacy & Terms Pages Styling
   ============================================ */

/* Page Container */
.container {
    max-width: 730px;
    margin: 0 auto;
    padding: 60px 22px 80px;
}

/* Typography for Privacy/Terms Pages */
.container h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.07143;
    letter-spacing: -0.005em;
    color: #1d1d1f;
    margin-bottom: 20px;
    text-align: center;
}

.last-updated {
    text-align: center;
    font-size: 17px;
    color: #6e6e73;
    margin-bottom: 40px;
    font-style: italic;
}

.container h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.125;
    letter-spacing: 0.004em;
    color: #1d1d1f;
    margin: 40px 0 20px;
}

.container h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.16667;
    letter-spacing: 0.009em;
    color: #1d1d1f;
    margin: 30px 0 15px;
}

.container h4 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.21053;
    letter-spacing: 0.012em;
    color: #1d1d1f;
    margin: 25px 0 12px;
}

.container p {
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.container ul {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 20px;
}

.container ul li {
    font-size: 17px;
    line-height: 1.47059;
    color: #1d1d1f;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.container ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0071e3;
    font-weight: 600;
}

.container ul li strong {
    font-weight: 600;
    color: #1d1d1f;
}

.container a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.container a:hover {
    color: #0077ed;
    text-decoration: underline;
}

/* Highlight Boxes */
.highlight {
    background-color: #f5f5f7;
    padding: 24px;
    border-left: 4px solid #0071e3;
    border-radius: 12px;
    margin: 30px 0;
}

.highlight p:last-child {
    margin-bottom: 0;
}

/* Warning Box */
.warning-box {
    background-color: #fff7ed;
    padding: 24px;
    border-left: 4px solid #f59e0b;
    border-radius: 12px;
    margin: 30px 0;
}

.warning-box p {
    color: #92400e;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

/* Success Box */
.success-box {
    background-color: #ecfdf5;
    padding: 24px;
    border-left: 4px solid #10b981;
    border-radius: 12px;
    margin: 30px 0;
}

.success-box p {
    color: #065f46;
}

.success-box p:last-child {
    margin-bottom: 0;
}

/* Definition List */
.definition-list {
    background-color: #f5f5f7;
    padding: 24px;
    border-radius: 12px;
    margin: 30px 0;
}

.definition-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.definition-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.definition-term {
    font-weight: 600;
    color: #0071e3;
}

/* Privacy/Terms Page Responsive */
@media (max-width: 768px) {
    .container {
        padding: 40px 22px 60px;
    }

    .container h1 {
        font-size: 40px;
    }

    .container h2 {
        font-size: 28px;
    }

    .container h3 {
        font-size: 21px;
    }

    .container h4 {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .container h1 {
        font-size: 32px;
    }

    .container h2 {
        font-size: 24px;
    }
}