@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #ECEEF5;
    --bg2: #E4E7F0;
    --white: #F0F2F9;
    --brand: #6366F1;
    --brand2: #8B5CF6;
    --brand3: #06B6D4;
    --accent: #F59E0B;
    --green: #10B981;
    --red: #EF4444;
    --text1: #1E1B4B;
    --text2: #6B7280;
    --text3: #9CA3AF;

    --shadow-out: 6px 6px 16px #C8CAD6, -6px -6px 16px #FFFFFF;
    --shadow-in: inset 4px 4px 10px #C8CAD6, inset -4px -4px 10px #FFFFFF;
    --shadow-card: 8px 8px 20px #C4C6D2, -8px -8px 20px #FEFFFF;
    --shadow-hover: 12px 12px 28px #BBBDC9, -12px -12px 28px #FFFFFF;

    --r: 20px;
    --r-btn: 12px;
    --r-pill: 20px;
    --r-nav: 18px;
    --r-icon: 14px;
    --r-badge: 8px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg);
    color: var(--text1);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
    box-shadow: var(--shadow-in);
}
::-webkit-scrollbar-thumb {
    background: #C8CAD6;
    border-radius: 10px;
    border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
    background: #B4B6C2;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    color: var(--text1);
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mt-8 { margin-top: 32px; }

/* Sticky Floating Pill Navigation Bar */
header.site-header {
    position: sticky;
    top: 16px;
    z-index: 1000;
    margin-bottom: 24px;
    padding: 0 16px;
}

nav.nav-pill {
    background-color: var(--bg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    border-radius: var(--r-nav);
    box-shadow: var(--shadow-out);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 4px 4px 10px rgba(99,102,241,.3), -2px -2px 6px rgba(255,255,255,.8);
}

.logo-text {
    font-size: 20px;
    font-weight: 900;
    color: var(--text1);
}

.logo-text span {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text2);
    font-weight: 600;
    font-size: 14.5px;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--brand);
}

.nav-cta {
    text-decoration: none;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: white;
    border-radius: var(--r-btn);
    font-weight: 700;
    font-size: 13.5px;
    box-shadow: 4px 4px 12px rgba(99,102,241,.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 16px rgba(99,102,241,.4);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text1);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg);
    box-shadow: var(--shadow-out);
    z-index: 1100;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 27, 75, 0.1);
    backdrop-filter: blur(4px);
    z-index: 1050;
    display: none;
}

.mobile-nav-overlay.show {
    display: block;
}

.drawer-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text1);
}

.mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-links a {
    text-decoration: none;
    color: var(--text1);
    font-weight: 600;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 80px 24px 72px;
    text-align: center;
}

.badge-free {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    box-shadow: var(--shadow-out);
    padding: 8px 16px;
    border-radius: var(--r-pill);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 24px;
}

.green-dot {
    width: 8px;
    height: 8px;
    background-color: var(--green);
    border-radius: 50%;
    position: relative;
}

.green-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hero h1 {
    font-size: clamp(34px, 5.5vw, 68px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
    white-space: pre-line;
}

.hero-subtext {
    max-width: 600px;
    margin: 0 auto 32px;
    color: var(--text2);
    font-size: 16px;
}

/* Search bar Neomorphic Inset */
.search-wrapper {
    max-width: 560px;
    margin: 0 auto 24px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 16px 24px;
    border-radius: 30px;
    border: none;
    outline: none;
    background: var(--bg);
    box-shadow: var(--shadow-in);
    color: var(--text1);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.search-input::placeholder {
    color: var(--text3);
}

.search-input:focus {
    box-shadow: inset 5px 5px 12px #C2C4D0, inset -5px -5px 12px #FFFFFF;
}

/* Quick Tags */
.quick-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.tag-pill {
    text-decoration: none;
    color: var(--text2);
    font-size: 12.5px;
    font-weight: 600;
    background: var(--bg);
    box-shadow: var(--shadow-out);
    padding: 8px 16px;
    border-radius: var(--r-pill);
    transition: var(--transition);
}

.tag-pill:hover {
    color: var(--brand);
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}

/* Stat Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.stat-card {
    background: var(--bg);
    box-shadow: var(--shadow-card);
    border-radius: var(--r);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text3);
}

/* Popular Tools Cards */
.section-title {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    letter-spacing: -0.8px;
    text-align: center;
    margin-bottom: 32px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.tool-card {
    background: var(--bg);
    box-shadow: var(--shadow-card);
    border-radius: var(--r);
    padding: 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.tool-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.tool-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tool-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--r-icon);
    background: var(--bg);
    box-shadow: var(--shadow-out);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.tool-arrow {
    font-size: 18px;
    color: var(--text3);
    transition: var(--transition);
}

.tool-card:hover .tool-arrow {
    color: var(--brand);
    transform: translateX(4px);
}

.tool-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text1);
}

.tool-desc {
    font-size: 12.5px;
    color: var(--text2);
    line-height: 1.5;
}

.tool-tag {
    align-self: flex-start;
    padding: 4px 8px;
    border-radius: var(--r-badge);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--bg);
    box-shadow: var(--shadow-in);
    color: var(--brand);
}

/* Category Filter Tabs */
.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    overflow-x: auto;
    padding: 8px;
    gap: 12px;
}

.tab-btn {
    background: var(--bg);
    box-shadow: var(--shadow-out);
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: var(--r-pill);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text2);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--brand);
}

.tab-btn.active {
    box-shadow: var(--shadow-in);
    color: var(--brand);
}

/* Section Containers */
.section {
    padding: 64px 0;
}

.section-alt {
    background-color: var(--bg2);
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg);
    box-shadow: var(--shadow-card);
    border-radius: var(--r);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--bg);
    box-shadow: var(--shadow-out);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--bg);
    box-shadow: var(--shadow-card);
    border-radius: var(--r);
    padding: 32px;
    position: relative;
}

.step-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 40px;
    font-weight: 900;
    color: rgba(99,102,241,0.15);
}

.step-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.step-title {
    font-weight: 700;
    margin-bottom: 8px;
}

/* Table Style */
.table-wrapper {
    overflow-x: auto;
    box-shadow: var(--shadow-card);
    border-radius: var(--r);
    background: var(--bg);
    margin-bottom: 48px;
}

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

table.comparison-table th, table.comparison-table td {
    padding: 18px 24px;
}

table.comparison-table th {
    background: var(--bg2);
    font-weight: 700;
    color: var(--text1);
}

table.comparison-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

table.comparison-table td:nth-child(2), table.comparison-table th:nth-child(2) {
    background: rgba(99,102,241,0.05);
    font-weight: 700;
}

/* FAQs and Accordions */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--bg);
    box-shadow: var(--shadow-card);
    border-radius: var(--r-btn);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
    color: var(--text2);
    font-size: 14px;
    line-height: 1.6;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-toggle-icon {
    transition: transform 0.3s;
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(180deg);
}

/* Newsletter Section */
.newsletter-card {
    background: var(--bg);
    box-shadow: var(--shadow-card);
    border-radius: var(--r);
    padding: 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 24px auto 0;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--r-btn);
    border: none;
    outline: none;
    background: var(--bg);
    box-shadow: var(--shadow-in);
    font-size: 14px;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 24px;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--text2);
}

.breadcrumbs a:hover {
    color: var(--brand);
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--text3);
}

/* Tool Execution Page UI */
.tool-header-block {
    text-align: center;
    margin-bottom: 40px;
}

.tool-header-block .tool-large-icon {
    font-size: 64px;
    margin-bottom: 16px;
    display: inline-block;
}

.tool-header-block h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -1.2px;
    margin-bottom: 12px;
}

.tool-trust-strip {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text2);
}

/* Neomorphic Upload Zone */
.upload-zone-wrapper {
    max-width: 680px;
    margin: 0 auto 40px;
}

.upload-zone {
    background: var(--bg);
    box-shadow: var(--shadow-card);
    border: 3px dashed #C8CAD6;
    border-radius: var(--r);
    padding: 60px 40px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.upload-zone.dragover {
    border-color: var(--brand);
    box-shadow: var(--shadow-in);
    background: var(--bg2);
}

.upload-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.upload-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.upload-subtitle {
    font-size: 13px;
    color: var(--text2);
    margin-bottom: 16px;
}

.upload-limit {
    font-size: 11px;
    color: var(--text3);
    font-weight: 600;
    text-transform: uppercase;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Selected File Display & Tool Options */
.tool-interface {
    max-width: 680px;
    margin: 0 auto 40px;
    background: var(--bg);
    box-shadow: var(--shadow-card);
    border-radius: var(--r);
    padding: 32px;
    display: none;
}

.selected-files-list {
    margin-bottom: 24px;
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 4px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg);
    box-shadow: var(--shadow-in);
    border-radius: var(--r-btn);
    font-size: 13px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.file-name {
    font-weight: 600;
    color: var(--text1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    color: var(--text2);
}

.file-remove {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: var(--red);
    padding: 4px;
}

/* Controls & Inputs */
.option-group {
    margin-bottom: 20px;
}

.option-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 8px;
}

.input-text, .select-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--r-btn);
    border: none;
    outline: none;
    background: var(--bg);
    box-shadow: var(--shadow-in);
    font-size: 14px;
    color: var(--text1);
}

.input-text:focus, .select-control:focus {
    box-shadow: inset 5px 5px 12px #C2C4D0, inset -5px -5px 12px #FFFFFF;
}

.options-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Radio & Checkboxes */
.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--bg);
    box-shadow: var(--shadow-out);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.checkbox-label input {
    display: none;
}

.checkbox-label input:checked + .checkbox-custom {
    box-shadow: var(--shadow-in);
    color: var(--brand);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '✓';
    font-size: 12px;
    font-weight: 800;
}

/* Processing View */
.processing-view {
    text-align: center;
    display: none;
    margin: 32px 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(99,102,241,0.1);
    border-top: 5px solid var(--brand);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.progress-container {
    max-width: 300px;
    height: 10px;
    background: var(--bg);
    box-shadow: var(--shadow-in);
    border-radius: 5px;
    margin: 16px auto;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--brand), var(--brand2));
    border-radius: 5px;
    transition: width 0.2s;
}

/* Result View */
.result-view {
    text-align: center;
    display: none;
    padding: 32px;
    background: var(--bg);
    box-shadow: var(--shadow-card);
    border-radius: var(--r);
    max-width: 680px;
    margin: 0 auto 40px;
}

.result-icon {
    font-size: 54px;
    color: var(--green);
    margin-bottom: 16px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: white;
    padding: 14px 28px;
    border-radius: var(--r-btn);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 4px 4px 12px rgba(99,102,241,.3);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    margin: 20px 0;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 16px rgba(99,102,241,.4);
}

.reset-link {
    display: block;
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
}

.reset-link:hover {
    text-decoration: underline;
}

/* SEO prose section */
.seo-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.seo-article h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.seo-article p {
    color: var(--text2);
    margin-bottom: 20px;
    font-size: 14.5px;
    line-height: 1.7;
}

.seo-article ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text2);
}

.seo-article li {
    margin-bottom: 8px;
}

/* Related Tools Chips */
.related-tools-container {
    max-width: 800px;
    margin: 0 auto 64px;
}

.related-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.related-chip {
    text-decoration: none;
    color: var(--text1);
    font-weight: 600;
    font-size: 13.5px;
    background: var(--bg);
    box-shadow: var(--shadow-out);
    padding: 10px 18px;
    border-radius: var(--r-pill);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.related-chip:hover {
    box-shadow: var(--shadow-hover);
    color: var(--brand);
}

/* Footer Section */
footer.site-footer {
    background-color: var(--text1);
    color: rgba(255,255,255,0.6);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

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

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-brand-text {
    font-size: 18px;
    font-weight: 900;
    color: white;
}

.footer-brand-text span {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    color: rgba(255,255,255,0.9);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 12.5px;
}

.footer-bottom p:first-child {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
}

/* AdSense Zones placeholders */
.adsense-placeholder {
    margin: 24px auto;
    padding: 16px;
    background: var(--bg);
    box-shadow: var(--shadow-in);
    border-radius: var(--r-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.ads-top { max-width: 728px; height: 90px; }
.ads-sidebar { max-width: 300px; height: 250px; }
.ads-content { max-width: 680px; height: 200px; }
.ads-bottom { max-width: 728px; height: 90px; }

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .features-grid, .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    nav.nav-pill {
        padding: 12px 16px;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid, .steps-grid {
        grid-template-columns: 1fr;
    }
    .options-row {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 48px 16px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    .footer-col {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .tabs-container {
        justify-content: flex-start;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .nav-cta {
        padding: 8px 14px;
        font-size: 12px;
    }
}
