/* ===========================
   RESET & BASE
   =========================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

ul {
    list-style: none;
}

/* ===========================
   HEADER
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
}

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

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    transition: color 0.2s;
}

.nav a:hover {
    color: #1e293b;
}

.btn-login {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2dbe60;
    border: 2px solid #2dbe60;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-login:hover {
    background: #2dbe60;
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #64748b;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.show {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.show .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.mobile-menu-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #64748b;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-nav {
    flex: 1;
    padding: 16px 0;
}

.mobile-menu-nav a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    transition: all 0.15s;
}

.mobile-menu-nav a:hover {
    background: #f8fafc;
    color: #2dbe60;
}

.mobile-menu-login {
    display: block;
    margin: 16px 20px;
    padding: 14px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #2dbe60;
    border-radius: 10px;
    transition: background 0.2s;
}

.mobile-menu-login:hover {
    background: #26a854;
}

/* ===========================
   HERO
   =========================== */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2dbe60;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 24px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 48px;
    color: #0f172a;
    margin-bottom: 16px;
}

.hero h1 span {
    color: #2dbe60;
}

.hero-sub {
    font-size: 18px;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto 32px;
}

.hero-modes {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-mode {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-mode:hover {
    border-color: #cbd5e1;
}

.hero-mode.active {
    border-color: #2dbe60;
    background: #f0fdf4;
    padding-top: 20px;
}

.hero-mode-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 10px;
}

.hero-mode.active .hero-mode-icon {
    background: #dcfce7;
}

.hero-mode-icon svg {
    width: 20px;
    height: 20px;
    stroke: #64748b;
}

.hero-mode.active .hero-mode-icon svg {
    stroke: #16a34a;
}

.hero-mode-content {
    flex: 1;
    text-align: left;
}

.hero-mode-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.hero-mode-desc {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.hero-mode-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

.hero-mode.active .hero-mode-check {
    opacity: 1;
    background: #2dbe60;
}

.hero-mode-check svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
}

.hero-mode-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2dbe60 0%, #1a9b4a 100%);
    border-radius: 12px;
    white-space: nowrap;
}

.hero-mode {
    position: relative;
}

.hero-modes-section {
    max-width: 700px;
    margin: 0 auto 32px;
}

.mode-comparison {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.comparison-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    margin-bottom: 16px;
    background: #fef3c7;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #92400e;
}

.comparison-warning svg {
    width: 18px;
    height: 18px;
    stroke: #f59e0b;
    flex-shrink: 0;
}

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

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #475569;
}

.comparison-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.comparison-item.good svg {
    stroke: #16a34a;
}

.comparison-item.bad svg {
    stroke: #dc2626;
}

.comparison-item.neutral svg {
    stroke: #64748b;
}

.comparison-item.bad {
    color: #991b1b;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #334155;
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    stroke: #2dbe60;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn-primary {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2dbe60 0%, #1a9b4a 100%);
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 190, 96, 0.3);
}

.btn-secondary {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: border-color 0.2s;
}

.btn-secondary:hover {
    border-color: #2dbe60;
}

/* ===========================
   FEATURES
   =========================== */
.features {
    padding: 80px 0;
}

.features h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: #0f172a;
}

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

.feature-card {
    padding: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    border-color: #2dbe60;
    box-shadow: 0 4px 16px rgba(45, 190, 96, 0.1);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 auto 16px;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-icon.green { background: #dcfce7; }
.feature-icon.green svg { stroke: #16a34a; }

.feature-icon.blue { background: #dbeafe; }
.feature-icon.blue svg { stroke: #2563eb; }

.feature-icon.orange { background: #ffedd5; }
.feature-icon.orange svg { stroke: #ea580c; }

.feature-icon.purple { background: #ede9fe; }
.feature-icon.purple svg { stroke: #7c3aed; }

.feature-icon.cyan { background: #cffafe; }
.feature-icon.cyan svg { stroke: #0891b2; }

.feature-icon.red { background: #fee2e2; }
.feature-icon.red svg { stroke: #dc2626; }

.feature-icon.teal { background: #ccfbf1; }
.feature-icon.teal svg { stroke: #0d9488; }

.feature-icon.pink { background: #fce7f3; }
.feature-icon.pink svg { stroke: #db2777; }

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.feature-card ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-card li {
    font-size: 13px;
    color: #64748b;
    padding-left: 12px;
    position: relative;
}

.feature-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 50%;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

.how-it-works h2 {
    font-size: 32px;
    text-align: center;
    color: #0f172a;
    margin-bottom: 8px;
}

.section-desc {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.step-card {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.step-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #2dbe60 0%, #1a9b4a 100%);
    border-radius: 50%;
}

.step-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.steps-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===========================
   OFFLINE
   =========================== */
.offline {
    padding: 80px 0;
    background: #f8fafc;
}

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

.offline-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #7c3aed;
    background: #ede9fe;
    border-radius: 16px;
    margin-bottom: 16px;
}

.offline h2 {
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 12px;
}

.offline-text > p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.7;
}

.offline-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.offline-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

.offline-feature svg {
    width: 18px;
    height: 18px;
    stroke: #2dbe60;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #0f172a;
    border-radius: 10px;
    transition: background 0.2s;
}

.btn-download:hover {
    background: #1e293b;
}

.btn-download svg {
    width: 20px;
    height: 20px;
}

/* Offline Visual */
.offline-visual {
    display: flex;
    justify-content: center;
}

.offline-app {
    width: 280px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.offline-app-header {
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.offline-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #dc2626;
    background: #fee2e2;
    border-radius: 12px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.offline-app-body {
    padding: 16px;
}

.offline-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 13px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.offline-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.offline-btn {
    width: 100%;
    padding: 12px;
    text-align: center;
    background: linear-gradient(135deg, #2dbe60 0%, #1a9b4a 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 8px;
}

.offline-sync {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: #fef3c7;
    font-size: 12px;
    color: #92400e;
}

.offline-sync svg {
    width: 14px;
    height: 14px;
    stroke: #f59e0b;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===========================
   USE CASES (SEO SECTION)
   =========================== */
.use-cases {
    padding: 80px 0;
    background: #fff;
}

.use-cases h2 {
    font-size: 32px;
    text-align: center;
    color: #0f172a;
    margin-bottom: 8px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.use-case-card {
    padding: 28px 24px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.2s;
}

.use-case-card:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.use-case-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 12px;
}

.use-case-icon svg {
    width: 24px;
    height: 24px;
    stroke: #059669;
}

.use-case-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.use-case-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.use-cases-bottom {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 24px 32px;
    background: #f0fdf4;
    border-radius: 12px;
}

.use-cases-bottom p {
    font-size: 15px;
    color: #166534;
    line-height: 1.7;
}

.use-cases-bottom strong {
    color: #059669;
}

/* ===========================
   PRICE
   =========================== */
.price {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.price-row {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.price-info {
    flex: 1;
    color: #fff;
}

.price-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.price-amount-lg {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #2dbe60 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-amount-lg span {
    font-size: 24px;
    font-weight: 600;
}

.price-info p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 16px;
}

.price-trial-badge {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #2dbe60;
    background: rgba(45, 190, 96, 0.15);
    border-radius: 20px;
}

.price-features {
    flex: 1;
    background: #fff;
    padding: 32px;
    border-radius: 16px;
}

.price-list-compact {
    margin-bottom: 24px;
}

.price-list-compact li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #334155;
}

.price-list-compact svg {
    width: 18px;
    height: 18px;
    stroke: #2dbe60;
    flex-shrink: 0;
}

.price-card {
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.price-header {
    padding: 32px;
    text-align: center;
    background: linear-gradient(135deg, #2dbe60 0%, #1a9b4a 100%);
    color: #fff;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.price-amount span {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.9;
}

.price-note {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.price-body {
    padding: 32px;
}

.price-list {
    margin-bottom: 24px;
}

.price-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list svg {
    width: 20px;
    height: 20px;
    stroke: #2dbe60;
    flex-shrink: 0;
}

.price-trial {
    text-align: center;
    padding: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #2dbe60;
    background: #f0fdf4;
    border-radius: 8px;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: 40px 0 24px;
    background: #0f172a;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand img {
    height: 32px;
}

.footer-brand span {
    font-size: 14px;
    color: #64748b;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: #94a3b8;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-card:nth-child(4),
    .step-card:nth-child(5) {
        grid-column: span 1;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-row {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .price-info,
    .price-features {
        width: 100%;
        max-width: 400px;
    }

    .offline-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .offline-visual {
        order: -1;
    }

    .offline-features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .btn-login {
        padding: 6px 14px;
        font-size: 13px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-modes {
        flex-direction: column;
        gap: 12px;
    }

    .hero-mode {
        padding: 14px 16px;
    }

    .hero-mode.has-badge {
        padding-top: 24px;
    }

    .hero-mode-badge {
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 10px;
        padding: 3px 10px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-card {
        padding: 14px 12px;
        text-align: center;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .feature-card h3 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .feature-card ul {
        gap: 3px;
    }

    .feature-card li {
        font-size: 11px;
        padding-left: 10px;
    }

    .feature-card li::before {
        top: 6px;
        width: 3px;
        height: 3px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .use-case-card {
        padding: 20px;
        text-align: center;
    }

    .use-case-icon {
        margin: 0 auto 12px;
    }

    .use-cases h2 {
        font-size: 26px;
    }

    .use-cases {
        padding: 60px 0;
    }

    .use-cases-bottom {
        padding: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 16px 20px;
        gap: 16px;
    }

    .step-num {
        margin: 0;
        flex-shrink: 0;
    }

    .step-card h3 {
        margin-bottom: 4px;
    }

    .step-card p {
        margin: 0;
    }

    .features h2,
    .offline h2,
    .how-it-works h2 {
        font-size: 28px;
    }

    .features,
    .offline,
    .price,
    .how-it-works {
        padding: 60px 0;
    }

    .price-amount-lg {
        font-size: 44px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        gap: 8px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-badge {
        font-size: 13px;
    }

    .price-card {
        margin: 0 -16px;
        border-radius: 0;
    }

    .price-amount {
        font-size: 40px;
    }

    .offline-app {
        width: 100%;
        max-width: 280px;
    }
}
