:root {
    --dark-bg: #0a0f1e;
    --dark-bg-light: #111827;
    --dark-bg-card: #1a2235;
    --dark-border: #2a3550;
    --gold: #06b6d4;
    --gold-light: #34d399;
    --gold-dark: #0891b2;
    --gold-glow: rgba(6, 182, 212, 0.12);
    --text-white: #f1f5f9;
    --text-muted: #94a3b8;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    color: var(--text-white);
    background: var(--dark-bg);
    overflow-x: hidden;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

.navbar {
    padding: 0.875rem 0;
    background: rgba(10, 15, 30, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    z-index: 1000;
}
.navbar.scrolled {
    padding: 0.625rem 0;
    background: rgba(10, 15, 30, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-white) !important;
    letter-spacing: -0.5px;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark-bg);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    margin-right: 4px;
    vertical-align: middle;
    font-weight: 900;
}
.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}
.nav-link:hover { color: var(--gold) !important; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark-bg);
    border: none;
    font-weight: 700;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-outline-gold {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 600;
}
.btn-outline-gold:hover {
    background: var(--gold-glow);
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--dark-bg) 0%, #0f1729 50%, #141e35 100%);
    overflow: hidden;
    padding-top: 80px;
}
.hero-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}
.text-gold { color: var(--gold) !important; }
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.8;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.2;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-border);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dashboard-mockup {
    width: 100%;
    max-width: 440px;
    background: var(--dark-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.mockup-header {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--dark-border);
}
.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dark-border);
}
.mockup-dot:first-child { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:last-child { background: #22c55e; }
.mockup-body {
    display: flex;
    min-height: 280px;
}
.mockup-sidebar {
    width: 60px;
    background: rgba(0, 0, 0, 0.2);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-right: 1px solid var(--dark-border);
}
.mockup-nav-item {
    height: 8px;
    background: var(--dark-border);
    border-radius: 4px;
}
.mockup-nav-item.active {
    background: var(--gold);
}
.mockup-content {
    flex: 1;
    padding: 16px;
}
.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 140px;
    margin-bottom: 16px;
}
.mockup-bar {
    flex: 1;
    background: linear-gradient(to top, var(--gold-dark), var(--gold));
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
    min-height: 20px;
}
.mockup-cards {
    display: flex;
    gap: 10px;
}
.mockup-card-sm {
    flex: 1;
    height: 60px;
    background: var(--dark-border);
    border-radius: var(--radius-sm);
}

.section-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-bg);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.section-badge.bg-gold {
    background: var(--gold);
}
.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    letter-spacing: -0.3px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.features-section {
    padding: 5rem 0;
    background: var(--dark-bg-light);
}
.feature-card {
    background: var(--dark-bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-bg);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    margin-bottom: 1.25rem;
}
.feature-card h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.625rem;
    color: var(--text-white);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.reasons-section {
    padding: 5rem 0;
    background: var(--dark-bg-light);
}
.reason-card {
    background: var(--dark-bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    position: relative;
}
.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(6, 182, 212, 0.3);
}
.reason-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(6, 182, 212, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}
.reason-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-glow);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.reason-card h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    line-height: 1.5;
}
.reason-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}
.reason-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.reason-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.reason-list li i { color: var(--gold); font-size: 1.1rem; }

.cases-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}
.case-card {
    background: var(--dark-bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--dark-border);
    position: relative;
    transition: all 0.3s ease;
}
.case-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-4px);
}
.case-quote {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
.case-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.case-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.case-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}
.case-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-white);
}
.case-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.flow-section {
    padding: 5rem 0;
    background: var(--dark-bg-light);
}
.flow-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    background: var(--dark-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    height: 100%;
    transition: all 0.3s ease;
}
.flow-step:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 24px rgba(6, 182, 212, 0.1);
}
.flow-line {
    display: none;
}
.flow-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(6, 182, 212, 0.1);
    position: absolute;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}
.flow-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-glow);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
}
.flow-step h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}
.flow-step p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
}

.pricing-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}
.pricing-card {
    background: var(--dark-bg-card);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid var(--dark-border);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.15);
}
.pricing-card.featured:hover {
    transform: translateY(-6px);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark-bg);
    padding: 0.375rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}
.pricing-header h4 {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
    color: var(--text-white);
}
.pricing-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.pricing-price {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 1.5rem;
}
.pricing-price .price {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--gold);
}
.pricing-price .period {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-white);
}
.pricing-features li i { color: var(--gold); font-size: 1rem; }
.pricing-features li.disabled { color: #4a5568; }
.pricing-features li.disabled i { color: #374151; }

.pricing-card {
    display: flex;
    flex-direction: column;
}
.pricing-card .btn {
    margin-top: auto;
}
.pricing-annual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}
.annual-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}
.annual-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
}
.annual-price .period {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}
.pricing-range {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}
.range-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.usecases-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}
.usecase-card {
    background: var(--dark-bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    text-align: center;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}
.usecase-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
}
.usecase-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-glow);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0 auto 1rem;
}
.usecase-card h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.625rem;
    color: var(--text-white);
}
.usecase-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.news-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}
.news-list {
    display: flex;
    flex-direction: column;
}
.news-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--dark-border);
    text-decoration: none;
    transition: background 0.2s ease;
}
.news-item:last-child {
    border-bottom: none;
}
.news-item:hover {
    background: var(--dark-bg-card);
    border-radius: var(--radius-sm);
}
.news-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
    min-width: 90px;
}
.news-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}
.news-tag.tag-service {
    background: var(--gold-glow);
    color: var(--gold-light);
}
.news-tag.tag-info {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}
.news-tag.tag-media {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}
.news-title {
    font-size: 0.95rem;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0;
}

.magazine-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}
.magazine-card {
    display: block;
    background: var(--dark-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    text-decoration: none;
}
.magazine-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.magazine-card-img {
    height: 180px;
    background: var(--dark-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.magazine-card-img i {
    font-size: 3rem;
    color: var(--gold);
}
.magazine-card-body {
    padding: 1.5rem;
}
.magazine-card-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.magazine-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.5;
    margin-bottom: 0;
}

.about-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(160deg, var(--dark-bg) 0%, #0f1729 50%, #141e35 100%);
    overflow: hidden;
}
.about-hero-glow {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.min-vh-80 { min-height: 55vh; }
.about-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}
.about-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
}
.about-hero-visual {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-visual-ring {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.1); }
    50% { box-shadow: 0 0 0 30px rgba(6, 182, 212, 0); }
}
.about-visual-core {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(6, 182, 212, 0.3);
}
.about-brand-mark-lg {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
    border-radius: 50% !important;
}
.about-visual-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark-bg-card);
    border: 1px solid var(--dark-border);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gold-light);
    white-space: nowrap;
}
.about-visual-label i { color: var(--gold); }
.top-label { top: 10%; left: 50%; transform: translateX(-50%); }
.right-label { right: 0; top: 50%; transform: translateY(-50%); }
.bottom-label { bottom: 15%; left: 50%; transform: translateX(-50%); }

.about-info-section {
    padding: 5rem 0;
    background: var(--dark-bg-light);
}
.info-card {
    background: var(--dark-bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    height: 100%;
    transition: all 0.3s ease;
}
.info-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.1);
}
.info-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-glow);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold);
    flex-shrink: 0;
}
.info-body {
    display: flex;
    flex-direction: column;
}
.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.125rem;
}
.info-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

.about-message-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}
.message-portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 3rem;
    background: var(--dark-bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--dark-border);
}
.portrait-frame {
    width: 120px;
    height: 120px;
    background: var(--gold-glow);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold);
}
.portrait-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
}
.message-content {
    padding-left: 2rem;
    border-left: 3px solid var(--gold);
}
.message-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}
.message-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 1.5rem;
}
.message-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}
.message-content p:last-child {
    margin-bottom: 0;
}

.about-vision-section {
    padding: 5rem 0;
    background: var(--dark-bg-light);
}
.vision-card {
    background: var(--dark-bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--dark-border);
    height: 100%;
    transition: all 0.3s ease;
}
.vision-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
}
.vision-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin: 0 auto 1.25rem;
}
.vision-card h4 {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}
.vision-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-cta-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.faq-section {
    padding: 5rem 0;
    background: var(--dark-bg-light);
}
.faq-accordion .accordion-item {
    border: 1px solid var(--dark-border);
    margin-bottom: 0.75rem;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    background: var(--dark-bg-card);
}
.faq-accordion .accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    background: var(--dark-bg-card);
    font-size: 0.95rem;
    color: var(--text-white);
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(6, 182, 212, 0.08);
    color: var(--gold-light);
    box-shadow: none;
}
.faq-accordion .accordion-button::after {
    filter: brightness(0) invert(0.7);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(58%) sepia(71%) saturate(600%) hue-rotate(140deg);
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.contact-section {
    padding: 5rem 0;
    background: var(--dark-bg-light);
}
.contact-card {
    background: linear-gradient(135deg, var(--dark-bg-card) 0%, #1e293b 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    color: #fff;
    border: 1px solid var(--dark-border);
}
.contact-card h2 {
    font-weight: 900;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}
.contact-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}
.contact-info { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #141e35 100%);
}
.cta-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}
.cta-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.footer {
    background: #060a15;
    color: var(--text-muted);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--dark-border);
}
.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}
.footer-brand .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
}
.footer-desc {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    max-width: 320px;
    line-height: 1.7;
}
.footer-company {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.5);
}
.footer h5 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-divider { border-color: var(--dark-border); margin: 2rem 0; }
.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.4);
}

[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos].aos-animate { opacity: 1; transform: translate(0) scale(1); }

@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .navbar-collapse {
        background: var(--dark-bg-card);
        padding: 1rem 0;
        border-radius: var(--radius-md);
        margin-top: 0.5rem;
        border: 1px solid var(--dark-border);
    }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .contact-card { padding: 2.5rem; }
    .hero-stats { gap: 1.25rem; }
    .news-item { flex-wrap: wrap; gap: 0.5rem; padding: 1rem; }
    .news-date { min-width: auto; }
}

@media (max-width: 767px) {
    .hero { text-align: center; padding-top: 100px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }
    .section-title { font-size: 1.75rem; }
    .reason-card { padding: 2rem 1.5rem; }
    .contact-card { text-align: center; padding: 2rem; }
    .contact-info { align-items: center; }
    .cta-content h2 { font-size: 1.5rem; }
    .cta-content .d-flex { flex-direction: column; align-items: center; }
    .about-card { padding: 2rem; }
    .about-table th { width: 100px; font-size: 0.85rem; }
    .about-table td { font-size: 0.85rem; }
    .about-message-card { padding: 2rem; }
    .about-message-header { flex-direction: column; text-align: center; }
    .about-hero-title { font-size: 2rem; }
    .about-hero-visual { height: 280px; }
    .about-visual-ring { width: 150px; height: 150px; }
    .about-visual-core { width: 70px; height: 70px; }
    .about-brand-mark-lg { width: 70px !important; height: 70px !important; font-size: 1.75rem !important; }
    .about-visual-label { font-size: 0.75rem; padding: 0.4rem 0.9rem; }
    .message-content { padding-left: 0; border-left: none; border-top: 3px solid var(--gold); padding-top: 1.5rem; }
}
