:root {
    --brand-50: #f0fdfa; --brand-100: #ccfbf1; --brand-200: #99f6e4; --brand-300: #5eead4; --brand-400: #2dd4bf; --brand-500: #14b8a6; --brand-600: #0d9488; --brand-700: #0f766e; --brand-800: #115e59; --brand-900: #134e4a; --brand-950: #042f2e;
    --accent-50: #f5f3ff; --accent-100: #ede9fe; --accent-500: #8b5cf6; --accent-600: #7c3aed;
    --slate-50: #f8fafc; --slate-100: #f1f5f9; --slate-200: #e2e8f0; --slate-300: #cbd5e1; --slate-400: #94a3b8; --slate-500: #64748b; --slate-600: #475569; --slate-700: #334155; --slate-800: #1e293b; --slate-900: #0f172a; --slate-950: #020617;
    --bg-color: #FAFAFA; --container-padding: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--bg-color); color: var(--slate-900); line-height: 1.5; -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; cursor: pointer; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img, video { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--container-padding); }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 var(--container-padding); }
.hidden { display: none !important; opacity: 0; visibility: hidden; }
.bg-white { background-color: #ffffff; }

/* Enhanced PWA App Banner (Mobile Only Floating Card) */
.pwa-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: calc(100% - 32px); max-width: 450px; background: white; padding: 16px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); z-index: 1000; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--slate-100); transition: 0.3s transform, 0.3s opacity; }
@media (min-width: 768px) { .pwa-banner { display: none !important; } }
.pwa-banner-content { display: flex; align-items: center; gap: 12px; font-size: 13px; line-height: 1.2; }
.pwa-banner-content strong { color: var(--slate-900); font-size: 15px; }
.pwa-banner-content p { color: var(--slate-500); margin-top: 2px; }

/* Header */
.header { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--slate-100); height: 64px; }
.header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 800; color: var(--slate-900); letter-spacing: -0.5px; }
.logo-icon { background-color: var(--brand-500); color: white; padding: 6px; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2); transition: background-color 0.3s; }
.logo:hover .logo-icon { background-color: var(--brand-600); }
.desktop-nav { display: none; align-items: center; gap: 32px; }
.desktop-nav a { font-size: 14px; font-weight: 600; color: var(--slate-600); transition: color 0.3s; }
.desktop-nav a:hover { color: var(--brand-600); }
.lang-switch { position: relative; display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; color: var(--slate-600); background: var(--slate-50); padding: 6px 12px; border-radius: 50px; border: 1px solid var(--slate-200); cursor: pointer; transition: background 0.3s; }
.lang-switch:hover { background: var(--slate-100); }
.lang-dropdown { position: absolute; top: 100%; right: 0; background: white; border: 1px solid var(--slate-200); border-radius: 12px; padding: 8px 0; margin-top: 8px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); display: none; min-width: 120px; z-index: 100; }
.lang-switch:hover .lang-dropdown, .lang-switch:focus-within .lang-dropdown { display: block; }
.lang-dropdown button { display: block; width: 100%; text-align: left; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--slate-700); transition: 0.2s; }
.lang-dropdown button:hover { background: var(--brand-50); color: var(--brand-600); }
.mobile-menu-btn { display: block; font-size: 24px; color: var(--slate-600); padding: 8px; }
.mobile-nav { position: absolute; top: 64px; left: 0; width: 100%; background: white; border-top: 1px solid var(--slate-100); box-shadow: 0 10px 25px rgba(0,0,0,0.05); display: none; flex-direction: column; }
.mobile-nav.active { display: flex; }
.mobile-nav a { padding: 16px 20px; font-size: 16px; font-weight: 500; color: var(--slate-700); border-bottom: 1px solid var(--slate-50); display: block; }
.mobile-nav a:active { background-color: var(--slate-50); }
@media (min-width: 768px) { .desktop-nav { display: flex; } .mobile-menu-btn { display: none; } .mobile-nav { display: none !important; } }

/* Hero */
.hero { background: linear-gradient(135deg, var(--brand-950) 0%, var(--brand-900) 100%); position: relative; overflow: hidden; padding: 80px 0 100px; color: white; text-align: center; }
.hero-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; padding: 0 16px; }
.hero h1 { font-size: 36px; font-weight: 800; line-height: 1.1; margin-bottom: 16px; letter-spacing: -1px; }
.hero p { font-size: 16px; color: var(--brand-200); font-weight: 500; margin-bottom: 40px; }
.hero-terms { font-size: 10px !important; color: rgba(255,255,255,0.6) !important; margin-top: 24px; font-weight: 400; }
.hero-terms a { text-decoration: underline; color: rgba(255,255,255,0.8); }
@media (min-width: 768px) { .hero { padding: 100px 0 120px; } .hero h1 { font-size: 56px; } .hero p { font-size: 20px; } }
.blob { position: absolute; border-radius: 50%; mix-blend-mode: multiply; filter: blur(60px); opacity: 0.3; pointer-events: none; animation: blobAnim 7s infinite; }
.blob-1 { top: -100px; left: -100px; width: 400px; height: 400px; background: var(--brand-400); }
.blob-2 { top: 50%; right: -100px; width: 400px; height: 400px; background: var(--accent-500); animation-delay: 2s; }
@keyframes blobAnim { 0% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -50px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } 100% { transform: translate(0, 0) scale(1); } }

/* Form Inputs */
.input-wrapper { background: white; border-radius: 50px; display: flex; align-items: center; padding: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 2px solid transparent; transition: all 0.3s; max-width: 650px; margin: 0 auto; }
.input-wrapper:focus-within { border-color: var(--brand-500); box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2); }
.input-icon { color: var(--slate-400); padding: 0 12px 0 16px; font-size: 20px; display: none; }
.input-field { flex-grow: 1; border: none; outline: none; background: transparent; font-size: 16px; color: var(--slate-900); padding: 12px 16px; font-family: inherit; font-weight: 500; }
.input-field::placeholder { color: var(--slate-400); }
.input-actions { display: flex; gap: 6px; align-items: center; }
.btn { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 15px; font-weight: 700; border-radius: 50px; transition: all 0.3s; height: 44px; }
.btn-text { display: none; }
.btn-paste { background: var(--slate-100); color: var(--slate-700); width: 44px; }
.btn-paste:hover { background: var(--slate-200); }
.btn-download { background: linear-gradient(to right, var(--brand-500), var(--brand-600)); color: white; width: 44px; box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3); position: relative; }
.btn-download:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(20, 184, 166, 0.4); }
@media (min-width: 500px) { .input-icon { display: block; } .btn { padding: 0 20px; width: auto; } .btn-text { display: inline; } .btn .ph { font-size: 18px; } .btn-download .ph { display: none; } }

/* Ad & Loader Spaces */
.ad-space { width: 100%; max-width: 970px; margin: 24px auto; background: #f8f9fa; border: 1px dashed var(--slate-200); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--slate-400); font-size: 12px; min-height: 90px; overflow: hidden; text-align: center; }
.loader { border: 2px solid rgba(255,255,255,0.3); border-radius: 50%; border-top: 2px solid #ffffff; width: 20px; height: 20px; animation: spin 1s linear infinite; display: none; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
@keyframes spin { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }
.btn-download.loading .btn-text, .btn-download.loading .ph { opacity: 0; }
.btn-download.loading .loader { display: block; }
.btn-download.loading { pointer-events: none; opacity: 0.9; }

/* Result Layout */
@keyframes slideUp { 0% { transform: translateY(20px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
.result-section { background: var(--slate-50); padding: 40px 0; border-bottom: 1px solid var(--slate-200); animation: slideUp 0.4s ease-out; }
.glass-panel { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 24px; box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08); padding: 24px; max-width: 900px; margin: 0 auto; }
.result-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.result-title { font-size: 20px; font-weight: 800; display: flex; align-items: center; gap: 8px; color: var(--slate-900); }
.result-title .ph-check-circle { color: var(--brand-500); }
.btn-close { font-size: 20px; color: var(--slate-400); padding: 8px; border-radius: 50%; background: var(--slate-100); transition: 0.3s; }
.btn-close:hover { color: var(--slate-700); background: var(--slate-200); }
.result-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 768px) { .result-grid { grid-template-columns: 300px 1fr; gap: 32px; } .glass-panel { padding: 32px; } }
.video-box { width: 100%; max-width: 300px; margin: 0 auto; background: var(--slate-900); border-radius: 16px; overflow: hidden; position: relative; aspect-ratio: 9/16; box-shadow: 0 10px 25px rgba(0,0,0,0.15); cursor: pointer; }
.video-thumbnail { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 1; }
.play-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); z-index: 2; display: flex; align-items: center; justify-content: center; transition: opacity 0.3s; }
.play-overlay .ph-play-circle { font-size: 64px; color: white; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
.video-box:hover .play-overlay { background: rgba(0,0,0,0.4); }
.video-player { width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; z-index: 3; background: black; }
.author-info { display: flex; align-items: center; gap: 12px; margin-top: 16px; justify-content: center; }
@media (min-width: 768px) { .author-info { justify-content: flex-start; } }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--slate-200); }
.author-details { text-align: left; line-height: 1.2; }
.author-name { font-weight: 700; font-size: 14px; color: var(--slate-900); }
.author-handle { font-size: 12px; color: var(--slate-500); }
.video-caption { font-size: 14px; color: var(--slate-600); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Download Cards */
.dl-options-list { display: flex; flex-direction: column; gap: 12px; }
.dl-card { display: flex; flex-direction: column; padding: 16px; border-radius: 16px; border: 1px solid var(--slate-200); background: white; transition: all 0.3s; cursor: pointer; }
.dl-card:hover { border-color: var(--brand-300); background: var(--brand-50); }
.dl-card-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 12px; }
.dl-info { display: flex; align-items: center; gap: 12px; flex-grow: 1; }
.dl-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.dl-nowm .dl-icon { background: var(--brand-500); color: white; }
.dl-hd .dl-icon { background: var(--slate-800); color: white; }
.dl-wm .dl-icon { background: var(--slate-100); color: var(--slate-600); }
.dl-mp3 .dl-icon { background: var(--accent-100); color: var(--accent-600); }
.dl-text-wrap { text-align: left; }
.dl-title { font-weight: 700; font-size: 15px; color: var(--slate-900); }
.dl-subtitle { font-size: 12px; font-weight: 500; color: var(--slate-500); }
.dl-nowm .dl-subtitle { color: var(--brand-600); }
.dl-meta { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: 12px; }
.dl-size { font-size: 12px; font-weight: 600; color: var(--slate-500); background: var(--slate-100); padding: 4px 8px; border-radius: 6px; }
.dl-action-btn { font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 10px; transition: 0.3s; }
.dl-nowm .dl-action-btn { background: var(--brand-600); color: white; }
.dl-nowm:hover .dl-action-btn { background: var(--brand-700); }
.dl-hd .dl-action-btn { background: var(--slate-900); color: white; display: flex; align-items: center; gap: 4px; }
.dl-hd .ph-sparkle { color: #facc15; }
.dl-wm .dl-action-btn { background: var(--slate-100); color: var(--slate-700); border: 1px solid var(--slate-200); }
.dl-mp3 .dl-action-btn { background: var(--accent-50); color: var(--accent-600); border: 1px solid var(--accent-200); }
@media (min-width: 500px) { .dl-card { flex-direction: row; align-items: center; justify-content: space-between; } .dl-meta { width: auto; margin-top: 0; gap: 16px; justify-content: flex-end; } }

/* Sections */
.section-padding { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 28px; font-weight: 800; color: var(--slate-900); margin-bottom: 8px; }
.section-header p { font-size: 16px; color: var(--slate-600); font-weight: 500; }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .section-padding { padding: 100px 0; } .section-header h2 { font-size: 36px; } .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } .step-card:nth-child(2) { transform: translateY(-16px); } }
.step-card { background: white; padding: 32px 24px; border-radius: 24px; text-align: center; border: 1px solid var(--slate-100); box-shadow: 0 4px 20px rgba(0,0,0,0.02); transition: 0.3s; }
.step-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.step-num { width: 56px; height: 56px; border-radius: 16px; background: var(--brand-50); color: var(--brand-600); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; margin: 0 auto 24px; }
.step-card.active .step-num { background: var(--brand-500); color: white; box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3); }
.step-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--slate-600); line-height: 1.6; }

/* SEO Content Area */
.seo-content { background: white; padding: 60px 0; border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); }
.article-body h2 { font-size: 24px; font-weight: 800; margin-bottom: 16px; }
.article-body h3 { font-size: 20px; font-weight: 700; margin: 24px 0 12px; }
.article-body p { margin-bottom: 16px; color: var(--slate-600); }
.article-body ul { margin-left: 20px; margin-bottom: 24px; list-style-type: disc; color: var(--slate-600); }
.article-body li { margin-bottom: 8px; }

/* FAQ Accordion */
.faq-wrapper { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: white; border: 1px solid var(--slate-200); border-radius: 16px; overflow: hidden; transition: 0.3s; }
.accordion-item:hover { border-color: var(--slate-300); }
.accordion-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px; text-align: left; font-size: 15px; font-weight: 600; color: var(--slate-900); }
.accordion-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--slate-50); color: var(--slate-400); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; flex-shrink: 0; }
.accordion-content { padding: 0 20px 20px; font-size: 14px; color: var(--slate-600); line-height: 1.6; display: none; border-top: 1px solid var(--slate-100); margin-top: -5px; padding-top: 15px; }
.accordion-item.active .accordion-icon { transform: rotate(180deg); }
.accordion-item.active .accordion-content { display: block; }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: white; border-radius: 24px; overflow: hidden; border: 1px solid var(--slate-100); display: flex; flex-direction: column; cursor: pointer; transition: 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.blog-img-wrap { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover img { transform: scale(1.05); }
.blog-badge { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); padding: 4px 12px; border-radius: 50px; font-size: 10px; font-weight: 800; text-transform: uppercase; color: var(--brand-700); letter-spacing: 0.5px; z-index: 10; }
.blog-card-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-title { font-size: 18px; font-weight: 800; color: var(--slate-900); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-desc { font-size: 14px; color: var(--slate-600); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-meta { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--slate-100); display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; color: var(--slate-500); }

/* Single Blog Page */
.blog-single-header { background: var(--slate-50); padding: 40px 0; border-bottom: 1px solid var(--slate-100); }
.back-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--brand-600); margin-bottom: 24px; cursor: pointer; }
.blog-single-title { font-size: 28px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; letter-spacing: -0.5px; }
@media (min-width: 768px) { .blog-single-title { font-size: 40px; } .blog-single-header { padding: 60px 0; } }
.blog-author-bar { display: flex; align-items: center; justify-content: space-between; }
.share-btn { width: 40px; height: 40px; border-radius: 50%; background: white; border: 1px solid var(--slate-200); display: flex; align-items: center; justify-content: center; color: var(--slate-600); font-size: 18px; transition: 0.3s; }
.share-btn:hover { color: var(--brand-600); border-color: var(--brand-300); }
.blog-body-content { padding: 40px 0 80px; max-width: 800px; margin: 0 auto; }
.blog-feat-img { border-radius: 24px; margin-bottom: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; height: auto; }
.author-box { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: 24px; padding: 32px; display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; margin-top: 60px; }
.author-box img { width: 80px; height: 80px; border-radius: 50%; border: 4px solid white; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.author-box h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.author-box p { font-size: 14px; color: var(--slate-600); margin-bottom: 16px; }
@media (min-width: 600px) { .author-box { flex-direction: row; text-align: left; align-items: flex-start; } }

/* Modals */
.modal-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(6px); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal-overlay.active { display: flex; animation: fadeIn 0.2s ease-out; }
.modal-box { background: white; border-radius: 24px; width: 100%; max-width: 400px; padding: 32px; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--slate-100); display: flex; align-items: center; justify-content: center; color: var(--slate-500); }
.modal-title { font-size: 18px; font-weight: 800; text-align: center; margin-bottom: 24px; }
.share-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.share-item { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; color: var(--slate-600); }
.share-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; transition: 0.3s; }
.share-item:hover .share-icon { color: white !important; }
.icon-tw { background: rgba(29, 161, 242, 0.1); color: #1DA1F2; } .share-item:hover .icon-tw { background: #1DA1F2; }
.icon-fb { background: rgba(24, 119, 242, 0.1); color: #1877F2; } .share-item:hover .icon-fb { background: #1877F2; }
.icon-wa { background: rgba(37, 211, 102, 0.1); color: #25D366; } .share-item:hover .icon-wa { background: #25D366; }
.icon-cp { background: var(--slate-100); color: var(--slate-700); } .share-item:hover .icon-cp { background: var(--slate-700); }
.copy-box { display: flex; align-items: center; gap: 8px; background: var(--slate-50); border: 1px solid var(--slate-200); padding: 6px; border-radius: 12px; }
.copy-input { flex-grow: 1; border: none; background: transparent; font-size: 12px; color: var(--slate-500); padding: 0 8px; outline: none; }
.copy-btn { font-size: 12px; font-weight: 700; color: var(--brand-600); background: var(--brand-50); padding: 6px 12px; border-radius: 8px; }
@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }

/* Footer */
.footer { background: var(--slate-950); color: var(--slate-300); padding: 60px 0 24px; border-top: 1px solid var(--slate-800); margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 800; color: white; margin-bottom: 16px; }
.footer-logo .ph { background: var(--brand-500); padding: 4px; border-radius: 8px; }
.footer-desc { font-size: 14px; color: var(--slate-400); margin-bottom: 24px; max-width: 300px; }
.footer h4 { color: white; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 12px; font-size: 14px; font-weight: 500; }
.footer a:hover { color: var(--brand-400); }
.footer-bottom { border-top: 1px solid var(--slate-800); padding-top: 24px; font-size: 12px; color: var(--slate-500); text-align: center; }

/* Toast */
#toast-container { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { pointer-events: auto; padding: 12px 24px; border-radius: 50px; font-weight: 600; font-size: 14px; color: white; box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2); display: flex; align-items: center; gap: 10px; animation: slideUp 0.3s ease forwards; transition: opacity 0.3s; }
.toast.success { background-color: #10B981; }
.toast.error { background-color: #EF4444; }
.toast.info { background-color: #3B82F6; }