:root {
--bg: #0a0e1a;
--bg2: #0f1525;
--bg3: #141c30;
--surface: #1a2340;
--surface2: #1f2a4a;
--border: #2a3a5e;
--accent: #00d4ff;
--accent2: #0099cc;
--accent3: #00ff88;
--accent4: #ff6b35;
--text: #e8edf8;
--text2: #8fa3c8;
--text3: #5a6f96;
--font-head: 'Outfit', sans-serif;
--font-body: 'Inter', sans-serif;
--radius: 12px;
--radius-lg: 20px;
--shadow: 0 4px 24px rgba(0,0,0,0.4);
--glow: 0 0 30px rgba(0,212,255,0.15);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: var(--font-body);
font-size: 15px;
line-height: 1.7;
overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.25; }
img { max-width: 100%; height: auto; display: block; }

/* ── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── COOKIE BANNER ─────────────────────────── */
#cookie-banner {
position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
background: rgba(15,21,37,.97); border-top: 1px solid var(--border);
padding: 14px 24px;
display: flex; align-items: center; justify-content: space-between;
gap: 16px; flex-wrap: wrap;
backdrop-filter: blur(10px);
}
#cookie-banner p { font-size: 13px; color: var(--text2); flex: 1; min-width: 200px; }
#cookie-banner p a { color: var(--accent); }
#cookie-dismiss {
background: var(--accent); color: #000; border: none;
padding: 8px 20px; border-radius: 8px; font-weight: 700;
cursor: pointer; font-size: 13px; white-space: nowrap;
font-family: var(--font-head);
transition: background .2s;
}
#cookie-dismiss:hover { background: #fff; }

/* ── NAV ───────────────────────────────────── */
nav {
position: sticky; top: 0; z-index: 1000;
background: rgba(10,14,26,.96);
border-bottom: 1px solid var(--border);
backdrop-filter: blur(12px);
}
.nav-inner {
max-width: 1280px; margin: 0 auto;
padding: 0 24px;
display: flex; align-items: center; justify-content: space-between;
height: 60px;
}
.nav-logo {
font-family: var(--font-head); font-weight: 800; font-size: 18px;
color: #fff; display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--accent); }
.nav-logo-badge {
background: var(--accent); color: #000; font-size: 10px;
font-weight: 800; padding: 2px 6px; border-radius: 4px;
letter-spacing: 0.5px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
color: var(--text2); font-size: 14px; font-weight: 500;
padding: 6px 12px; border-radius: 8px;
transition: all .2s;
}
.nav-links a:hover { color: #fff; background: var(--surface); }
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
background: none; border: none; cursor: pointer;
color: var(--text2); font-size: 14px; font-weight: 500;
padding: 6px 12px; border-radius: 8px; display: flex;
align-items: center; gap: 4px; font-family: var(--font-body);
transition: all .2s;
}
.nav-dropdown-btn:hover { color: #fff; background: var(--surface); }
.nav-dropdown-btn svg { transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }
.dropdown-menu {
position: absolute; top: 100% ; left: 0;
background: var(--bg2); border: 1px solid var(--border);
border-radius: var(--radius); padding: 8px;
min-width: 260px; opacity: 0; pointer-events: none;
transform: translateY(-8px);
transition: all .2s;
box-shadow: var(--shadow);
z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
opacity: 1; pointer-events: all; transform: translateY(0);
}
.dropdown-menu a {
display: block; padding: 8px 12px; font-size: 13px;
color: var(--text2); border-radius: 6px;
transition: all .15s; white-space: nowrap;
}
.dropdown-menu a:hover { color: var(--accent); background: var(--surface); }
.dropdown-menu a.active { color: var(--accent); }
.nav-cta {
background: var(--accent); color: #000 !important;
font-weight: 700; padding: 7px 16px; border-radius: 8px;
}
.nav-cta:hover { background: #fff; color: #000 !important; }
.hamburger {
display: none; background: none; border: none; cursor: pointer;
flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
display: block; width: 22px; height: 2px;
background: var(--text2); border-radius: 2px;
transition: all .3s;
}
.mobile-nav {
display: none; flex-direction: column;
background: var(--bg2); border-top: 1px solid var(--border);
padding: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
padding: 10px 12px; color: var(--text2); font-size: 14px;
border-radius: 8px; transition: all .15s;
}
.mobile-nav a:hover { color: #fff; background: var(--surface); }
.mobile-nav-section { font-size: 11px; color: var(--text3); font-weight: 700; letter-spacing: 1px; padding: 8px 12px 4px; text-transform: uppercase; }

/* ── BREADCRUMB ────────────────────────────── */
.breadcrumb {
max-width: 1280px; margin: 0 auto;
padding: 12px 24px;
display: flex; align-items: center; gap: 8px;
font-size: 13px; color: var(--text3);
}
.breadcrumb a { color: var(--text3); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { flex-shrink: 0; }

/* ── HERO ──────────────────────────────────── */
.hero {
position: relative; overflow: hidden;
padding: 72px 24px 80px;
text-align: center;
}
.hero-bg {
position: absolute; inset: 0; z-index: 0;
background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(0,212,255,0.12) 0%, transparent 70%),
radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0,255,136,0.06) 0%, transparent 60%);
}
.hero-grid {
position: absolute; inset: 0; z-index: 0;
background-image:
linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
background-size: 40px 40px;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero-badge {
display: inline-flex; align-items: center; gap: 6px;
background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.25);
color: var(--accent); font-size: 12px; font-weight: 700;
padding: 5px 12px; border-radius: 20px; margin-bottom: 24px;
letter-spacing: 0.5px; text-transform: uppercase;
}
.hero h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 800;
color: #fff;
margin-bottom: 20px;
letter-spacing: -0.5px;
}
.hero h1 span { color: var(--accent); }
.hero-sub {
font-size: clamp(1rem, 2.5vw, 1.15rem);
color: var(--text2); margin-bottom: 36px;
max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-primary {
background: var(--accent); color: #000;
font-family: var(--font-head); font-weight: 700;
padding: 12px 28px; border-radius: 10px; border: none;
font-size: 15px; cursor: pointer;
transition: all .2s;
display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,212,255,0.3); }
.btn-secondary {
background: transparent; color: var(--text);
font-family: var(--font-head); font-weight: 600;
padding: 12px 28px; border-radius: 10px;
border: 1px solid var(--border);
font-size: 15px; cursor: pointer;
transition: all .2s;
display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats {
display: flex; align-items: center; justify-content: center;
gap: 32px; margin-top: 40px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: #fff; }
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { font-size: 12px; color: var(--text3); margin-top: 2px; }

/* ── GENERATOR ─────────────────────────────── */
.section { padding: 64px 24px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-label {
font-size: 11px; font-weight: 800; letter-spacing: 2px;
color: var(--accent); text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
font-size: clamp(1.6rem, 3vw, 2.2rem);
font-weight: 800; color: #fff; margin-bottom: 12px;
}
.section-desc { color: var(--text2); max-width: 560px; }

.generator-wrap {
display: grid; grid-template-columns: 1fr 1fr;
gap: 24px; margin-top: 40px;
}
@media(max-width: 900px) { .generator-wrap { grid-template-columns: 1fr; } }

.panel {
background: var(--surface); border: 1px solid var(--border);
border-radius: var(--radius-lg); overflow: hidden;
}
.panel-header {
padding: 16px 20px;
background: var(--bg2);
border-bottom: 1px solid var(--border);
display: flex; align-items: center; justify-content: space-between;
}
.panel-title {
font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff;
display: flex; align-items: center; gap: 8px;
}
.panel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.panel-body { padding: 20px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px){ .form-grid { grid-template-columns:1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1/-1; }
label { font-size: 12px; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; }
.input, select, textarea {
background: var(--bg2); border: 1px solid var(--border);
color: var(--text); border-radius: 8px;
padding: 9px 12px; font-size: 14px;
font-family: var(--font-body);
transition: border-color .2s, box-shadow .2s;
width: 100%;
}
.input:focus, select:focus, textarea:focus {
outline: none; border-color: var(--accent);
box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.input.error, select.error { border-color: #ff4d6a; }
.field-error { font-size: 11px; color: #ff4d6a; margin-top: 2px; display: none; }
.field-error.show { display: block; }
select option { background: var(--bg2); }
textarea { resize: vertical; min-height: 80px; }

.switch-row {
display: flex; align-items: center; justify-content: space-between;
padding: 10px 0; border-bottom: 1px solid var(--border);
}
.switch-row:last-child { border-bottom: none; }
.switch-label { font-size: 13px; color: var(--text2); font-weight: 500; }
.switch-label small { display: block; font-size: 11px; color: var(--text3); }
.toggle {
position: relative; width: 40px; height: 22px;
flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
position: absolute; inset: 0; background: var(--bg);
border: 1px solid var(--border); border-radius: 12px; cursor: pointer;
transition: all .25s;
}
.toggle-slider:before {
content: ''; position: absolute;
width: 16px; height: 16px; left: 2px; top: 2px;
background: var(--text3); border-radius: 50%;
transition: all .25s;
}
.toggle input:checked + .toggle-slider { background: rgba(0,212,255,0.2); border-color: var(--accent); }
.toggle input:checked + .toggle-slider:before { transform: translateX(18px); background: var(--accent); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tag {
background: var(--bg); border: 1px solid var(--border);
color: var(--text2); font-size: 12px; padding: 4px 10px;
border-radius: 6px; cursor: pointer; transition: all .15s;
}
.tag:hover, .tag.active { border-color: var(--accent); color: var(--accent); background: rgba(0,212,255,0.08); }

.add-row {
display: flex; gap: 8px; margin-top: 8px;
}
.add-row input { flex: 1; }
.btn-add {
background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3);
color: var(--accent); border-radius: 8px; padding: 0 14px;
font-size: 20px; cursor: pointer; line-height: 1;
transition: all .2s; font-weight: 300;
}
.btn-add:hover { background: rgba(0,212,255,0.2); }

.list-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.list-tag {
background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
color: var(--accent); font-size: 12px; padding: 3px 8px; border-radius: 6px;
display: flex; align-items: center; gap: 4px;
}
.list-tag button { background: none; border: none; color: #ff4d6a; cursor: pointer; font-size: 14px; line-height: 1; padding: 0 2px; }

.generate-btn {
width: 100%; padding: 14px;
background: linear-gradient(135deg, var(--accent), var(--accent2));
color: #000; font-family: var(--font-head); font-weight: 800;
font-size: 16px; border: none; border-radius: 10px; cursor: pointer;
margin-top: 20px; transition: all .2s;
display: flex; align-items: center; justify-content: center; gap: 8px;
letter-spacing: 0.3px;
}
.generate-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,255,0.3); }
.generate-btn:active { transform: translateY(0); }

/* Output Panel */
.output-panel { display: flex; flex-direction: column; }
.output-tabs {
display: flex; gap: 0; border-bottom: 1px solid var(--border);
}
.tab-btn {
padding: 10px 16px; font-size: 13px; font-weight: 600;
color: var(--text3); background: none; border: none;
cursor: pointer; font-family: var(--font-body);
border-bottom: 2px solid transparent; margin-bottom: -1px;
transition: all .2s;
}
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-btn:hover:not(.active) { color: var(--text2); }

.output-area {
flex: 1; position: relative; min-height: 400px;
}
.output-code {
display: none; padding: 16px;
font-family: 'Courier New', monospace; font-size: 13px;
line-height: 1.65; color: #cdd9f0;
white-space: pre; overflow: auto;
min-height: 400px; height: 100%;
tab-size: 2;
}
.output-code.active { display: block; }
/* Syntax highlight */
.t-kw { color: #79c0ff; }
.t-str { color: #a5d6ff; }
.t-cmt { color: #6e8cad; font-style: italic; }
.t-val { color: #ffa657; }
.t-cmd { color: var(--accent); font-weight: 600; }

.output-actions {
display: flex; gap: 8px; padding: 12px 16px;
border-top: 1px solid var(--border);
background: var(--bg2);
}
.action-btn {
display: flex; align-items: center; gap: 6px;
padding: 8px 14px; border-radius: 8px; font-size: 13px;
font-weight: 600; cursor: pointer; transition: all .2s;
font-family: var(--font-body);
}
.btn-clear { background: rgba(255,77,106,0.1); border: 1px solid rgba(255,77,106,0.2); color: #ff4d6a; }
.btn-clear:hover { background: rgba(255,77,106,0.2); }
.btn-copy { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); color: var(--accent); }
.btn-copy:hover { background: rgba(0,212,255,0.2); }
.btn-download { background: rgba(0,255,136,0.1); border: 1px solid rgba(0,255,136,0.2); color: var(--accent3); }
.btn-download:hover { background: rgba(0,255,136,0.2); }

.output-placeholder {
display: flex; flex-direction: column; align-items: center;
justify-content: center; min-height: 400px; gap: 12px;
color: var(--text3); text-align: center; padding: 24px;
}
.output-placeholder svg { opacity: 0.3; }
.output-placeholder p { font-size: 14px; }

.line-count {
font-size: 11px; color: var(--text3); margin-left: auto;
}

.toast {
position: fixed; top: 80px; right: 24px; z-index: 9998;
background: var(--bg2); border: 1px solid var(--accent);
color: #fff; padding: 12px 18px; border-radius: 10px;
font-size: 13px; font-weight: 600;
transform: translateX(120%); transition: transform .3s;
display: flex; align-items: center; gap: 8px;
box-shadow: var(--shadow);
}
.toast.show { transform: translateX(0); }

/* ── FEATURES ──────────────────────────────── */
.features-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px; margin-top: 48px;
}
.feature-card {
background: var(--surface); border: 1px solid var(--border);
border-radius: var(--radius-lg); padding: 28px;
transition: all .25s;
position: relative; overflow: hidden;
}
.feature-card::before {
content: ''; position: absolute;
top: 0; left: 0; right: 0; height: 2px;
background: linear-gradient(90deg, var(--accent), transparent);
transform: scaleX(0); transform-origin: left;
transition: transform .3s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-3px); box-shadow: var(--glow); }
.feature-icon {
width: 48px; height: 48px; border-radius: 12px;
background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2);
display: flex; align-items: center; justify-content: center;
font-size: 22px; margin-bottom: 16px;
}
.feature-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ── HOW IT WORKS ──────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 48px; }
.step {
text-align: center; padding: 32px 20px;
background: var(--surface); border: 1px solid var(--border);
border-radius: var(--radius-lg); position: relative;
}
.step-num {
width: 44px; height: 44px; border-radius: 50%;
background: linear-gradient(135deg, var(--accent), var(--accent2));
color: #000; font-family: var(--font-head); font-weight: 800;
font-size: 18px; display: flex; align-items: center; justify-content: center;
margin: 0 auto 16px;
}
.step-title { font-family: var(--font-head); font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text2); }

/* ── SEO CONTENT ───────────────────────────── */
.seo-section {
background: var(--bg2); border-radius: var(--radius-lg);
border: 1px solid var(--border); padding: 40px;
margin-top: 40px;
}
.seo-section h2 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 20px; }
.seo-section p { color: var(--text2); margin-bottom: 16px; font-size: 14px; line-height: 1.8; }
.seo-section strong { color: var(--text); }
.seo-section code {
background: var(--bg); color: var(--accent); padding: 2px 6px;
border-radius: 4px; font-size: 13px; font-family: 'Courier New', monospace;
}

/* ── FAQ ───────────────────────────────────── */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
background: var(--surface); border: 1px solid var(--border);
border-radius: var(--radius); overflow: hidden;
}
.faq-q {
width: 100%; background: none; border: none; color: var(--text);
font-family: var(--font-body); font-size: 15px; font-weight: 600;
padding: 18px 20px; text-align: left; cursor: pointer;
display: flex; align-items: center; justify-content: space-between;
transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q svg { transition: transform .3s; flex-shrink: 0; }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-a {
font-size: 14px; color: var(--text2); line-height: 1.75;
padding: 0 20px; max-height: 0; overflow: hidden;
transition: max-height .35s ease, padding .35s ease;
}
.faq-a.open { max-height: 300px; padding: 0 20px 18px; }

/* ── CTA ───────────────────────────────────── */
.cta-section {
background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(0,255,136,0.04) 100%);
border: 1px solid var(--border); border-radius: var(--radius-lg);
padding: 60px 40px; text-align: center; margin-top: 40px;
position: relative; overflow: hidden;
}
.cta-section::before {
content: ''; position: absolute;
width: 400px; height: 400px; border-radius: 50%;
background: radial-gradient(circle, rgba(0,212,255,0.06), transparent);
top: -200px; right: -100px;
}
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: #fff; margin-bottom: 12px; }
.cta-section p { color: var(--text2); margin-bottom: 28px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-btn {
display: inline-flex; align-items: center; gap: 8px;
padding: 12px 24px; border-radius: 10px;
font-family: var(--font-head); font-weight: 700; font-size: 14px;
transition: all .2s; border: 1px solid;
}
.cta-btn-primary { background: var(--accent); color: #000; border-color: var(--accent); }
.cta-btn-primary:hover { background: #fff; color: #000; }
.cta-btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.cta-btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ── TOOLS GRID ────────────────────────────── */
.tools-section { padding: 48px 24px 0; }
.tools-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 10px; margin-top: 24px;
}
.tool-link {
background: var(--surface); border: 1px solid var(--border);
border-radius: 8px; padding: 10px 14px;
font-size: 13px; color: var(--text2);
display: flex; align-items: center; gap: 8px;
transition: all .15s;
}
.tool-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,212,255,0.05); }
.tool-link::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ── FOOTER ────────────────────────────────── */
footer {
background: var(--bg2); border-top: 1px solid var(--border);
padding: 48px 24px 24px; margin-top: 64px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
display: grid; grid-template-columns: 1.2fr 1fr 1fr;
gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
@media(max-width:768px){ .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 13px; color: var(--text3); margin-top: 12px; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; color: #fff; margin-bottom: 16px; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; }
.footer-links a, .footer-col a {
font-size: 12px; color: var(--text3);
display: block; padding: 2px 0;
transition: color .15s; line-height: 1.5;
}
.footer-links a:hover, .footer-col a:hover { color: var(--accent); }
.footer-col .single-links { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom {
display: flex; align-items: center; justify-content: space-between;
padding-top: 24px; gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--text3); }
.footer-bottom a { color: var(--text3); }
.footer-bottom a:hover { color: var(--accent); }
.disclaimer { font-size: 11px; color: var(--text3); margin-top: 8px; line-height: 1.6; }

/* ── RESPONSIVE ────────────────────────────── */
@media(max-width:768px) {
.nav-links, .nav-dropdown { display: none; }
.hamburger { display: flex; }
.hero { padding: 48px 16px 56px; }
.section { padding: 48px 16px; }
.tools-section { padding: 36px 16px 0; }
.seo-section { padding: 24px; }
.cta-section { padding: 36px 20px; }
.output-actions { flex-wrap: wrap; }
.footer-links { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
.form-grid { grid-template-columns: 1fr; }
.breadcrumb { font-size: 12px; }
.hero-stats { gap: 20px; }
}