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

:root {
    --primary: #000000;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --background: #ffffff;
    --surface: #f8f8f8;
    --border: #e5e5e5;
    --accent: #007AFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-image-container {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: rgba(255, 255, 255, 1);
    border-color: var(--accent);
}

.nav-toggle-line {
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.lang-switch {
    font-weight: 700;
    margin-left: 16px;
}

.nav-open {
    overflow: hidden;
}

/* Main Content */
.main-content {
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    text-align: center;
    background: var(--surface);
}

/* App Branding */
.app-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.app-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-logo {
    width: 80px;
    height: 80px;
}

.app-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin: 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 48px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.app-button {
    display: inline-block;
    transition: transform 0.2s ease;
}

.app-button:hover {
    transform: translateY(-2px);
}

.app-button img {
    height: 50px;
    width: auto;
}

.app-button.android img {
    height: 75px;
}

/* Hero Phone Mockups */
.hero-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    padding: 0 20px;
}

.hero-mockup-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
}

.hero-device {
    position: relative;
}

/* iPad Frame */
.hero-device.ipad .ipad-frame {
    width: 380px;
    height: 500px;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.ipad-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

/* iPhone Frame */
.hero-device.iphone .iphone-frame {
    width: 300px;
    height: 610px;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-device.iphone .iphone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.hero-device.iphone .iphone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 28px;
    overflow: hidden;
}

/* Desktop Frame */
.hero-device.desktop .desktop-frame {
    width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.hero-device.desktop .desktop-screen {
    width: 100%;
    background: white;
    overflow: hidden;
}

/* Todos App Styles */
.todos-app {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
}

.todos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

.todos-header .time {
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 4px;
    font-size: 12px;
}

.todos-nav {
    display: flex;
    gap: 8px;
    padding: 8px 16px;
}

.nav-btn {
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    flex: 1;
    text-align: center;
}

.nav-btn.active {
    background: #f0f0f0;
    font-weight: 500;
}

.todos-tabs {
    display: flex;
    gap: 16px;
    padding: 8px 16px;
    font-size: 13px;
}

.tab {
    cursor: pointer;
    color: #666;
    position: relative;
}

.tab.active {
    color: #000;
    font-weight: 500;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #007AFF;
}

.todos-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.todos-section-title {
    font-size: 14px;
    font-weight: 600;
    margin: 16px 0 8px;
    color: #333;
}

.todo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.todo-item.sub-todo {
    padding-left: 24px;
}

.todo-item.sub-sub-todo {
    padding-left: 48px;
}

.todo-item.completed .todo-text {
    color: #999;
    text-decoration: line-through;
}

.todo-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.todo-text {
    font-size: 14px;
    color: #333;
}

.add-todo-btn {
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #FF6B6B;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.todos-bottom-nav {
    display: flex;
    border-top: 1px solid #e0e0e0;
    background: white;
}

.bottom-nav-item {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 11px;
    color: #666;
}

.bottom-nav-item.active {
    color: #007AFF;
}

/* Calendar App Styles */
.calendar-app {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    font-size: 14px;
}

.calendar-header .time {
    font-weight: 600;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 8px;
}

.cal-nav-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
}

.month-year {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.filter-btn {
    background: #f0f0f0;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 0 16px;
    gap: 2px;
    flex: 1;
    overflow-y: auto;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 4px;
    font-size: 13px;
    position: relative;
    background: white;
    cursor: pointer;
}

.cal-day.prev-month {
    color: #ccc;
}

.cal-day.has-event {
    font-weight: 600;
}

.cal-day.red {
    background: #FFE5E5;
}

.event-dot {
    position: absolute;
    top: 20px;
    font-size: 9px;
    background: #FFE5E5;
    color: #FF6B6B;
    padding: 2px 4px;
    border-radius: 4px;
    white-space: nowrap;
}

.event-dot.pink {
    background: #FFE5E5;
    color: #FF6B6B;
}

.event-text {
    font-size: 8px;
    color: #666;
    text-align: center;
    margin-top: 2px;
    line-height: 1.2;
    word-break: break-word;
}

.event-text.small {
    font-size: 7px;
}

.event-dots {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.dot-event {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot-event.green { background: #4CAF50; }
.dot-event.blue { background: #2196F3; }
.dot-event.orange { background: #FF9800; }

.add-event-btn {
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #007AFF;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.calendar-bottom-nav {
    display: flex;
    border-top: 1px solid #e0e0e0;
    background: white;
}

/* Desktop Calendar Styles */
.desktop-calendar {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.desktop-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.desktop-title {
    font-size: 18px;
    font-weight: 600;
}

.add-btn {
    width: 32px;
    height: 32px;
    background: #007AFF;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.desktop-todo-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.desktop-todo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    background: #f8f8f8;
}

.desktop-todo.completed {
    opacity: 0.6;
}

.desktop-todo.completed span {
    text-decoration: line-through;
}

.todo-radio {
    width: 16px;
    height: 16px;
}

.todo-tag {
    margin-left: auto;
    font-size: 11px;
    padding: 2px 8px;
    background: #e0e0e0;
    border-radius: 4px;
    color: #666;
}

.desktop-completed {
    margin-top: 20px;
}

.desktop-completed h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #666;
}

.completed-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Left Phone - Profile Screen */
.profile-screen {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.screen-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.screen-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.profile-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.profile-badges {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.badge {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-name {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.profile-desc {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

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

.stat-label {
    display: block;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.consult-button {
    width: 100%;
    padding: 16px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
}

.consult-button:hover {
    background: #3A80D2;
}

/* Right Phone - App Screen */
.app-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.app-logo {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.profile-icon {
    font-size: 20px;
}

.carousel-section {
    padding: 20px;
}

.carousel-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.carousel-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.carousel-content h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}

.play-button {
    /* background: white; */
    background: var(--surface);
    color: #667eea;
    border: none;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 16px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.dot.active {
    background: white;
}

.category-section {
    padding: 20px;
    flex: 1;
}

.category-section h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

.category-item {
    padding: 20px 12px;
    border-radius: 16px;
    text-align: center;
    background: #f0f0f0;
}

.category-item.blue {
    background: #e3f2fd;
}

.category-item.green {
    background: #e8f5e9;
}

.category-item.purple {
    background: #f3e5f5;
}

.category-icon {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

.category-name {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.category-desc {
    display: block;
    font-size: 10px;
    color: var(--text-secondary);
}

.app-navbar {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    background: white;
}

.nav-item {
    padding: 8px;
    cursor: pointer;
}

.nav-icon {
    font-size: 24px;
    opacity: 0.4;
}

.nav-item.active .nav-icon {
    opacity: 1;
}

/* Finance App Section */
.finance-app-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 50%, #ffd3b6 100%);
    position: relative;
    overflow: hidden;
}

.finance-content {
    position: relative;
    z-index: 1;
}

.finance-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    position: relative;
}

.finance-phone {
    position: relative;
}

.main-phone {
    z-index: 2;
}

.sub-phone {
    transform: scale(0.9);
    margin-left: -100px;
    z-index: 1;
}

.iphone-frame {
    width: 340px;
    height: 700px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.iphone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

/* Finance App Styles */
.finance-app {
    padding: 50px 16px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
}

.finance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 8px;
}

.bell-icon, .help-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.balance-card {
    background: #2e7d32;
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.fox-icon {
    font-size: 20px;
}

.more-icon {
    font-size: 24px;
}

.balance-amount {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.account-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.detail-button {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.detail-button span:nth-child(2) {
    background: white;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
}

.quick-actions {
    background: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.action-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.action-row:last-child {
    margin-bottom: 0;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    cursor: pointer;
}

.action-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 12px;
    font-size: 24px;
}

.action-item span:last-child {
    font-size: 11px;
    color: var(--text-primary);
    line-height: 1.2;
}

.advice-card {
    background: #ff9800;
    color: white;
    padding: 20px;
    border-radius: 16px;
    position: relative;
    margin-bottom: 20px;
}

.advice-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.advice-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
}

.advisor-icon {
    position: absolute;
    bottom: 16px;
    right: 60px;
    font-size: 40px;
}

.close-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 24px;
    cursor: pointer;
}

.arrow-right {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
}

.bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    margin: -16px;
    margin-top: auto;
    padding: 12px 0;
    border-top: 1px solid #e0e0e0;
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.bottom-nav .nav-item span:first-child {
    font-size: 24px;
}

.bottom-nav .nav-item span:last-child {
    font-size: 10px;
    color: var(--text-secondary);
}

.bottom-nav .nav-item.active span:last-child {
    color: #2e7d32;
}

/* Portfolio App Styles */
.portfolio-app {
    padding: 50px 16px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.tab-selected {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 14px;
}

.portfolio-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    font-size: 14px;
}

.portfolio-tabs span {
    color: var(--text-secondary);
    cursor: pointer;
}

.portfolio-tabs span.active {
    color: var(--text-primary);
    font-weight: 600;
}

.total-assets {
    margin-bottom: 24px;
}

.total-assets .label {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 4px;
}

.total-assets .amount {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.total-assets .change {
    font-size: 12px;
    color: var(--text-secondary);
}

.positive {
    color: #4caf50;
}

.period-selector {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 12px;
}

.period-selector span {
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 16px;
    cursor: pointer;
    color: var(--text-secondary);
}

.period-selector span.active {
    background: #e8f5e9;
    color: #4caf50;
}

.chart-area {
    height: 120px;
    margin-bottom: 24px;
    background: #fafafa;
    border-radius: 8px;
    padding: 10px;
}

.portfolio-chart {
    width: 100%;
    height: 100%;
}

.asset-breakdown h5 {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.breakdown-item:last-child {
    border-bottom: none;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 48px;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.piggy {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.chart {
    top: 20%;
    right: 10%;
    animation-delay: 1.5s;
    color: #2196f3;
}

.card {
    bottom: 20%;
    right: 5%;
    animation-delay: 3s;
    color: #ff9800;
}

.coin {
    bottom: 10%;
    left: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Feature Sections */
.feature-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
}

.feature-section:last-of-type {
    border-bottom: none;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-section.reverse .feature-content {
    direction: rtl;
}

.feature-section.reverse .feature-text {
    direction: ltr;
}

.feature-label {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.feature-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.feature-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.phone-mockup {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.watch-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.watch-mockup img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Setup Section */
.setup-section {
    padding: 100px 0;
    background: var(--surface);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.setup-step {
    background: var(--background);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.setup-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.setup-step p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.setup-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.setup-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.link-divider {
    color: var(--text-light);
    margin: 0 8px;
    font-size: 14px;
}

.step-image {
    margin-top: 20px;
}

.step-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Notion Setup Section */
.notion-setup {
    padding: 80px 0;
}

.notion-content {
    max-width: 800px;
    margin: 0 auto;
}

.notion-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
}

.notion-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    text-align: center;
}

.notion-example {
    margin: 20px 0 30px;
}

.notion-example img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.notion-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.notion-content li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-secondary);
}

.notion-content li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--primary);
}

/* Today Tonight Section */
.today-tonight-section {
    padding: 100px 0;
    background: var(--background);
}

.section-header,
.pricing-header,
.setup-header,
.reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 48px; */
    text-align: center;
}

.star-icon {
    font-size: 36px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.platform-tab {
    padding: 12px 40px;
    background: #E5E5E5;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.platform-tab:first-child {
    border-radius: 8px 0 0 8px;
}

.platform-tab:last-child {
    border-radius: 0 8px 8px 0;
}

.platform-tab.active {
    background: #4A9FFF;
    color: white;
}

.content-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.showcase-left {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.feature-block {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-block:hover {
    background: #f0f1f3;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.feature-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.feature-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.feature-play-btn,
.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: #111111;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    font-family: inherit;
    box-shadow: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.feature-play-btn svg,
.play-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.feature-play-btn svg path,
.play-btn svg path {
    fill: currentColor;
    transition: fill 0.2s ease;
}

.feature-play-btn .play-label,
.play-btn .play-label {
    font-weight: 600;
}

.feature-play-btn:hover,
.play-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.feature-play-btn:active,
.play-btn:active {
    background: #222222;
    color: #ffffff;
    border-color: #222222;
}

.feature-play-btn:focus-visible,
.play-btn:focus-visible {
    outline: 2px solid rgba(17, 17, 17, 0.35);
    outline-offset: 3px;
}

.feature-play-btn.active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.device-mockup {
    max-width: 600px;
    margin: 0 auto;
}

.device-frame {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.device-header {
    background: #F5F5F5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #E5E5E5;
}

.device-header .dot,
.desktop-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #DDD;
}

.device-header .dot:nth-child(1),
.desktop-header .dot:nth-child(1) { background: #FF5F57; }
.device-header .dot:nth-child(2),
.desktop-header .dot:nth-child(2) { background: #FFBD2E; }
.device-header .dot:nth-child(3),
.desktop-header .dot:nth-child(3) { background: #28CA42; }

.window-title {
    margin-left: auto;
    font-size: 13px;
    color: #666;
}

.device-content {
    padding: 24px;
    background: white;
    max-height: 600px;
    overflow-y: auto;
}

/* iPhone Mockup for Showcase */
.showcase-phone-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.iphone-mockup {
    position: relative;
}

.iphone-frame-border {
    width: 340px;
    height: 700px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.iphone-mockup .iphone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.iphone-screen-container {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}


.showcase-video.active {
    opacity: 1;
    display: block;
}

/* Video Play Button */
.video-play-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    transform: translateY(-4px);
}

.video-play-button svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.video-play-button:hover svg {
    filter: drop-shadow(0 8px 24px rgba(74, 159, 255, 0.3));
}

.video-play-button:hover svg circle {
    fill: #4A9FFF;
}

.video-play-button:hover svg path {
    fill: white;
}

.play-text {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hide play button when video is playing */
.video-playing .video-play-button {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Floating Plus Button */
.floating-plus-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 12px rgba(0, 122, 255, 0.3));
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-plus-btn:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 24px rgba(0, 122, 255, 0.4));
}

/* Showcase Screen Content */
.showcase-screen-content {
    width: 100%;
    height: 100%;
    background: white;
    display: none;
}

.vacation-content {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.vacation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px 0;
}

.back-arrow {
    font-size: 24px;
    color: #007AFF;
    cursor: pointer;
}

.vacation-header h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: center;
}

.check-circle {
    width: 30px;
    height: 30px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ccc;
}

.vacation-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
}

.vacation-section {
    margin-bottom: 30px;
}

.vacation-section h5 {
    font-size: 16px;
    font-weight: 600;
    color: #007AFF;
    margin-bottom: 15px;
}

.vacation-tasks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vacation-task {
    display: flex;
    align-items: center;
    gap: 12px;
}

.task-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.vacation-task span {
    font-size: 16px;
    color: #333;
}

.today-list h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.calendar-events {
    margin-bottom: 32px;
}

.event-item {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.event-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.event-title {
    color: var(--text-primary);
    font-weight: 500;
}

.event-time {
    color: var(--text-secondary);
}

.todo-items,
.evening-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.todo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.todo-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #DDD;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    flex-shrink: 0;
}

.todo-checkbox:checked {
    background: #4A9FFF;
    border-color: #4A9FFF;
    position: relative;
}

.todo-checkbox:checked::after {
    content: "✓";
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.todo-item span:not(.todo-tag) {
    font-size: 15px;
    color: var(--text-primary);
}

.todo-tag {
    font-size: 12px;
    padding: 2px 8px;
    background: #F0F0F0;
    color: #666;
    border-radius: 4px;
    margin-left: auto;
}

.todo-tag.today-tag {
    background: #FFE5E5;
    color: #FF6B6B;
}

.evening-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E5E5E5;
}

.evening-section h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* New Design Section */
.new-design-section {
    padding: 100px 0;
    background: var(--surface);
}

.design-icon {
    font-size: 36px;
}

.design-showcase {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

/* Showcase Devices Layout */
.showcase-devices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-device {
    position: relative;
}

.showcase-device.phone {
    flex: 0 0 auto;
}

.showcase-device.desktop {
    flex: 1 1 600px;
    max-width: 700px;
}

/* iPhone Frame for Design Showcase */
.iphone-frame-showcase {
    width: 240px;
    height: 490px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.iphone-frame-showcase .iphone-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.iphone-frame-showcase .iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
}

/* Desktop Frame */
.desktop-frame {
    background: #E5E5E5;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    padding: 6px;
}

.desktop-header {
    background: #F5F5F5;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 4px 4px 0 0;
    height: 32px;
}

.desktop-screen {
    background: #000;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 0 0 4px 4px;
}

/* Video Styles */
.device-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Style play button when videos are playing */
#design-showcase-container.videos-playing ~ .play-button .play-btn {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

#design-showcase-container.videos-playing ~ .play-button .play-btn:hover {
    background: #222222;
    border-color: #222222;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.todo-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 32px;
    width: 100%;
    max-width: 500px;
}

.todo-header {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.todo-checkbox-large {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #DDD;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.todo-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.todo-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.subtasks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subtask {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.subtask-bullet {
    font-size: 16px;
    color: #DDD;
}

.todo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #F0F0F0;
}

.tag-today {
    font-size: 14px;
    color: #666;
}

.todo-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.action-btn:hover {
    background: #F5F5F5;
    color: #666;
}

.play-button {
    text-align: center;
    margin: 40px 0 80px;
}

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

.design-feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.design-feature p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Visual Features */
.visual-features {
    padding: 100px 0;
    background: var(--surface);
}

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

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.visual-feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.visual-feature p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: var(--surface);
    position: relative;
}


.quote-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.reviews-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.reviews-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 60px;
}

/* App Stats */
.app-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 32px;
    background: var(--surface);
    border-radius: 12px;
    min-width: 200px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.stars {
    position: relative;
    display: inline-block;
    color: #FFD700;
}

.stars::after {
    content: '★★★★★';
    position: absolute;
    left: 0;
    top: 0;
    width: 90%;
    overflow: hidden;
    color: #FFD700;
}

.stat-note {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--background);
    color: #4A9FFF;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #4A9FFF;
    color: white;
    transform: translateY(-2px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--background);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.reviewer-handle {
    font-size: 14px;
    color: var(--text-secondary);
}

.review-date {
    font-size: 14px;
    color: var(--text-light);
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
}

.review-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--background);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: all;
}

.nav-arrow:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.nav-arrow:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.pricing-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

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

.pricing-card {
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pricing-card.free {
    border: 1px solid #e5e5e5;
}

.pricing-card.pro {
    background: white;
    border: 2px solid #E74C3C;
}

.plan-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #333;
    text-align: left;
}

.pro-header .plan-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-badge {
    background: #E74C3C;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Features List */

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.features-list li.disabled {
    color: #999;
}

.features-list li.disabled span {
    text-decoration: line-through;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon.disabled {
    opacity: 0.4;
}

.plan-button {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-primary);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.plan-button:hover {
    background: var(--text-primary);
    border-color: var(--text-primary);
    color: white;
}

.pro-button {
    background: white;
    color: #4A90E2;
    border-color: white;
}

.pro-button:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Pricing Footer */
.pricing-footer {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
}

.pricing-footer .footnote {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: left;
}

/* Price Section for Pro */
.price-section {
    margin-top: auto;
    padding-top: 32px;
}

.trial-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: left;
}

.price-options {
    display: flex;
    align-items: baseline;
    gap: 32px;
    margin-bottom: 24px;
}

.price-item {
    display: flex;
    align-items: baseline;
}

.price-item .currency {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.price-item .price {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.price-item .period {
    font-size: 18px;
    color: #666;
    margin-left: 4px;
}

.price-item.yearly {
    position: relative;
}

.discount {
    position: absolute;
    top: -20px;
    right: -40px;
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.price-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 20px;
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--background);
}

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

.faq-label,
.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #DC2626;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.q-mark {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #DC2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.question-text {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

.toggle-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 32px 24px 84px;
}

.faq-answer[style*="display: block"] {
    display: flex;
    gap: 20px;
}

.a-mark {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #e5e5e5;
    color: var(--text-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-top: 4px;
}

.answer-text {
    flex: 1;
}

.answer-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: var(--primary);
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--surface);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.copyright {
    font-size: 14px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 968px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-navigation {
        padding: 0 20px;
    }
    .feature-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .feature-section.reverse .feature-content {
        direction: ltr;
    }
    
    .setup-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* Design showcase tablet styles */
    .showcase-devices {
        gap: 40px;
    }
    
    .showcase-device.desktop {
        max-width: 600px;
    }
}

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

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 12px);
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        z-index: 1100;
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 10px;
        border-radius: 12px;
        font-size: 16px;
    }

    .nav-link:hover {
        background: rgba(0, 0, 0, 0.04);
    }

    .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .price-options {
        flex-direction: column;
        gap: 16px;
    }
    
    .discount {
        position: static;
        display: inline-block;
        margin-left: 8px;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .reviews-header h2 {
        font-size: 32px;
    }
    
    .review-navigation {
        display: none;
    }
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .feature-text h2 {
        font-size: 28px;
    }
    
    .feature-text p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .phone-mockup {
        width: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card {
        padding: 36px 24px;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .question-text {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 24px 20px 64px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .content-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .showcase-left {
        order: 2;
    }
    
    .showcase-right {
        order: 1;
    }
    
    .feature-block {
        padding: 20px;
    }
    
    .feature-header h3 {
        font-size: 18px;
    }
    
    .feature-play-btn,
    .play-btn {
        padding: 8px 18px;
        font-size: 14px;
        gap: 8px;
    }
    
    .section-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .platform-tab {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .design-features {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .todo-card {
        padding: 24px;
    }
    
    .hero-phones {
        margin-top: 60px;
    }
    
    .hero-mockup-image {
        max-width: 100%;
    }
    
    .profile-image-container {
        width: 160px;
        height: 160px;
    }
    
    .category-grid {
        gap: 8px;
    }
    
    .category-item {
        padding: 16px 8px;
    }
    
    .category-name {
        font-size: 11px;
    }
    
    .finance-phones {
        flex-direction: column;
        gap: 30px;
    }
    
    .sub-phone {
        transform: scale(0.85);
        margin-left: 0;
    }
    
    .iphone-frame {
        width: 300px;
        height: 620px;
    }
    
    .float-icon {
        display: none;
    }
    
    .app-branding {
        margin-bottom: 24px;
    }
    
    .app-logo {
        width: 64px;
        height: 64px;
    }
    
    .app-name {
        font-size: 28px;
    }
    
    /* iPhone mockup responsive */
    .iphone-frame-border {
        width: 280px;
        height: 580px;
    }
    
    .iphone-mockup .iphone-notch {
        width: 120px;
        height: 20px;
    }
    
    .showcase-phone-container {
        gap: 30px;
    }
    
    /* Design showcase responsive */
    .showcase-devices {
        flex-direction: column;
        gap: 40px;
    }
    
    .showcase-device.desktop {
        width: 100%;
        max-width: none;
    }
    
    .iphone-frame-showcase {
        width: 200px;
        height: 410px;
    }
    
    .desktop-frame {
        max-width: 100%;
    }
    
    .desktop-screen {
        height: 350px;
    }
}
