/* ==========================================================================
   NoBet Days Official Website Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Variables & Reset
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --primary-color: #144323;       /* 深緑 (App Splash/Icon Background) */
    --primary-light: #1c5c31;       /* 明るめの緑 */
    --primary-dark: #0b2814;        /* より深い緑 */
    --accent-color: #4ade80;        /* アクセントのミントグリーン */
    --accent-glow: rgba(74, 222, 128, 0.4);
    
    --bg-dark: #08110b;             /* リッチなダークモード背景 */
    --bg-light: #0d1e13;            /* カード等のセカンダリ背景 */
    --text-main: #f3fdf6;           /* メインの薄緑がかった白テキスト */
    --text-muted: #94b8a2;          /* ミュートされたテキスト */
    
    --gradient-primary: linear-gradient(135deg, #144323 0%, #1c5c31 50%, #144323 100%);
    --gradient-accent: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    --gradient-premium: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-dark: linear-gradient(180deg, #08110b 0%, #0d1e13 100%);
    
    /* Font Stack */
    --font-sans: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-title: 'Outfit', 'Inter', 'Noto Sans JP', sans-serif;
    
    /* System Values */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --glass-bg: rgba(20, 67, 35, 0.45);
    --glass-border: rgba(74, 222, 128, 0.15);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   1. Background Decorations
   -------------------------------------------------------------------------- */
.background-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: floatAnimation 20s infinite ease-in-out alternate;
}

.circle-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-light);
}

.circle-2 {
    bottom: -15%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: var(--accent-color);
    animation-delay: -5s;
}

.circle-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: var(--primary-dark);
    opacity: 0.2;
    animation-duration: 25s;
}

@keyframes floatAnimation {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    100% { transform: translateY(50px) scale(1.1) rotate(15deg); }
}

/* --------------------------------------------------------------------------
   2. Typography & Globals
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.25;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --------------------------------------------------------------------------
   3. Header & Navigation
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(8, 17, 11, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(20, 67, 35, 0.3);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(8, 17, 11, 0.95);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.logo-text {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #a3d9b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-item:hover {
    color: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-accent);
    color: #071309;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(20, 67, 35, 0.7);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.nav-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-main);
}

.nav-btn:hover {
    background: var(--accent-color);
    color: #071309;
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    padding: 10rem 0 6rem;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
}

.hero-visual-block {
    display: flex;
    justify-content: center;
    position: relative;
}

.logo-card-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
}

.app-logo-card {
    position: relative;
    width: 240px;
    height: 240px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 2;
}

.hero-app-logo {
    width: 220px;
    height: 220px;
    border-radius: 46px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 58px;
    z-index: 1;
    animation: pulseGlow 4s infinite linear;
}

.pulse-ring.ring-2 {
    width: 320px;
    height: 320px;
    border-radius: 70px;
    border-color: rgba(74, 222, 128, 0.08);
    animation-delay: 2s;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(8, 17, 11, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3;
    animation: floatUpDown 6s infinite ease-in-out;
}

.badge-days {
    top: 10%;
    right: -20%;
    border-color: var(--accent-color);
}

.badge-likes {
    bottom: 20%;
    left: -25%;
    animation-delay: -2s;
}

.badge-likes i {
    color: var(--accent-color);
}

.badge-shield {
    bottom: -10%;
    right: -10%;
    animation-delay: -4s;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   5. About / Concept Section
   -------------------------------------------------------------------------- */
.about-section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem;
}

.section-tag {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.concept-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

.concept-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(74, 222, 128, 0.1);
    color: var(--accent-color);
}

.icon-wrap i {
    width: 28px;
    height: 28px;
}

.icon-wrap.color-red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.icon-wrap.color-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.concept-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.concept-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. Features Section
   -------------------------------------------------------------------------- */
.features-section {
    padding: 6rem 0;
    background: rgba(13, 30, 19, 0.3);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 7rem;
}

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

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-content {
    direction: ltr;
}

.feature-row.reverse .feature-mockup {
    direction: ltr;
}

.feature-icon-badge {
    width: 48px;
    height: 48px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 12px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon-badge i {
    width: 24px;
    height: 24px;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.feature-content .feature-detail {
    font-size: 0.95rem;
    color: #7b9e87;
}

.feature-mockup {
    display: flex;
    justify-content: center;
}

/* Visual Card Mockups */
.visual-card {
    background: rgba(20, 67, 35, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dummy-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #071309;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.dummy-name {
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.days-pill {
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    background: rgba(74, 222, 128, 0.15);
    color: var(--accent-color);
    border-radius: 50px;
    font-weight: 600;
}

.dummy-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dummy-text {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.dummy-actions {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.action-item.active {
    color: #60a5fa; /* いいねカラー */
}

.action-item.spacer {
    flex-grow: 1;
}

.action-item i {
    width: 16px;
    height: 16px;
}

/* Timer Mockup */
.timer-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 20px 50px rgba(74, 222, 128, 0.08);
}

.timer-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.timer-digits {
    font-family: monospace;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.timer-unit {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 0.5rem;
}

.saving-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(74, 222, 128, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
}

.saving-badge strong {
    color: #ffffff;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   7. Premium Section
   -------------------------------------------------------------------------- */
.premium-section {
    padding: 6rem 0;
}

.premium-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: start;
}

.premium-table-wrap {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, 
.comparison-table td {
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(20, 67, 35, 0.3);
}

.comparison-table th {
    font-family: var(--font-title);
    background: rgba(13, 30, 19, 0.6);
    font-weight: 700;
    color: var(--text-main);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .highlight-column {
    background: rgba(20, 67, 35, 0.3);
    border-left: 1px solid rgba(74, 222, 128, 0.1);
    border-right: 1px solid rgba(74, 222, 128, 0.1);
}

.comparison-table td i {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.font-bold {
    font-weight: 600;
}

.color-green {
    color: var(--accent-color);
}

.plan-price {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.price-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.premium-highlights {
    position: sticky;
    top: 100px;
}

.premium-badge-card {
    background: linear-gradient(135deg, rgba(20, 67, 35, 0.6) 0%, rgba(8, 17, 11, 0.9) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3); /* ゴールド枠 */
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: 0 20px 45px rgba(251, 191, 36, 0.05);
}

.crown-icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 12px;
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.crown-icon-wrap i {
    width: 24px;
    height: 24px;
}

.premium-badge-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.premium-badge-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. Download Section
   -------------------------------------------------------------------------- */
.download-section {
    padding: 6rem 0;
}

.download-card {
    background: var(--gradient-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.download-logo-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
}

.download-logo {
    width: 100%;
    height: 100%;
}

.download-card h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.download-card p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Apple App Store Button Styling (Mock) */
.store-badge-dummy {
    background: #000000;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.store-badge-dummy:hover {
    transform: translateY(-2px);
    border-color: #555555;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.store-badge-dummy::before {
    content: ''; /* Apple Logo Unicode */
    font-size: 2rem;
    float: left;
    margin-right: 0.5rem;
    line-height: 1;
}

.store-desc {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a3a3a3;
    line-height: 1;
    margin-top: 2px;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.download-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 6rem 0;
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 222, 128, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    width: 28px;
    height: 28px;
}

.contact-card h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

/* --------------------------------------------------------------------------
   10. Legal Sub-pages Layout
   -------------------------------------------------------------------------- */
.sub-page .header {
    position: absolute;
    background: rgba(8, 17, 11, 0.95);
}

.legal-main {
    padding: 8rem 0 6rem;
    min-height: 80vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-container h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.updated-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.legal-container section {
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(74, 222, 128, 0.2);
    padding-bottom: 0.5rem;
    color: var(--text-main);
}

.legal-container p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.legal-container ol, 
.legal-container ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.alert {
    padding: 1.25rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #93c5fd;
}

.alert-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: #050c07;
    border-top: 1px solid rgba(20, 67, 35, 0.3);
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-logo-text {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.25rem;
    color: #ffffff;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    z-index: 15;
}

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

.copyright {
    font-size: 0.8rem;
    color: #52735d;
}

/* --------------------------------------------------------------------------
   12. Animations (Scroll Reveal)
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   13. Responsive (Media Queries)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 3rem;
    }
    
    .hero-text-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .badge-days {
        right: -10%;
    }
    
    .badge-likes {
        left: -10%;
    }
    
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 5rem;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .premium-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .premium-highlights {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: rgba(8, 17, 11, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(20, 67, 35, 0.3);
    }
    
    .nav.open {
        left: 0;
    }
    
    .nav-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .comparison-table th, 
    .comparison-table td {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .contact-card {
        padding: 2.5rem 1.5rem;
    }
    
    .download-card {
        padding: 3.5rem 1.5rem;
    }
    
    .download-card h2 {
        font-size: 2rem;
    }
}
