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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Improved Touch Targets for Mobile */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .tab-btn,
    .faq-question,
    .mobile-menu-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.language-switcher {
    position: relative;
    margin-left: 1rem;
}

.language-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.12);
    color: #0f172a;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(59, 130, 246, 0.18);
}

.language-pill:focus {
    outline: 2px solid #bfdbfe;
    outline-offset: 2px;
}

.language-pill .fa-globe {
    color: #1d4ed8;
    font-size: 14px;
}

.language-pill .caret {
    color: #94a3b8;
    font-size: 12px;
}

.language-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    list-style: none;
    padding: 6px;
    margin: 0;
    min-width: 180px;
    display: none;
    z-index: 1002;
}

.language-dropdown.open {
    display: block;
    animation: fadeIn 0.12s ease;
}

.language-dropdown li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-weight: 600;
    color: #0f172a;
}

.language-dropdown li:hover {
    background: #f8fafc;
}

.language-dropdown li[aria-selected="true"] {
    background: #eef2ff;
    color: #1d4ed8;
}

.language-dropdown .flag {
    font-size: 16px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #0f172a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Buttons */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 14px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
    transform: rotate(12deg);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-text .highlight {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 24px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    padding: 24px;
    position: relative;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #10b981; }

.mockup-content {
    text-align: center;
    padding: 40px 20px;
}

.mockup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.mockup-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.mockup-desc {
    color: #64748b;
    font-size: 0.875rem;
}

/* Floating Elements */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.floating-card-1 {
    top: 20%;
    left: -10%;
    width: 160px;
    animation: float 6s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 25%;
    right: -15%;
    width: 140px;
    animation: float 6s ease-in-out infinite 3s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 12px;
    font-size: 1rem;
}

.card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.card-desc {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: left;
    padding: 40px 32px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.feature-desc {
    color: #64748b;
    line-height: 1.6;
}

/* How it Works */
.how-works {
    padding: 120px 0;
    background: #f8fafc;
}

.how-works-header {
    text-align: center;
    margin-bottom: 80px;
}

.steps-container {
    position: relative;
}

.steps-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.step-item {
    text-align: center;
    background: white;
    padding: 40px 24px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 auto 24px;
    position: relative;
    z-index: 3;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.step-desc {
    color: #64748b;
    line-height: 1.5;
}

/* App Preview Section */
.app-preview {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
}

.app-preview-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.app-preview-header .section-title {
    color: white;
}

.app-preview-header .section-desc {
    color: #cbd5e1;
}

.section-badge-light {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

/* Tabs Navigation */
.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.tab-btn i {
    font-size: 1.125rem;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

/* Tabs Content */
.tabs-content {
    position: relative;
    z-index: 2;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

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

.screens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
    z-index: 2;
}

.screen-item {
    text-align: center;
}

.phone-mockup {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: translateY(-8px);
}

.phone-frame {
    width: 280px;
    background: #1e293b;
    border-radius: 32px;
    padding: 12px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    z-index: 10;
}

.phone-frame img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

.screen-info {
    padding: 0 16px;
}

.screen-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.screen-desc {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Waitlist Section */
.waitlist-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.waitlist-content {
    position: relative;
    z-index: 2;
}

.waitlist-header {
    text-align: center;
    margin-bottom: 80px;
}

.waitlist-header .section-title {
    color: white;
}

.waitlist-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Benefits Section */
.waitlist-benefits h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.benefits-grid {
    display: grid;
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.benefit-content p {
    color: #cbd5e1;
    line-height: 1.5;
}

/* Waitlist Form */
.waitlist-form {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-header p {
    color: #64748b;
    line-height: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Role Options */
.role-options {
    display: grid;
    gap: 16px;
    margin-top: 12px;
}

.role-option {
    position: relative;
}

.role-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.role-option label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.role-option label:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.role-option input[type="radio"]:checked + label {
    border-color: #3b82f6;
    background: #eff6ff;
}

.role-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.role-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.role-info p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

/* Interest Options */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.interest-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
}

.interest-item:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.interest-item input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
    flex-shrink: 0;
}

.interest-item input[type="checkbox"]:checked + span {
    color: #3b82f6;
    font-weight: 600;
}

/* Custom Checkbox */
.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
    background: white;
    display: inline-block;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label a {
    color: #3b82f6;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    margin-top: 16px;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
}

.form-footer p {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .language-switcher {
        margin-left: 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

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

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .steps-line {
        display: none;
    }

    .tabs-navigation {
        gap: 12px;
    }

    .tab-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .screens-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .waitlist-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .role-options {
        gap: 12px;
    }

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

/* Categories Section */
.categories {
    padding: 120px 0;
    background: white;
}

.categories-header {
    text-align: center;
    margin-bottom: 80px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.category-card {
    text-align: center;
    padding: 32px 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.category-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.5rem;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    transform: scale(1.1);
}

.category-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.category-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: #f8fafc;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.benefits-column {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.column-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f1f5f9;
}

.column-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.client-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.worker-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.column-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.column-header p {
    color: #64748b;
    font-size: 1rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

/* Trust Section */
.trust {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
}

.trust-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.trust-header .section-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.trust-header .section-title {
    color: white;
}

.trust-header .section-desc {
    color: #cbd5e1;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.trust-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.trust-desc {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    font-size: 0.875rem;
    color: #60a5fa;
    font-weight: 600;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.trust-stat-item i {
    font-size: 2.5rem;
    color: #60a5fa;
}

.trust-stat-content {
    display: flex;
    flex-direction: column;
}

.trust-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.trust-stat-label {
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-author {
    flex: 1;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: #64748b;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: #f59e0b;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #475569;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.testimonial-footer i {
    color: #3b82f6;
}

/* CTA Banner Section */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-banner-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-banner-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-banner-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cta-banner-actions .btn-primary {
    background: white;
    color: #3b82f6;
}

.cta-banner-actions .btn-primary:hover {
    background: #f8fafc;
}

.cta-banner-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-banner-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.cta-feature-item i {
    font-size: 1.25rem;
    color: #10b981;
}

/* About App Section */
.about-app-section {
    padding: 120px 0;
    background: #ffffff;
}

.about-app-header {
    text-align: center;
    margin-bottom: 64px;
}

.about-app-header .section-desc {
    margin: 0 auto;
}

.about-app-roles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.about-role-card {
    padding: 40px 32px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.about-role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.about-role-card .feature-icon {
    margin-bottom: 20px;
}

.about-role-card .feature-title {
    margin-bottom: 12px;
}

.google-data-box {
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-radius: 24px;
    padding: 48px;
}

.google-data-box-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.google-data-box-header > .fab.fa-google {
    font-size: 2.5rem;
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 4px;
}

.google-data-box-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.google-data-box-header p {
    color: #64748b;
    font-size: 1rem;
}

.google-data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.google-data-panel {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
}

.google-data-panel-accent {
    border-color: #bfdbfe;
    background: #eff6ff;
}

.google-data-panel h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-data-panel-accent h4 {
    color: #1d4ed8;
}

.google-data-panel-accent h4 i {
    color: #3b82f6;
}

.google-data-panel h4 i.fa-times-circle {
    color: #ef4444;
}

.google-data-panel ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.google-data-panel ul li {
    font-size: 0.9375rem;
    color: #475569;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.google-data-panel ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #94a3b8;
}

.google-data-panel p {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.6;
}

.data-scope-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.data-scope-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #dbeafe;
    color: #1d4ed8;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.about-app-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: #f8fafc;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 80px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}


.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #3b82f6;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    padding: 0px 28px 24px;
    margin: 0;
}

.faq-answer a {
    color: #1d4ed8;
    text-decoration: none;
}

.faq-cta {
    text-align: center;
    padding: 48px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.faq-cta p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stats {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

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

    .cta-features {
        flex-direction: column;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 0;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .language-switcher {
        width: 100%;
        justify-content: flex-start;
        margin-top: 12px;
    }

    .nav-links li {
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
        color: #0f172a;
    }

    .nav-links a:hover {
        color: #3b82f6;
        padding-left: 8px;
    }

    /* Mobile Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }

    .hero-text .subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 40px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 24px;
        justify-content: space-around;
        padding-top: 24px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Sections */
    .features,
    .how-works,
    .categories,
    .benefits,
    .trust,
    .testimonials,
    .app-preview,
    .waitlist-section,
    .faq {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.875rem;
        margin-bottom: 16px;
    }

    .section-desc {
        font-size: 1rem;
    }

    .features-header,
    .how-works-header,
    .categories-header,
    .benefits-header,
    .trust-header,
    .testimonials-header,
    .app-preview-header,
    .faq-header {
        margin-bottom: 48px;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 20px 12px;
    }

    .category-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .category-title {
        font-size: 0.875rem;
    }

    .category-desc {
        font-size: 0.75rem;
    }

    /* Benefits */
    .benefits-column {
        padding: 32px 20px;
    }

    .column-header {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .column-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .column-header h3 {
        font-size: 1.5rem;
    }

    .benefits-list {
        gap: 20px;
    }

    .benefit-list-item {
        gap: 12px;
    }

    .benefit-check {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .benefit-text h4 {
        font-size: 1rem;
    }

    /* Features */
    .features-grid,
    .steps-grid,
    .screens-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 1.125rem;
    }

    /* Trust Section */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trust-card {
        padding: 32px 24px;
    }

    .trust-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .trust-title {
        font-size: 1.125rem;
    }

    .trust-stat-item {
        padding: 24px;
        gap: 16px;
    }

    .trust-stat-item i {
        font-size: 2rem;
    }

    .trust-stat-number {
        font-size: 1.5rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 48px 0;
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        margin-bottom: 32px;
    }

    .cta-banner-text h2 {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .cta-banner-text p {
        font-size: 1rem;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-banner-actions .btn {
        width: 100%;
    }

    .cta-features {
        flex-direction: column;
        gap: 16px;
    }

    /* App Preview */
    .tabs-navigation {
        flex-direction: column;
        gap: 10px;
        margin-top: 48px;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .phone-frame {
        width: 220px;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 48px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0px 20px 20px;
        font-size: 0.875rem;
    }

    .faq-cta {
        padding: 32px 20px;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }

    .faq-cta p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    /* Waitlist */
    .waitlist-form-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .waitlist-benefits h3 {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .benefits-grid {
        gap: 24px;
    }

    .benefit-item {
        gap: 16px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .benefit-content h4 {
        font-size: 1rem;
    }

    .benefit-content p {
        font-size: 0.875rem;
    }

    .waitlist-form {
        padding: 28px 20px;
    }

    .form-header h3 {
        font-size: 1.25rem;
    }

    .form-header p {
        font-size: 0.875rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.875rem;
    }

    .form-group input,
    .form-group select {
        padding: 10px 14px;
        font-size: 0.875rem;
    }

    .role-option label {
        padding: 12px;
        gap: 12px;
    }

    .role-icon {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .role-info h4 {
        font-size: 0.875rem;
    }

    .role-info p {
        font-size: 0.75rem;
    }

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

    .interest-item {
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    .submit-btn {
        font-size: 0.875rem;
        padding: 14px 24px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Hide Floating Cards on Mobile */
    .floating-card-1,
    .floating-card-2 {
        display: none;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo img {
        height: 32px;
    }

    .hero-text h1 {
        font-size: 1.875rem;
        line-height: 1.2;
    }

    .hero-text .subtitle {
        font-size: 0.9375rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

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

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
    }

    .phone-frame {
        width: 200px;
    }

    .cta-banner-text h2 {
        font-size: 1.5rem;
    }

    .trust-stat-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .dashboard-mockup {
        max-width: 100%;
        padding: 16px;
    }

    .about-app-roles {
        grid-template-columns: 1fr;
    }

    .google-data-grid {
        grid-template-columns: 1fr;
    }

    .about-app-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .about-app-cta .btn {
        text-align: center;
    }
}
