:root {
    /* Colors specified by user */
    --primary: #3C8AFF;
    --primary-light: #6ba8ff;
    --primary-dark: #276cd9;
    --secondary: #4086FF;
    --bg-main: #f8fafc;
    --bg-dark: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --danger: #ef4444;
    --success: #10b981;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-dark-bg: rgba(30, 41, 59, 0.7);
    --glass-dark-border: rgba(255, 255, 255, 0.1);

    /* Variables */
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(60, 138, 255, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.3;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), #82b1ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-highlight {
    color: var(--primary);
}

.text-danger {
    color: var(--danger);
}

.text-success {
    color: var(--success);
}

.text-white {
    color: var(--white);
}

.opacity-80 {
    opacity: 0.8;
}

.font-bold {
    font-weight: 700;
}

.text-lg {
    font-size: 1.125rem;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.items-center {
    align-items: center;
}

.gap-large {
    gap: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn i {
    margin-right: 8px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.btn-accent {
    background: linear-gradient(135deg, #f97316, #ea580c);
    /* Vibrant orange */
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.blur-background {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-main);
    font-weight: 600;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(60, 138, 255, 0.15) 0%, transparent 50%);
    animation: rotate 60s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--white);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(60, 138, 255, 0.2);
    color: #82b1ff;
    border: 1px solid rgba(60, 138, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-achievements {
    display: flex;
    gap: 20px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.achievement strong {
    color: var(--white);
    font-size: 1.1rem;
}

/* Glass panel Mock */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.glass-panel-dark {
    background: var(--glass-dark-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.main-dashboard-mock {
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.main-dashboard-mock:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.mock-header {
    background: rgba(0, 0, 0, 0.05);
    padding: 10px 15px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--glass-border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.mock-content {
    padding: 40px 30px;
    background: white;
    /* Fallback */
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
    margin-bottom: 30px;
}

.chart-bar {
    flex: 1;
    background: var(--primary-light);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease-out;
}

.mock-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.stat-box {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    bottom: 25%;
    right: -25px;
    animation-delay: 0s;
}

.badge-2 {
    top: 15%;
    left: -25px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Table */
.table-responsive {
    overflow-x: auto;
    margin-top: 40px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.compare-table th,
.compare-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.compare-table th {
    background: #f8fafc;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
    border-bottom: 2px solid #cbd5e1;
}

.compare-table .feature-name {
    text-align: left;
    font-weight: 600;
    background: #f8fafc;
}

.compare-table .highlight-col {
    background: rgba(60, 138, 255, 0.05);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.compare-table th.highlight-col {
    background: var(--primary);
    color: var(--white);
    border-bottom: none;
    border-top: 2px solid var(--primary);
    border-radius: 8px 8px 0 0;
}

.compare-table tr:last-child .highlight-col {
    border-bottom: 2px solid var(--primary);
    border-radius: 0 0 8px 8px;
}

.badge-sm {
    font-size: 0.75rem;
    padding: 4px 8px;
    background: #ffbd2e;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
}

/* Quality List */
.quality-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quality-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.quality-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.8), 0 0 30px rgba(34, 197, 94, 0.4);

    /* 従来形式のセンタリング（Flexboxが原因でフォントが潰れるのを防ぐ） */
    text-align: center;
    line-height: 48px;
}

.quality-icon i {
    color: #ffffff !important;
    /* 確実に白にする */
    font-size: 22px !important;
    /* サイズを直接指定 */
    line-height: inherit !important;
    /* 親の行高を引き継いで上下中央へ */
    vertical-align: middle;
}

.quality-list-content strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.quality-list-content span {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Overview Section Enhancements */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    padding-top: 20px;
    z-index: 1;
}

.overview-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), #ffbd2e);
    z-index: -1;
    opacity: 0.3;
    border-radius: 3px;
}

.overview-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 5px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:nth-child(1) {
    border-bottom-color: var(--primary);
}

.overview-card:nth-child(2) {
    border-bottom-color: var(--secondary);
}

.overview-card:nth-child(3) {
    border-bottom-color: #ffbd2e;
}

.card-number {
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 7rem;
    font-weight: 900;
    color: rgba(30, 58, 138, 0.04);
    z-index: 0;
    user-select: none;
}

.card-icon-large {
    font-size: 3.5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.overview-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.overview-card p {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

/* Problem Cards */
.problem-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border-top: 5px solid var(--danger);
    box-shadow: var(--shadow-md);
    padding: 30px 20px;
    height: 100%;
}

.problem-badge {
    display: inline-block;
    background: var(--danger);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.problem-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

.solution-highlight {
    background: rgba(60, 138, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 20px;
}

.solution-title {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 2px dashed rgba(60, 138, 255, 0.3);
    padding-bottom: 10px;
}

.solution-list li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.solution-list li:last-child {
    margin-bottom: 0;
}

.solution-list li i {
    color: var(--success);
    margin-top: 4px;
}

.quality-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1.4rem;
}

/* Feature detail rows */
.feature-detail-row {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-detail-row.reverse {
    direction: rtl;
}

.feature-detail-row.reverse>* {
    direction: ltr;
}

.step-num-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: var(--shadow-glow);
}

.feature-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.mock-ui {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: white;
}

.mock-ui-header {
    background: #f8fafc;
    padding: 12px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.mock-ui-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mock-ui-body {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    flex-direction: column;
    gap: 15px;
}

.mock-skeleton-title {
    width: 40%;
    height: 24px;
    background: #e2e8f0;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 10px;
}

.mock-skeleton-table {
    width: 100%;
    height: 16px;
    background: #f1f5f9;
    border-radius: 4px;
}

.mock-skeleton-table.short {
    width: 80%;
}

.mx-3 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.text-warning {
    color: #f59e0b;
}

@media (max-width: 900px) {

    .feature-detail-row,
    .feature-detail-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
        margin-bottom: 60px;
    }

    .feature-detail-row.reverse>* {
        direction: ltr;
    }
}

/* Utilities */
.desktop-only {
    display: block;
}

@media (max-width: 900px) {
    .desktop-only {
        display: none;
    }
}

/* Sections */
.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Hover Lift */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Cards */
.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(60, 138, 255, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card p {
    color: var(--text-muted);
}

/* Check lists */
.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
}

/* Problems section */
.bg-light {
    background-color: #f1f5f9;
}

.solution-box {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--success);
    padding: 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Circle Animation (Fallback image) */
.circle-animation {
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
}

.center-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-glow);
    z-index: 2;
}

.orbit-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.icon-1 {
    top: 30px;
    right: 30px;
    animation: float 4s infinite 1s;
}

.icon-2 {
    bottom: 50px;
    left: 30px;
    animation: float 5s infinite 2s;
}

.icon-3 {
    bottom: 60px;
    right: 80px;
    animation: float 3s infinite 0.5s;
}

/* Cases Section */
.case-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.case-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.case-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #e2e8f0;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.case-card h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.problem,
.solution {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.case-footer-box {
    background: rgba(60, 138, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px dashed var(--primary-light);
}

.case-footer-box h3 {
    font-size: 1.8rem;
}

/* Background text dark section */
.bg-dark {
    background-color: var(--bg-dark);
}

#services.section {
    padding: 60px 0;
}

#services .section-title {
    margin-bottom: 30px;
}

.service-category {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
}

.service-desc {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.cat-header i {
    font-size: 1.6rem;
    color: var(--primary);
}

.cat-header h3 {
    font-size: 1.25rem;
}

.cat-header small {
    color: var(--text-muted);
    font-weight: 400;
}

.feature-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 15px 10px;
    margin-top: 15px;
    height: 100%;
}

.feature-tags li {
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 8px 15px;
    transition: var(--transition);
}

.feature-tags li:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(60, 138, 255, 0.08);
    transform: translateY(-2px);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 8px 15px;
    position: relative;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-list li:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(60, 138, 255, 0.08);
    transform: translateY(-2px);
}

.service-list strong {
    color: var(--primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list span {
    font-size: 0.85rem;
}

/* Pricing */
.pricing-card {
    border-top: 5px solid var(--primary);
}

.price-display {
    text-align: center;
    margin: 30px 0;
    color: var(--primary);
}

.price-label {
    font-size: 1.2rem;
    font-weight: 700;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.price-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Trial Banner */
.pricing-trial-wrapper {
    display: flex;
    flex-direction: column;
}

.trial-banner {
    border-top: 5px solid var(--success);
    margin-top: auto;
}

.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: -10px;
}

.trial-guarantee {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    background: #fef2f2;
    padding: 15px;
    border-radius: var(--radius-sm);
    text-align: left;
}

.trial-guarantee i {
    color: var(--danger);
    font-size: 1.5rem;
    margin-top: 3px;
}

.trial-guarantee p {
    margin: 0;
    line-height: 1.4;
}

.text-sm {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Flow */
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 60px;
    bottom: -20px;
    width: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-top: 8px;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background: #f8fafc;
    color: var(--primary);
}

.accordion-header i {
    transition: var(--transition);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
    overflow: hidden;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
}

.phone-support p {
    margin-bottom: 5px;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Form Styles */
.form-group {
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(60, 138, 255, 0.2);
    background: var(--white);
}

.form-control::placeholder {
    color: #94a3b8;
}

.badge-required {
    display: inline-block;
    background: var(--danger);
    color: var(--white);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.text-xs {
    font-size: 0.8rem;
}

/* Genre Cards */
.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.genre-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-light);
    height: 100%;
}

.genre-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.genre-icon {
    width: 50px;
    height: 50px;
    background: rgba(60, 138, 255, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.genre-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.genre-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.genre-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.genre-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--success);
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: #cbd5e1;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-logo {
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links ul li:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.copyright {
    font-size: 0.9rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-achievements {
        justify-content: center;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .main-dashboard-mock {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .overview-grid::before {
        display: none;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
        /* simple burger menu omission for brevity */
    }
}

/* Thanks Page Styles */
.thanks-wrapper {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 5rem;
    color: #22c55e;
    margin-bottom: 20px;
}

.thanks-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-main, #1e293b);
}

.thanks-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted, #64748b);
    margin-bottom: 40px;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .thanks-content {
        padding: 30px 20px;
    }

    .thanks-title {
        font-size: 1.5rem;
    }

    .thanks-text {
        font-size: 1rem;
    }
}