* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --foreground: #000;
    --background: #fff;
    --accents-1: #f4f4f5;
    --accents-2: #e4e4e7;
    --accents-3: #999;
    --accents-4: #888;
    --accents-5: #666;
    --accents-6: #444;
    --accents-7: #333;
    --accents-8: #111;
    --sc-orange: #ff5500;
    --sc-orange-hover: #e64d00;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-sans);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Dark Mode */
html.dark-mode,
body.dark-mode {
    --background: #0a0a0a;
    --foreground: #ededed;
    --accents-1: #1a1a1a;
    --accents-2: #2a2a2a;
    --accents-3: #3a3a3a;
    --accents-4: #666;
    --accents-5: #888;
    --accents-6: #aaa;
    --accents-7: #ddd;
}

html.dark-mode header,
body.dark-mode header {
    background: rgba(10, 10, 10, 0.95);
}

html.dark-mode .hero h1 .gradient-text,
body.dark-mode .hero h1 .gradient-text {
    background: linear-gradient(to bottom right, var(--foreground), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
}

/* Header */
/* Navbar */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid var(--accents-2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .header-inner {
        padding: 0 24px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    color: var(--foreground);
    flex-shrink: 0;
}

.logo .brand {
    color: var(--sc-orange);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    font-size: 14px;
    font-weight: 500;
    color: var(--accents-5);
    text-decoration: none;
    transition: color 0.15s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-desktop a:hover {
    color: var(--foreground);
    background: var(--accents-1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: var(--accents-5);
    transition: all 0.15s ease;
}

.btn-icon:hover {
    background: var(--accents-1);
    color: var(--foreground);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

.mobile-menu-btn {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--background);
    border-top: 1px solid var(--accents-2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--accents-5);
    text-decoration: none;
    transition: color 0.15s ease;
}

.mobile-menu a:hover {
    color: var(--foreground);
}

/* Hero Section */
.hero {
    position: relative;
    /* Allow dropdown to overflow */
    overflow: visible;
    padding: 48px 0 40px;
    text-align: center;
    /* Ensure hero content stacks above subsequent sections */
    z-index: 10;
}

@media (min-width: 640px) {
    .hero {
        padding: 56px 0 48px;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 72px 0 80px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 80px 0 100px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(to right, rgba(128, 128, 128, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(128, 128, 128, 0.07) 1px, transparent 1px);
    background-size: 24px 24px;
}

.hero h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 24px;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

.hero h1 .brand {
    color: var(--sc-orange);
}

.hero h1 .gradient-text {
    background: linear-gradient(to bottom right, var(--foreground), rgba(0, 0, 0, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1rem;
    color: var(--accents-5);
    max-width: 600px;
    margin: 0 auto 32px;
    padding: 0 8px;
}

@media (min-width: 640px) {
    .hero .subtitle {
        font-size: 1.125rem;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .hero .subtitle {
        font-size: 1.25rem;
        margin-bottom: 40px;
    }
}

/* Download Box */
.download-box {
    max-width: 800px;
    margin: 0 auto;
}

.download-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .download-form {
        flex-direction: row;
    }
}

.input-group {
    position: relative;
    flex: 1;
    min-width: 0;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--accents-4);
    pointer-events: none;
}

.input-group input {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 40px;
    background: var(--background);
    border: 1px solid var(--accents-2);
    border-radius: 8px;
    font-size: 14px;
    color: var(--foreground);
    outline: none;
    transition: all 0.2s ease;
}

@media (min-width: 640px) {
    .input-group input {
        height: 56px;
        font-size: 16px;
    }
}

.input-group input:focus {
    border-color: var(--accents-4);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.input-group input::placeholder {
    color: var(--accents-4);
}

.btn-download {
    height: 48px;
    padding: 0 32px;
    background: var(--foreground);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--background);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .btn-download {
        height: 56px;
        padding: 0 40px;
        font-size: 16px;
    }
}

.btn-download:hover {
    background: var(--accents-7);
}

.btn-download svg {
    width: 16px;
    height: 16px;
}

.hint {
    font-size: 12px;
    color: var(--accents-4);
    margin-top: 16px;
}

@media (min-width: 640px) {
    .hint {
        font-size: 14px;
    }
}

/* Loader */
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--accents-2);
    border-top-color: var(--sc-orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error Banner */
.error-banner {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 14px;
}

/* Track Card */
.track-card {
    display: flex;
    gap: 12px;
    background: var(--accents-1);
    border: 1px solid var(--accents-2);
    border-radius: 10px;
    padding: 10px 12px;
    margin-top: 8px;
    align-items: center;
    transition: all 0.2s ease;
}

@media (max-width: 640px) {
    .track-card {
        gap: 10px;
    }
}

.track-card:hover {
    background: var(--accents-2);
}

.track-art {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--accents-2);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .track-art {
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 768px) {
    .track-art {
        width: 48px;
        height: 48px;
    }
}

.track-details {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.track-title {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

@media (min-width: 640px) {
    .track-title {
        font-size: 14px;
        margin-bottom: 2px;
    }
}

@media (min-width: 768px) {
    .track-title {
        font-size: 14px;
    }
}

.track-artist {
    color: var(--accents-5);
    font-size: 12px;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

@media (min-width: 640px) {
    .track-artist {
        font-size: 13px;
        margin-bottom: 0;
    }
}

.track-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--accents-4);
    flex-wrap: wrap;
    align-items: center;
}

.track-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.track-actions {
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex-shrink: 0;
    align-items: center;
}

@media (max-width: 640px) {
    .track-actions {
        gap: 6px;
    }
}

.download-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

@media (max-width: 640px) {
    .download-actions {
        width: 100%;
        flex-direction: column;
    }
}

/* Single Track Card */
.single-track-card {
    background: var(--accents-1);
    border: 1px solid var(--accents-2);
    border-radius: 12px;
    padding: 16px;
    margin-top: 24px;
}

.single-track-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.single-track-mobile .track-info {
    text-align: left;
    width: 100%;
}

.single-track-mobile .track-title {
    white-space: normal;
    line-height: 1.3;
}

.single-track-desktop {
    display: none;
}

@media (min-width: 640px) {
    .single-track-mobile {
        display: none;
    }

    .single-track-desktop {
        display: flex;
        gap: 20px;
        align-items: center;
    }
}

.track-art-large {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .track-art-large {
        width: 80px;
        height: 80px;
    }
}

.track-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.track-duration {
    font-size: 13px;
    color: var(--accents-5);
    margin-top: 4px;
}

/* Custom Select - shadcn style */
.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
    min-width: 100px;
    max-width: 180px;
}

@media (max-width: 640px) {
    .custom-select {
        max-width: none;
    }
}

/* Force full width in mobile single track view */
.single-track-mobile .custom-select {
    width: 100%;
    max-width: none;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 6px 10px;
    background: var(--background);
    border: 1px solid var(--accents-2);
    border-radius: 6px;
    color: var(--foreground);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: all 0.15s ease;
}

@media (min-width: 640px) {
    .select-trigger {
        padding: 8px 10px;
        font-size: 13px;
    }
}

.select-trigger:hover {
    border-color: var(--accents-3);
}

.select-trigger:focus {
    border-color: var(--foreground);
    outline: none;
}

.select-trigger[aria-expanded="true"] {
    border-color: var(--foreground);
}

.select-trigger svg {
    width: 12px;
    height: 12px;
    color: var(--accents-5);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.select-trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.select-value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select-content {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--background);
    border: 1px solid var(--accents-2);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    padding: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.15s ease;
    max-height: 180px;
    overflow-y: auto;
}

html.dark-mode .select-content,
body.dark-mode .select-content {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.custom-select.open .select-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-label {
    display: none;
}

.select-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 6px 6px 24px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.1s ease;
    position: relative;
}

.select-item:hover {
    background: var(--accents-1);
}

.select-item.selected {
    background: var(--accents-1);
}

.select-item.selected::before {
    content: '';
    position: absolute;
    left: 6px;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

html.dark-mode .select-item.selected::before,
body.dark-mode .select-item.selected::before {
    filter: invert(1);
}

.select-item-text {
    flex: 1;
}

.select-item-badge {
    font-size: 9px;
    padding: 1px 4px;
    background: var(--accents-1);
    border-radius: 3px;
    color: var(--accents-5);
}

.select-item-badge.hq {
    background: rgba(255, 85, 0, 0.1);
    color: var(--sc-orange);
}

/* Hide native select but keep for form */
.format-select-native {
    display: none;
}

.btn-track-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 10px;
    background: var(--foreground);
    color: var(--background);
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    width: 100%;
    min-width: 100px;
    max-width: 180px;
}

@media (max-width: 640px) {
    .btn-track-download {
        max-width: none;
    }
}

@media (min-width: 640px) {
    .btn-track-download {
        padding: 8px 10px;
        font-size: 13px;
        min-width: 120px;
    }
}

.btn-track-download:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.btn-track-download svg {
    width: 14px;
    height: 14px;
}

@media (min-width: 640px) {
    .btn-track-download svg {
        width: 16px;
        height: 16px;
    }
}

/* Single Track Preview Card */
.single-track-card {
    background: var(--accents-1);
    border: 1px solid var(--accents-2);
    border-radius: 12px;
    padding: 16px;
    margin-top: 24px;
}

/* Mobile layout - stacked */
.single-track-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .single-track-mobile {
        display: none;
    }
}

.single-track-mobile .track-art-large {
    width: 192px;
    height: 192px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.single-track-mobile .track-info {
    text-align: left;
    width: 100%;
}

.single-track-mobile .track-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    text-align: left;
}

.single-track-mobile .track-artist {
    font-size: 14px;
    color: var(--accents-5);
    margin-bottom: 4px;
    text-align: left;
}

.single-track-mobile .track-duration {
    font-size: 12px;
    color: var(--accents-4);
}

.single-track-mobile .btn-track-download {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
}

/* Desktop layout - horizontal */
.single-track-desktop {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (min-width: 768px) {
    .single-track-desktop {
        display: flex;
    }
}

.single-track-desktop .track-art-large {
    width: 128px;
    height: 128px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.single-track-desktop .track-info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.single-track-desktop .track-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.single-track-desktop .track-artist {
    font-size: 16px;
    color: var(--accents-5);
    margin-bottom: 8px;
    text-align: left;
}

.single-track-desktop .track-meta {
    font-size: 14px;
    color: var(--accents-4);
}

.single-track-desktop .download-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

/* Playlist Header */
.playlist-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--accents-1);
    border: 1px solid var(--accents-2);
    border-radius: 12px;
    padding: 16px;
    margin-top: 24px;
    align-items: center;
}

@media (min-width: 640px) {
    .playlist-header {
        flex-direction: row;
        padding: 20px;
    }
}

.playlist-header img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 640px) {
    .playlist-header img {
        width: 96px;
        height: 96px;
    }
}

.playlist-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

@media (min-width: 640px) {
    .playlist-header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
}

.playlist-info h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

@media (min-width: 640px) {
    .playlist-info h2 {
        font-size: 20px;
    }
}

.playlist-info .meta {
    color: var(--accents-5);
    font-size: 14px;
}

.playlist-tracks-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}

.playlist-tracks-subtitle {
    font-size: 14px;
    color: var(--accents-5);
    margin-bottom: 16px;
}

.playlist-tracks {
    margin-top: 8px;
}

.playlist-tracks .track-card {
    margin-top: 4px;
}

.playlist-tracks .track-card:first-child {
    margin-top: 0;
}

/* Track number in playlist */
.track-number {
    font-size: 12px;
    color: var(--accents-5);
    font-weight: 500;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .track-card {
        padding: 8px 10px;
        gap: 8px;
    }

    .track-number {
        width: 20px;
        font-size: 11px;
    }

    .track-actions {
        flex-direction: row;
    }

    .format-select {
        min-width: 80px;
        font-size: 11px;
        padding: 4px 8px;
    }

    .btn-track-download {
        padding: 4px 10px;
        font-size: 11px;
    }
}

/* Success Message */
.success-message {
    background: var(--accents-1);
    border: 1px solid var(--accents-2);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    text-align: center;
}

.success-message p {
    margin-bottom: 8px;
}

.success-message .btn-outline {
    margin-top: 16px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--accents-2);
    border-radius: 8px;
    color: var(--foreground);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.success-message .btn-outline:hover {
    background: var(--accents-1);
}

/* Features Section */
.features {
    padding: 80px 0;
    border-top: 1px solid var(--accents-2);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: var(--accents-5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 28px;
    background: var(--accents-1);
    border: 1px solid var(--accents-2);
    border-radius: 12px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accents-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--foreground);
    stroke-width: 2;
    fill: none;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--accents-5);
    line-height: 1.6;
}

/* How to Use Section */
.how-to-use {
    padding: 64px 0;
    background: var(--background);
}

@media (min-width: 768px) {
    .how-to-use {
        padding: 96px 0;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    position: relative;
    background: var(--accents-1);
    border: 1px solid var(--accents-2);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--foreground);
    color: var(--background);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.step-card p {
    font-size: 14px;
    color: var(--accents-5);
    line-height: 1.6;
}

.step-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accents-1);
    color: var(--foreground);
    margin-bottom: 4px;
}

.step-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

/* CTA Card (Vercel-style) */
.cta-card {
    margin-top: 40px;
    background: var(--accents-1);
    border: 1px solid var(--accents-2);
    color: var(--foreground);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-card {
        margin-top: 48px;
        padding: 40px;
    }
}

.cta-card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .cta-card h3 {
        font-size: 24px;
    }
}

.cta-card .cta-trusted {
    font-size: 13px;
    color: var(--accents-6);
    margin-bottom: 12px;
}

.cta-card .cta-desc {
    font-size: 14px;
    color: var(--accents-6);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 28px;
    background: var(--foreground);
    color: var(--background);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.cta-card .cta-btn:hover {
    opacity: 0.85;
}

.cta-card .cta-btn svg {
    width: 16px;
    height: 16px;
}

/* FAQ Section */
.faq {
    padding: 32px 0;
    background: var(--background);
}

@media (min-width: 768px) {
    .faq {
        padding: 64px 0;
    }
}

.faq .section-header {
    margin-bottom: 32px;
}

.faq-list {
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--accents-2);
    border-radius: 8px;
    overflow: hidden;
    background: var(--background);
}

.faq-question {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    color: var(--foreground);
    transition: background 0.15s ease;
}

.faq-question:hover {
    background: var(--accents-1);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accents-5);
    stroke-width: 2;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 16px;
    font-size: 15px;
    color: var(--accents-5);
    line-height: 1.7;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--accents-2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--accents-5);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--accents-5);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: var(--foreground);
}

/* Responsive */
@media (max-width: 900px) {

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    nav {
        display: none;
    }

    .input-group {
        margin-bottom: 12px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
}
