/* ========================================
   Global Styles & Variables
   ======================================== */
:root {
    --primary-color: #3b9b93;
    --primary-dark: #2d7b75;
    --secondary-color: #64748b;
    --light-bg: #f0f4f8;
    --light-bg-2: #e8f0f5;
    --dark-text: #1e293b;
    --gray-text: #64748b;
    --border-color: #e2e8f0;
    --success-color: #22c55e;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white !important;
}

.headerlogo img {
    height: auto;
    width: 120%;
    max-width: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), #4fb3aa);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--gray-text) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color);
}

.btn-login {
    border-radius: 6px;
    padding: 0.5rem 1.5rem !important;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    color: white !important;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f0f9f8 0%, #e8f4f8 100%);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark-text);
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-description strong {
    color: var(--dark-text);
    font-weight: 600;
}

.hero-description em {
    font-style: italic;
    color: var(--secondary-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-download {
    background-color: var(--primary-color);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 155, 147, 0.3);
}

.btn-download:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 155, 147, 0.4);
}

.btn-how-works {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    color: var(--gray-text);
    background-color: white;
    transition: all 0.3s ease;
}

.btn-how-works:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #f0f9f8;
}

.hero-tagline {
    font-size: 14px;
    color: var(--gray-text);
    font-weight: 500;
}

.hero-tagline em {
    font-style: italic;
}

.hero-image {
    position: relative;
    padding: 20px;
}

/* ========================================
   Value Proposition Section
   ======================================== */
.value-section {
    padding: 80px 0;
    background-color: white;
}

.value-title {
    font-size: 38px;
    font-weight: 400;
    color: var(--gray-text);
    margin-bottom: 25px;
    line-height: 1.4;
}

.value-title .text-dark {
    font-weight: 600;
}

.value-description {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.value-description strong {
    color: var(--dark-text);
    font-weight: 700;
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    padding: 60px 0 80px;
    background-color: var(--light-bg);
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-card.feature-location {
    background: var(--primary-color);
    color: white;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-location .feature-icon {
    background-color: rgba(255, 255, 255, 0.25);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.feature-location .feature-title {
    color: white;
}

.feature-content {
    margin-top: 20px;
}

.reminder-item {
    display: flex;
    align-items: center;
    background-color: #f8fafc;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark-text);
    border: 1px solid var(--border-color);
}

.reminder-item i:first-child {
    margin-right: 10px;
    color: var(--gray-text);
}

.reminder-item .fa-chevron-right {
    color: var(--gray-text);
    font-size: 12px;
}

.note-preview {
    text-align: center;
}

.note-preview img {
    border: 2px solid var(--border-color);
}

.note-label {
    font-size: 14px;
    color: var(--gray-text);
    margin-top: 10px;
    font-weight: 500;
}

.location-item {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 16px;
    border-radius: 10px;
}

.location-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
}

.location-reminder {
    font-size: 14px;
    color: var(--dark-text);
    margin-top: 4px;
}

.location-when {
    font-size: 12px;
    margin-top: 2px;
}

/* ========================================
   Differentiation Section
   ======================================== */
.differentiation-section {
    padding: 70px 0;
    background-color: white;
}

.diff-intro {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.diff-intro strong {
    color: var(--dark-text);
    font-weight: 700;
}

.diff-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: var(--dark-text);
    font-weight: 500;
}

.diff-item i {
    color: var(--success-color);
    font-size: 22px;
}

.diff-tagline {
    font-size: 18px;
    color: var(--gray-text);
}

.diff-tagline strong {
    color: var(--dark-text);
    font-weight: 700;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #e8f0f5 0%, #f0f6fa 100%);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 45px 35px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-card-free {
    background: linear-gradient(135deg, #e8f5f4 0%, #f0faf9 100%);
    border: 1px solid rgba(59, 155, 147, 0.1);
}

.info-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}

.info-title-teal {
    color: var(--primary-color);
}

.info-subtitle {
    font-size: 17px;
    color: var(--gray-text);
    margin-bottom: 30px;
    font-weight: 500;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    font-size: 17px;
    color: #475569;
    font-weight: 500;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.info-icon-circle {
    border-radius: 50%;
}

.info-icon-square {
    border-radius: 8px;
}

.info-icon i {
    color: white;
}

.free-card-decoration {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, rgba(59, 155, 147, 0.15), rgba(59, 155, 147, 0.05));
    border-radius: 4px;
}

/* ========================================
   Download Section
   ======================================== */
.download-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #f0f6fa 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.download-text {
    font-size: 17px;
    color: #64748b;
    font-weight: 600;
    margin: 0;
}

.app-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.badge-link img {
    transition: transform 0.3s ease;
    height: 50px;
    width: auto;
}

.badge-link:hover {
    transform: translateY(-2px);
}

.badge-link:hover img {
    filter: brightness(1.05);
}

.version-badge {
    font-size: 15px;
    color: #94a3b8;
    font-weight: 500;
    padding: 8px 16px;
    background-color: rgba(148, 163, 184, 0.1);
    border-radius: 6px;
    margin-left: 10px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0 30px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-footer {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.logo-text-footer {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.footer-copyright i {
    font-size: 16px;
}

.footer-links {
    text-align: center;
    padding: 15px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.4);
    padding: 0 8px;
    font-weight: 300;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 300;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-section {
        padding: 60px 0 70px;
    }

    .hero-image {
        margin-top: 50px;
    }

    .value-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 36px;
    }

    .info-card {
        margin-bottom: 20px;
    }

    .info-title {
        font-size: 24px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-download,
    .btn-how-works {
        width: 100%;
        justify-content: center;
    }

    .value-title {
        font-size: 28px;
    }

    .value-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .info-card {
        padding: 35px 25px;
    }

    .info-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .info-list li {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .diff-item {
        margin-bottom: 15px;
    }

    .app-badges {
        flex-direction: column;
    }

    .download-text {
        font-size: 16px;
        margin-bottom: 20px !important;
    }

    .version-badge {
        margin-left: 0;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .footer-links {
        text-align: left;
        padding: 10px 0;
    }

    .footer-links a {
        font-size: 14px;
        padding: 0 6px;
    }

    .footer-links .separator {
        padding: 0 6px;
    }

    .footer-bottom {
        text-align: left;
    }
}

/* ========================================
   Inner Page Shared Styles
   ======================================== */

/* Page Hero */
.page-hero-section {
    padding: 90px 0 80px;
    background: linear-gradient(135deg, #e8f5f4 0%, #f0faf9 40%, #e8f0f5 100%);
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 155, 147, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(59, 155, 147, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-section--small {
    padding: 70px 0 60px;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(59, 155, 147, 0.12);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 155, 147, 0.2);
    letter-spacing: 0.3px;
}

.page-hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark-text);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.text-primary-teal {
    color: var(--primary-color);
}

.page-hero-desc {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-meta {
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-text);
}

/* Shared Section Helpers */
.section-badge-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.about-section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--dark-text);
    font-weight: 600;
}

/* Page CTA Section */
.page-cta-section {
    padding: 60px 0 80px;
    background-color: var(--light-bg);
}

.page-cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 24px;
    padding: 50px 55px;
    color: white;
}

.page-cta-title {
    font-size: 34px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-cta-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ========================================
   About Page Styles
   ======================================== */
.about-mission-section {
    padding: 90px 0 80px;
    background-color: white;
}

/* Stats Row */
.about-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
    line-height: 1;
}

.about-stat-label {
    font-size: 13px;
    color: var(--gray-text);
    font-weight: 500;
    margin-top: 6px;
}

/* Visual Grid */
.about-mission-visual {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-center {
    position: absolute;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(59, 155, 147, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 2;
}

.about-visual-center img {
    width: 60px;
    height: auto;
}

.about-visual-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    border: 1px solid rgba(59, 155, 147, 0.15);
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.about-visual-card i {
    color: var(--primary-color);
    font-size: 18px;
}

.about-visual-card:hover {
    transform: scale(1.04);
}

.about-visual-card-1 {
    top: 20px;
    left: 0;
}

.about-visual-card-2 {
    top: 20px;
    right: 0;
}

.about-visual-card-3 {
    bottom: 20px;
    left: 0;
}

.about-visual-card-4 {
    bottom: 20px;
    right: 0;
}

/* About Story Section */
.about-story-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f4f8 0%, #e8f0f5 100%);
}

.story-card {
    background: white;
    border-radius: 18px;
    padding: 40px 32px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.story-card-featured {
    background: linear-gradient(135deg, var(--primary-color), #4fb3aa);
    color: white;
}

.story-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 155, 147, 0.12), rgba(59, 155, 147, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.story-icon-white {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.story-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 14px;
}

.story-card-featured .story-title {
    color: white;
}

.story-text {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0;
}

.story-card-featured .story-text {
    color: rgba(255, 255, 255, 0.88);
}

/* About Values Section */
.about-values-section {
    padding: 80px 0;
    background-color: white;
}

.value-item {
    text-align: center;
    padding: 36px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    background: white;
}

.value-item:hover {
    border-color: rgba(59, 155, 147, 0.3);
    box-shadow: 0 6px 24px rgba(59, 155, 147, 0.1);
    transform: translateY(-4px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 155, 147, 0.12), rgba(59, 155, 147, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin: 0 auto 20px;
}

.value-title-sm {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.value-desc {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Legal Pages (Privacy Policy, Terms)
   ======================================== */
.legal-content-section {
    padding: 60px 0 90px;
    background-color: #fafbfc;
}

/* Quick Summary Cards */
.legal-summary-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.legal-summary-card {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.legal-summary-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(59, 155, 147, 0.12), rgba(59, 155, 147, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
}

.legal-summary-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.legal-summary-text strong {
    font-size: 14px;
    color: var(--dark-text);
    font-weight: 600;
}

.legal-summary-text span {
    font-size: 12px;
    color: var(--gray-text);
}

/* Main Document */
.legal-doc {
    background: white;
    border-radius: 20px;
    padding: 50px 55px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-section {
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.legal-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
}

.legal-section p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-sub-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 20px 0 10px;
}

.legal-list {
    padding-left: 24px;
    margin-bottom: 14px;
}

.legal-list li {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-list li strong {
    color: var(--dark-text);
}

.legal-list li ul {
    margin-top: 8px;
    padding-left: 20px;
}

.legal-highlight-box {
    background: linear-gradient(135deg, #f0faf9 0%, #e8f5f4 100%);
    border: 1px solid rgba(59, 155, 147, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #334155;
}

.legal-highlight-item i {
    font-size: 16px;
    min-width: 20px;
}

.legal-contact-box {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.legal-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark-text);
    font-weight: 500;
}

.legal-contact-item i {
    color: var(--primary-color);
    font-size: 16px;
    min-width: 20px;
}

.legal-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 155, 147, 0.4);
    transition: border-color 0.2s;
}

.legal-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-dark);
}

/* ========================================
   FAQ Page Styles
   ======================================== */
.faq-section {
    padding: 50px 0 90px;
    background-color: #fafbfc;
}

/* Tab Filters */
.faq-tabs-wrapper {
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.faq-tabs {
    display: flex;
    gap: 10px;
    background: white;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border-color);
    width: max-content;
    min-width: 100%;
}

.faq-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--gray-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.faq-tab:hover {
    background-color: var(--light-bg);
    color: var(--dark-text);
}

.faq-tab.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 3px 10px rgba(59, 155, 147, 0.3);
}

/* FAQ Categories */
.faq-category {
    display: none;
    margin-bottom: 36px;
}

.faq-category.active {
    display: block;
}

.faq-category-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border-color);
}

/* FAQ Items */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    user-select: none;
    transition: background-color 0.2s;
    gap: 12px;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question:not(.collapsed) {
    background-color: #f0faf9;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(59, 155, 147, 0.15);
}

.faq-arrow {
    font-size: 12px;
    color: var(--gray-text);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question:not(.collapsed) .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer-body {
    padding: 18px 22px;
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    background: #fafffe;
}

.faq-answer-body p {
    margin-bottom: 10px;
}

.faq-answer-body p:last-child,
.faq-answer-body ul:last-child {
    margin-bottom: 0;
}

.faq-answer-body ul {
    padding-left: 22px;
    margin-bottom: 10px;
}

.faq-answer-body ul li {
    margin-bottom: 6px;
}

/* FAQ Sidebar */
.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 80px;
}

.faq-sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-sidebar-contact {
    background: linear-gradient(135deg, var(--primary-color), #4fb3aa);
    border: none;
    text-align: center;
    color: white;
}

.faq-sidebar-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin: 0 auto 16px;
}

.faq-sidebar-contact h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.faq-sidebar-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
}

.btn-faq-contact {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-faq-contact:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    color: var(--primary-dark);
}

.faq-sidebar-tip h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.faq-sidebar-tip p {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}

.faq-sidebar-links h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 14px;
}

.faq-helpful-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-helpful-links li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.faq-helpful-links li a:hover {
    color: var(--primary-color);
}

.faq-helpful-links li a i {
    font-size: 10px;
    color: var(--primary-color);
}

/* ========================================
   Support Page Styles
   ======================================== */
.support-section {
    padding: 60px 0 90px;
    background-color: #fafbfc;
}

.support-section-heading {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: -0.3px;
}

/* Channel Cards */
.support-channel-card {
    background: white;
    border-radius: 18px;
    padding: 36px 28px;
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 155, 147, 0.25);
}

.support-channel-card-featured {
    background: linear-gradient(135deg, #f0faf9 0%, #e8f5f4 100%);
    border-color: rgba(59, 155, 147, 0.25);
}

.support-channel-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.support-channel-email {
    background: #fef3c7;
    color: #d97706;
}

.support-channel-chat {
    background: rgba(59, 155, 147, 0.12);
    color: var(--primary-color);
}

.support-channel-faq {
    background: #ede9fe;
    color: #7c3aed;
}

.support-channel-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.support-channel-desc {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 18px;
}

.support-channel-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 16px;
    transition: gap 0.2s;
}

.support-channel-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

.support-channel-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    background: var(--light-bg);
    color: var(--gray-text);
    padding: 4px 12px;
    border-radius: 30px;
}

.support-channel-badge-green {
    background: #dcfce7;
    color: #16a34a;
}

/* Topic Cards */
.support-topic-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border-radius: 14px;
    padding: 20px 22px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.support-topic-card:hover {
    border-color: rgba(59, 155, 147, 0.3);
    box-shadow: 0 4px 16px rgba(59, 155, 147, 0.1);
    transform: translateX(4px);
}

.support-topic-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(59, 155, 147, 0.12), rgba(59, 155, 147, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
}

.support-topic-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 4px;
}

.support-topic-text p {
    font-size: 13px;
    color: var(--gray-text);
    margin: 0;
}

.support-topic-arrow {
    margin-left: auto;
    font-size: 12px;
    color: var(--gray-text);
    transition: transform 0.2s;
}

.support-topic-card:hover .support-topic-arrow {
    transform: translateX(3px);
    color: var(--primary-color);
}

/* Getting Started */
.support-getting-started {
    background: white;
    border-radius: 20px;
    padding: 50px 48px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Steps */
.support-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: background-color 0.2s;
}

.support-step:hover {
    background-color: rgba(59, 155, 147, 0.08);
}

.support-step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

.support-step-content h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 4px;
}

.support-step-content p {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

/* Still Need Help */
.support-still-need {
    background: linear-gradient(135deg, var(--primary-color), #4fb3aa);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
}

.support-still-icon {
    font-size: 42px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.support-still-need h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.support-still-need p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.btn-support-contact {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-support-contact:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-2px);
    color: var(--primary-dark);
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-section {
    padding: 60px 0 90px;
    background-color: #fafbfc;
}

/* Form Card */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 50px 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.contact-form-subtitle {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.form-floating-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-floating-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
}

.required {
    color: #ef4444;
    margin-left: 2px;
}

.contact-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    color: var(--dark-text);
    background: #fafbfc;
    transition: all 0.25s ease;
    outline: none;
    font-family: inherit;
}

.contact-input:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 155, 147, 0.12);
}

.contact-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-privacy-note {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
}

.contact-privacy-note i {
    color: var(--primary-color);
}

.contact-privacy-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 14px rgba(59, 155, 147, 0.3);
    font-family: inherit;
}

.btn-contact-submit:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 155, 147, 0.4);
}

.btn-contact-submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

/* Success Message */
.contact-success {
    text-align: center;
    padding: 40px 20px;
}

.contact-success-icon {
    font-size: 54px;
    color: #22c55e;
    margin-bottom: 16px;
}

.contact-success h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.contact-success p {
    font-size: 16px;
    color: var(--gray-text);
}

/* Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 80px;
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 24px 22px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s;
}

.contact-info-card:hover {
    box-shadow: 0 4px 16px rgba(59, 155, 147, 0.1);
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-info-icon-email {
    background: #fef3c7;
    color: #d97706;
}

.contact-info-icon-support {
    background: rgba(59, 155, 147, 0.12);
    color: var(--primary-color);
}

.contact-info-icon-privacy {
    background: #ede9fe;
    color: #7c3aed;
}

.contact-info-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.contact-info-desc {
    font-size: 12px;
    color: var(--gray-text);
    margin-bottom: 8px;
}

.contact-info-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Response Card */
.contact-response-card {
    background: white;
    border-radius: 16px;
    padding: 24px 22px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.contact-response-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.contact-response-header h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.contact-response-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
}

.contact-response-item:last-child {
    margin-bottom: 0;
}

.contact-response-item strong {
    display: block;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 13px;
}

.contact-response-item span {
    color: var(--gray-text);
    font-size: 12px;
}

.contact-response-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    margin-top: 5px;
}

.contact-response-dot-green {
    background: #22c55e;
}

.contact-response-dot-blue {
    background: var(--primary-color);
}

.contact-response-dot-orange {
    background: #f97316;
}

/* Social Card */
.contact-social-card {
    background: white;
    border-radius: 16px;
    padding: 24px 22px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.contact-social-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-social-twitter {
    background: #e7f3ff;
    color: #1da1f2;
}

.contact-social-instagram {
    background: #fce4ff;
    color: #e1306c;
}

.contact-social-facebook {
    background: #e8f0fe;
    color: #1877f2;
}

.contact-social-linkedin {
    background: #e6f3fb;
    color: #0077b5;
}

/* ========================================
   Responsive: Inner Pages
   ======================================== */
@media (max-width: 991px) {
    .page-hero-title {
        font-size: 40px;
    }

    .about-section-title {
        font-size: 32px;
    }

    .legal-doc {
        padding: 36px 32px;
    }

    .contact-form-card {
        padding: 36px 32px;
    }

    .support-getting-started {
        padding: 36px 32px;
    }

    .page-cta-card {
        padding: 40px 36px;
    }

    .about-mission-visual {
        height: 300px;
    }

    .about-visual-card {
        font-size: 12px;
        padding: 10px 14px;
    }
}

@media (max-width: 767px) {
    .page-hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .page-hero-desc {
        font-size: 16px;
    }

    .about-section-title {
        font-size: 26px;
    }

    .legal-doc {
        padding: 28px 22px;
    }

    .contact-form-card {
        padding: 28px 22px;
    }

    .support-getting-started {
        padding: 28px 22px;
    }

    .page-cta-card {
        padding: 32px 24px;
    }

    .page-cta-title {
        font-size: 26px;
    }

    .legal-summary-cards {
        flex-direction: column;
    }

    .about-stats-row {
        gap: 24px;
    }

    .about-stat-number {
        font-size: 26px;
    }

    .about-mission-visual {
        height: 240px;
    }

    .about-visual-card {
        font-size: 11px;
        padding: 8px 12px;
        gap: 6px;
    }

    .about-visual-card i {
        font-size: 14px;
    }

    .about-visual-card-1 {
        top: 10px;
        left: 0;
    }

    .about-visual-card-2 {
        top: 10px;
        right: 0;
    }

    .about-visual-card-3 {
        bottom: 10px;
        left: 0;
    }

    .about-visual-card-4 {
        bottom: 10px;
        right: 0;
    }

    .faq-tabs {
        gap: 6px;
    }

    .faq-tab {
        padding: 8px 14px;
        font-size: 13px;
    }

    .support-still-need {
        padding: 36px 24px;
    }

    .contact-info-sidebar {
        position: static;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section>.container>.row {
    animation: fadeInUp 0.8s ease-out;
}