/* ══════════════════════════════════════════
   SEOWILL-inspired Landing — LLM SEO Optimization
   ══════════════════════════════════════════ */

:root {
    --sw-green: #00c48c;
    --sw-green-dark: #00a876;
    --sw-green-light: #e6faf4;
    --sw-green-mid: #b2f0dc;
    --sw-text: #1a1a2e;
    --sw-text-muted: #6b7280;
    --sw-border: #e5e7eb;
    --sw-bg: #ffffff;
    --sw-bg-gray: #f9fafb;
    --sw-radius: 12px;
    --sw-shadow: 0 4px 24px rgba(0,0,0,0.06);
    --sw-shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
}

*, *::before, *::after { box-sizing: border-box; }

.sw-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--sw-text);
    background: var(--sw-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── Top Bar ─── */
.sw-topbar {
    background: var(--sw-green);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
}

.sw-topbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.sw-topbar a:hover { text-decoration: underline; }

/* ─── Navbar ─── */
.sw-nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sw-border);
    padding: 0.85rem 0;
    top: 34px !important;
    transition: box-shadow 0.3s;
}

.sw-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }

.sw-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--sw-text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.sw-logo-icon {
    width: 36px; height: 36px;
    background: var(--sw-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.sw-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sw-text-muted) !important;
    padding: 0.4rem 0.85rem !important;
    transition: color 0.2s;
}

.sw-nav .nav-link:hover { color: var(--sw-text) !important; }

/* ─── Buttons ─── */
.sw-btn-primary {
    background: var(--sw-green);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1.4rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.sw-btn-primary:hover {
    background: var(--sw-green-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,196,140,0.35);
}

.sw-btn-lg {
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border-radius: 10px;
}

.sw-btn-outline {
    background: transparent;
    border: 2px solid var(--sw-border);
    color: var(--sw-text);
    font-weight: 600;
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    transition: all 0.2s;
    text-decoration: none;
}

.sw-btn-outline:hover {
    border-color: var(--sw-green);
    color: var(--sw-green);
    background: var(--sw-green-light);
}

.sw-btn-white {
    background: #fff;
    color: var(--sw-green-dark);
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 2.5rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.sw-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    color: var(--sw-green-dark);
}

/* ─── Hero ─── */
.sw-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(180deg, #f0fdf8 0%, #ffffff 60%);
    position: relative;
    overflow: hidden;
}

.sw-hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,196,140,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.sw-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.sw-tag {
    display: inline-block;
    background: #f3f4f6;
    color: var(--sw-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    border: 1px solid var(--sw-border);
}

.sw-tag-green {
    background: var(--sw-green-light);
    color: var(--sw-green-dark);
    border-color: var(--sw-green-mid);
}

.sw-hero-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: var(--sw-text);
    margin-bottom: 1.75rem;
}

.sw-trusted {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.sw-trusted p {
    font-size: 0.875rem;
    color: var(--sw-text-muted);
    margin: 0;
}

.sw-avatars {
    display: flex;
}

.sw-avatars span {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.sw-avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #00c48c, #00a876); }
.sw-avatars span:nth-child(2) { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.sw-avatars span:nth-child(3) { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.sw-avatars span:nth-child(4) { background: linear-gradient(135deg, #f59e0b, #d97706); }

/* ─── Hero Visual ─── */
.sw-hero-visual {
    position: relative;
}

.sw-browser {
    background: #fff;
    border: 1px solid var(--sw-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sw-shadow-lg);
}

.sw-browser-bar {
    background: #f3f4f6;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--sw-border);
}

.sw-browser-bar span {
    width: 11px; height: 11px;
    border-radius: 50%;
}

.sw-browser-bar span:nth-child(1) { background: #ef4444; }
.sw-browser-bar span:nth-child(2) { background: #f59e0b; }
.sw-browser-bar span:nth-child(3) { background: #10b981; }

.sw-browser-url {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    color: #9ca3af;
    background: #fff;
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
    margin: 0 1rem;
    border: 1px solid var(--sw-border);
}

.sw-browser-body { padding: 1.25rem; }

.sw-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.sw-dash-title { font-weight: 700; font-size: 0.9rem; }

.sw-score-badge {
    background: var(--sw-green-light);
    color: var(--sw-green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
}

.sw-dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.sw-metric {
    background: var(--sw-bg-gray);
    border-radius: 8px;
    padding: 0.65rem;
    text-align: center;
}

.sw-metric strong { display: block; font-size: 1.1rem; font-weight: 800; line-height: 1; }
.sw-metric span { font-size: 0.65rem; color: var(--sw-text-muted); }
.sw-metric.green strong { color: var(--sw-green); }
.sw-metric.blue strong { color: #3b82f6; }
.sw-metric.orange strong { color: #f59e0b; }

.sw-dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 70px;
    margin-bottom: 0.85rem;
    padding: 0 0.25rem;
}

.sw-bar {
    flex: 1;
    background: #e5e7eb;
    border-radius: 4px 4px 0 0;
    transition: height 0.6s ease;
}

.sw-bar.active { background: var(--sw-green); }

.sw-dash-tasks { display: flex; flex-direction: column; gap: 0.35rem; }

.sw-task {
    font-size: 0.72rem;
    color: var(--sw-text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.5rem;
    background: var(--sw-bg-gray);
    border-radius: 6px;
}

.sw-task.done { color: var(--sw-green-dark); }
.sw-task.done i { color: var(--sw-green); }

.sw-float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--sw-border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: var(--sw-shadow);
    animation: swFloat 4s ease-in-out infinite;
}

.sw-float-card i { font-size: 1.3rem; color: var(--sw-green); }
.sw-float-card strong { display: block; font-size: 0.95rem; font-weight: 800; line-height: 1; }
.sw-float-card small { font-size: 0.68rem; color: var(--sw-text-muted); }

.sw-float-1 { top: 5%; right: -5%; animation-delay: 0s; }
.sw-float-2 { bottom: 10%; left: -8%; animation-delay: 2s; }

@keyframes swFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ─── Stats ─── */
.sw-stats {
    padding: 3.5rem 0;
    background: #fff;
    border-top: 1px solid var(--sw-border);
    border-bottom: 1px solid var(--sw-border);
}

.sw-stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--sw-green);
    letter-spacing: -0.04em;
    line-height: 1;
}

.sw-stat-num::before { content: '+'; font-size: 1.5rem; vertical-align: super; }

.sw-stat-label {
    font-size: 0.9rem;
    color: var(--sw-text-muted);
    font-weight: 500;
    margin-top: 0.35rem;
}

/* ─── Sections ─── */
.sw-section {
    padding: 5rem 0;
}

.sw-section-gray { background: var(--sw-bg-gray); }

.sw-section-head { margin-bottom: 3rem; }

.sw-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--sw-text);
    margin-bottom: 0.5rem;
}

.sw-arrow { color: var(--sw-green); }

.sw-section-head p {
    font-size: 1.05rem;
    color: var(--sw-text-muted);
}

/* ─── Feature Cards ─── */
.sw-feature-card {
    background: #fff;
    border: 1px solid var(--sw-border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.25s;
}

.sw-feature-card:hover {
    border-color: var(--sw-green-mid);
    box-shadow: var(--sw-shadow);
    transform: translateY(-3px);
}

.sw-feature-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.sw-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
    color: var(--sw-text);
}

.sw-feature-card > p {
    font-size: 0.875rem;
    color: var(--sw-text-muted);
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

.sw-feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.sw-feature-card ul li {
    font-size: 0.85rem;
    color: var(--sw-text);
    font-weight: 500;
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sw-feature-card ul li i { color: var(--sw-green); font-size: 0.9rem; }

.sw-explore-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--sw-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s;
}

.sw-explore-link:hover { gap: 0.6rem; color: var(--sw-green-dark); }

/* ─── Guarantee Cards ─── */
.sw-guarantee-card {
    background: #fff;
    border: 1px solid var(--sw-border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    height: 100%;
    text-align: center;
    transition: all 0.25s;
}

.sw-guarantee-card:hover { box-shadow: var(--sw-shadow); }

.sw-guarantee-card.featured {
    border-color: var(--sw-green);
    background: linear-gradient(180deg, var(--sw-green-light) 0%, #fff 100%);
}

.sw-guarantee-icon {
    width: 56px; height: 56px;
    background: var(--sw-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--sw-green);
    margin: 0 auto 1.25rem;
}

.sw-guarantee-card h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.sw-quote {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sw-text);
    font-style: italic;
    margin-bottom: 0.65rem;
    line-height: 1.5;
}

.sw-guarantee-desc {
    font-size: 0.8rem;
    color: var(--sw-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ─── Pricing ─── */
.sw-pricing-card {
    background: #fff;
    border: 2px solid var(--sw-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    position: relative;
    text-align: center;
    transition: all 0.25s;
}

.sw-pricing-card:hover {
    border-color: var(--sw-green-mid);
    box-shadow: var(--sw-shadow);
    transform: translateY(-4px);
}

.sw-pricing-card.featured {
    border-color: var(--sw-green);
    background: linear-gradient(180deg, var(--sw-green-light) 0%, #fff 40%);
}

.sw-pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--sw-green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}

.sw-pricing-card h4 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.sw-price { margin-bottom: 1.5rem; }

.sw-price .currency { font-size: 1.2rem; font-weight: 700; color: var(--sw-text-muted); vertical-align: super; }
.sw-price .amount { font-size: 2.75rem; font-weight: 800; letter-spacing: -0.04em; color: var(--sw-text); }
.sw-price .period { font-size: 0.875rem; color: var(--sw-text-muted); }

.sw-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.sw-pricing-card ul li {
    font-size: 0.85rem;
    color: var(--sw-text-muted);
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sw-pricing-card ul li i { color: var(--sw-green); flex-shrink: 0; }

/* ─── CTA ─── */
.sw-cta {
    background: linear-gradient(135deg, var(--sw-green) 0%, #00a876 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.sw-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sw-cta .container { position: relative; z-index: 1; }

.sw-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sw-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Footer ─── */
.sw-footer {
    background: #111827;
    color: rgba(255,255,255,0.6);
}

.sw-footer .sw-logo { color: #fff; }

.sw-footer-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    max-width: 300px;
}

.sw-footer h6 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.sw-footer ul { list-style: none; padding: 0; margin: 0; }
.sw-footer ul li { margin-bottom: 0.45rem; }
.sw-footer ul a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.sw-footer ul a:hover { color: var(--sw-green); }

.sw-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ─── Pricing page ─── */
.sw-section-light { padding-top: 8rem; }

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
    .sw-hero { padding: 8rem 0 3rem; }
    .sw-float-1, .sw-float-2 { display: none; }
    .sw-section { padding: 3.5rem 0; }
}

@media (max-width: 575.98px) {
    .sw-stat-num { font-size: 2.25rem; }
    .sw-hero-title { font-size: 1.5rem; }
    .sw-topbar span:first-child { font-size: 0.72rem; }
}
