/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #F8FAFC;
    /* clean light grey-blue */
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    flex: 1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Typography Utilities */
h1,
h2,
h3 {
    line-height: 1.4;
    letter-spacing: 0.05em;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0061ff, #60efff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0061ff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #0061ff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFCFF 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Abstract Orbs Background - Deepened */
.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #CFD8DC 0%, #E3F2FD 100%);
    top: -300px;
    right: -200px;
    animation: floatOrb 15s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #E1F5FE 0%, #B3E5FC 100%);
    bottom: -150px;
    left: -150px;
    animation: floatOrb 18s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #E0F7FA;
    top: 20%;
    left: 40%;
    opacity: 0.3;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, -40px);
    }
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.9;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.cta-note {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-left: 1rem;
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #fff;
    border-radius: 40px;
    box-shadow:
        0 0 0 12px #1e293b,
        /* Frame */
        0 20px 50px -10px rgba(0, 0, 0, 0.3);
    /* Shadow */
    position: relative;
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotateY(0) rotateX(0) translateY(-10px);
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #1e293b;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.screen {
    width: 100%;
    height: 100%;
    background: #F1F5F9;
    padding-top: 40px;
    /* Space for status bar */
    display: flex;
    flex-direction: column;
}

/* Mockup UI: Status Bar */
.status-bar {
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1rem;
}

.icons span {
    margin-left: 5px;
}

/* Mockup UI: Header */
.app-header {
    padding: 0 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.app-header span {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.1rem;
}

.avatar-group {
    display: flex;
}

.avatar-group .circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #cbd5e1;
    border: 2px solid #fff;
    margin-left: -10px;
}

.avatar-group .circle:first-child {
    background: #94a3b8;
    margin-left: 0;
}

/* Mockup UI: Chat Area */
.chat-area {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    transform: scale(0.8);
}

.message p {
    margin-bottom: 0.3rem;
}

.message .time {
    font-size: 0.65rem;
    opacity: 0.7;
    display: block;
    text-align: right;
}

.received {
    align-self: flex-start;
    background: #fff;
    color: #334155;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    animation-delay: 0.5s;
}

.sent {
    align-self: flex-end;
    background: #0061ff;
    color: #fff;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 97, 255, 0.2);
    align-items: flex-end;
    animation-delay: 1.5s;
}

.sent .time {
    color: rgba(255, 255, 255, 0.8);
}

.message:nth-child(3) {
    animation-delay: 2.5s;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Typing Indicator */
.typing-indicator {
    align-self: flex-start;
    background: #e2e8f0;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    display: flex;
    gap: 4px;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 3.5s;
    width: fit-content;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #94a3b8;
    border-radius: 50%;
    animation: typing 1s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Mockup UI: Input Area */
.input-area {
    padding: 1rem;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-box {
    flex: 1;
    height: 36px;
    background: #f1f5f9;
    border-radius: 18px;
}

.send-btn {
    width: 36px;
    height: 36px;
    background: #0061ff;
    border-radius: 50%;
}


/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #0061ff 0%, #00aeff 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 97, 255, 0.2);
    letter-spacing: 0.05em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 97, 255, 0.3);
}

/* Features Section (Glassmorphism) */
.features {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #0f172a;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    /* Inner glow */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 32px;
    position: relative;
    overflow: hidden;
}

/* Specific Gradient Icon Backgrounds */
.icon-chat {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #2196f3;
}

.icon-timeline {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #9c27b0;
}

.icon-call {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    color: #009688;
}

.icon-random {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #ff9800;
}

/* CSS-only Icons (Simplified Shapes using pseudo-elements) */
.feature-icon::before {
    font-family: system-ui;
    /* Fallback for emoji or simple shapes if needed, but here using CSS shapes */
    content: '';
}

/* Icon: Chat */
.icon-chat::after {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'%3E%3C/path%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'%3E%3C/path%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* Icon: Timeline */
.icon-timeline::after {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='3' y1='9' x2='21' y2='9'%3E%3C/line%3E%3Cline x1='9' y1='21' x2='9' y2='9'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='3' y1='9' x2='21' y2='9'%3E%3C/line%3E%3Cline x1='9' y1='21' x2='9' y2='9'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* Icon: Call */
.icon-call::after {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* Icon: Random (Shuffle) */
.icon-random::after {
    content: '';
    width: 24px;
    height: 24px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 3 21 3 21 8'%3E%3C/polyline%3E%3Cline x1='4' y1='20' x2='21' y2='3'%3E%3C/line%3E%3Cpolyline points='21 16 21 21 16 21'%3E%3C/polyline%3E%3Cline x1='15' y1='15' x2='21' y2='21'%3E%3C/line%3E%3Cline x1='4' y1='4' x2='9' y2='9'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 3 21 3 21 8'%3E%3C/polyline%3E%3Cline x1='4' y1='20' x2='21' y2='3'%3E%3C/line%3E%3Cpolyline points='21 16 21 21 16 21'%3E%3C/polyline%3E%3Cline x1='15' y1='15' x2='21' y2='21'%3E%3C/line%3E%3Cline x1='4' y1='4' x2='9' y2='9'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
    font-weight: 700;
}

.feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Benefits Section - Bento Grid */
.benefits {
    padding: 8rem 0;
    background: #ffffff;
}

.benefits h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 5rem;
    color: #0f172a;
    font-weight: 800;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    padding: 2.5rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Bento Card Gradients */
.card-1 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-2 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.card-3 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Note: Adjusting gradients to be deeper/premium as per request */

.card-1 {
    background: radial-gradient(circle at top right, #3b82f6, #1d4ed8);
}

.card-2 {
    background: radial-gradient(circle at top right, #10b981, #047857);
}

.card-3 {
    background: radial-gradient(circle at top right, #f43f5e, #be123c);
}

.benefit-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    z-index: 1;
}

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

.benefit-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
}


/* Footer (Clean & Minimal) */
footer {
    background-color: #f8fafc;
    color: #64748b;
    padding: 4rem 0 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-content {
    font-size: 0.9rem;
}

/* =========================================
   Sub-page Styles (Company, FAQ, Privacy)
   ========================================= */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0061ff 0%, #00aeff 100%);
    color: #fff;
    padding: 6rem 0 4rem;
    text-align: center;
    margin-bottom: 4rem;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Company Table */
.company-info .container {
    max-width: 800px;
}

.company-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0 auto;
    /* Center alignment */
}

.company-table th,
.company-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.company-table th {
    background-color: #f8fafc;
    color: #475569;
    font-weight: 700;
    width: 30%;
    color: #0061ff;
    border-radius: 8px 0 0 8px;
    /* Rounded start */
}

.company-table td {
    border-radius: 0 8px 8px 0;
    /* Rounded end */
    color: #1e293b;
    font-weight: 500;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

/* FAQ Styles */
.faq-section .container {
    max-width: 800px;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: #bfdbfe;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #0061ff;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8fafc;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
    /* Arbitrary large height */
    border-top: 1px solid #e2e8f0;
}

.faq-answer p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* FAQ Not Found / Contact */
.faq-not-found {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-top: 4rem;
}

.faq-not-found h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-email a {
    color: #0061ff;
    text-decoration: none;
    font-weight: 700;
}

.faq-not-found .cta-button {
    margin-top: 2rem;
    background: #334155;
    /* Secondary button style */
}

/* Privacy Page / Generic Content */
.privacy-content,
.contact-section {
    padding: 4rem 0;
}

.privacy-section h2,
.contact-features h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.privacy-section p,
.privacy-section li {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Hamburger Menu (Mobile) */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #334155;
    transition: all 0.3s;
}

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

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        gap: 2.5rem;
    }

    .menu-toggle:checked~.nav-links {
        right: 0;
    }

    .menu-toggle:checked~.hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

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

    .menu-toggle:checked~.hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-cta {
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        word-break: keep-all;
        /* Prevent awkward breaks */
    }

    .phone-mockup {
        width: 260px;
        /* Slightly smaller on mobile */
        height: 520px;
    }


    .feature-card {
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 1.5rem;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        text-align: center;
        min-height: auto;
    }

    .benefit-number {
        font-size: 6rem;
        /* Smaller number on mobile */
    }

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        border-radius: 4px;
    }

    .company-table th {
        background-color: transparent;
        color: #64748b;
        font-size: 0.85rem;
        padding-bottom: 0.2rem;
        border: none;
    }

    .company-table td {
        padding-top: 0;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e2e8f0;
    }
}