/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0b0c0f;
    --bg-elevated: #15171e;
    --bg-card: #1a1d27;
    --border: #2a2e3b;
    --text: #e8eaf0;
    --text-muted: #8b92a8;
    --accent: #5e6ad2;
    --accent-light: #7b82e0;
    --accent-glow: rgba(94,106,210,0.25);
    --success: #3ccf4a;
    --warning: #f5a623;
    --radius: 14px;
    --radius-sm: 8px;
    --max-width: 1100px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-light); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === Header === */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11,12,15,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}
.logo-accent { color: var(--accent); }

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover { color: var(--text); text-decoration: none; }

/* === Hero === */
.hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 720px;
    position: relative;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-light), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-pill {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--border); }

.btn-buy {
    background: var(--accent);
    color: #fff;
    width: 100%;
    margin-top: auto;
}
.btn-buy:hover { background: var(--accent-light); }

.btn-full { width: 100%; }

/* === Sections === */
section { padding: 72px 0; }

.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 48px;
    font-size: 1rem;
}

/* === Formats === */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.format-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.format-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.format-icon { font-size: 2.2rem; margin-bottom: 12px; }

.format-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.format-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* === How it works === */
.how-it-works { background: var(--bg-elevated); }

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.step {
    flex: 1;
    min-width: 180px;
    max-width: 230px;
    text-align: center;
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

.step-arrow {
    color: var(--text-muted);
    font-size: 1.5rem;
    margin-top: 8px;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .step-arrow { display: none; }
    .steps { flex-direction: column; align-items: center; }
}

/* === Examples === */
.examples { background: var(--bg); }
.examples .eyebrow { text-align: center; }
.example-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .8fr);
    gap: 28px;
    align-items: center;
    margin-top: 8px;
}
.example-video-card {
    background: linear-gradient(145deg, rgba(94,106,210,.28), rgba(15,23,42,.85));
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 8px);
    padding: 12px;
    box-shadow: 0 18px 60px rgba(0,0,0,.28);
}
.example-video-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    background: #000;
}
.example-copy {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.example-copy h3 {
    margin: 16px 0 10px;
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.example-copy p,
.example-list { color: var(--text-muted); font-size: .95rem; line-height: 1.65; }
.example-list { margin-top: 14px; padding-left: 18px; }
.example-list li { margin-bottom: 6px; }

@media (max-width: 860px) {
    .example-feature { grid-template-columns: 1fr; }
}

/* === Pricing === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover { transform: translateY(-3px); }

.pricing-card.popular { border-color: var(--accent); }
.pricing-card.best-value { border-color: var(--success); }

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 14px;
    border-radius: 100px;
}

.pricing-card.best-value .popular-badge { background: var(--success); }

.pricing-header { text-align: center; margin-bottom: 20px; }
.pricing-header h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }

.price {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.currency { font-size: 1.2rem; font-weight: 600; margin-left: 2px; }

.price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 7px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative;
    padding-left: 20px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.pricing-photos { background: var(--bg-elevated); }

/* === Supplements === */
.supplements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.supplement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
}

.supplement-name { font-size: 0.95rem; }
.supplement-price { font-weight: 700; color: var(--accent-light); }

.supplements-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* === Notice === */
.notice { padding: 0 0 72px; }

.notice-box {
    background: rgba(245,166,35,0.08);
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    font-size: 0.95rem;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}

.notice-box strong { color: var(--warning); }

/* === Contact === */
.contact { background: var(--bg-elevated); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.contact-value {
    font-size: 1.05rem;
    color: var(--text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group textarea { resize: vertical; min-height: 90px; }

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* === FAQ === */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.98rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    padding: 0 24px 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === Footer === */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.footer-contact a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* === WhatsApp float === */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 99;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.whatsapp-link { color: #25d366 !important; font-weight: 600; }

/* === Sticky CTA mobile === */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    background: rgba(11,12,15,0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    gap: 10px;
    justify-content: center;
}
.sticky-cta .btn { flex: 1; max-width: 200px; }

@media (max-width: 768px) {
    .sticky-cta { display: flex; }
    .whatsapp-float { bottom: 80px; }
}

/* === Footer legal links === */
.footer-legal-links { margin-top: 8px; }
.footer-legal-links a { color: var(--text-muted); font-size: 0.82rem; }

@media (max-width: 640px) {
    .header-inner {
        height: auto;
        min-height: 64px;
        padding: 10px 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 14px;
    }
    .logo { font-size: 1.12rem; }
    .nav { gap: 12px; flex-wrap: wrap; justify-content: center; }
    .nav a { font-size: 0.82rem; }
    .container { padding: 0 16px; }
    .hero { padding: 60px 0 48px; }
    section { padding: 48px 0; }
    .footer-inner { flex-direction: column; }
    .footer-contact { text-align: left; }
}

/* === Order workflow / hoja de pedido === */
.order-workflow { background: var(--bg-elevated); }
.order-workflow-grid,
.mode-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 28px;
}
.order-workflow-card,
.mode-card,
.share-panel,
.order-form,
.client-mode-banner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.order-workflow-card h3,
.mode-card h2,
.share-panel h2,
.order-form h2 { margin-bottom: 10px; font-size: 1.1rem; }
.order-workflow-card p,
.mode-card p,
.share-panel p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.mode-letter {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    margin-bottom: 14px;
}
.order-hero { padding: 72px 0 48px; }
.eyebrow { color: var(--accent-light); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: .8rem; margin-bottom: 8px; }
.order-hero h1 { font-size: clamp(2rem, 4vw, 3rem); max-width: 780px; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.03em; }
.order-builder { padding: 48px 0; background: var(--bg-elevated); }
.order-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; }
.order-form { display: flex; flex-direction: column; gap: 20px; }
.form-grid { display: grid; gap: 16px; }
.form-grid.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.full-span { grid-column: 1 / -1; }
.order-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.share-panel { position: sticky; top: 84px; }
.share-panel hr { border: 0; border-top: 1px solid var(--border); margin: 22px 0; }
.order-document-section { padding: 48px 0 80px; background: #eef0f6; color: #1f2937; }
.client-mode-banner { background: #fff7ed; border-color: #fed7aa; color: #7c2d12; margin-bottom: 18px; }
.order-document {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    color: #1f2937;
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .16);
    padding: 42px;
}
.doc-header { display: flex; justify-content: space-between; gap: 24px; border-bottom: 2px solid #e5e7eb; padding-bottom: 24px; margin-bottom: 26px; }
.doc-header h2 { color: #111827; font-size: 1.6rem; line-height: 1.2; margin-bottom: 6px; }
.doc-header p { color: #6b7280; }
.doc-kicker { color: #4f46e5 !important; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.doc-meta { text-align: right; display: flex; flex-direction: column; gap: 6px; color: #374151; }
.doc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.order-document h3 { color: #111827; font-size: 1rem; margin-bottom: 12px; }
.order-document dl { display: grid; gap: 8px; }
.order-document dl div { display: grid; grid-template-columns: 120px 1fr; gap: 10px; border-bottom: 1px solid #f3f4f6; padding-bottom: 6px; }
.order-document dt { color: #6b7280; font-size: .86rem; }
.order-document dd { color: #111827; font-weight: 600; overflow-wrap: anywhere; }
.doc-block { border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; margin: 14px 0; }
.doc-block p { color: #374151; white-space: pre-wrap; min-height: 26px; }
.doc-terms { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px; padding: 18px; margin: 18px 0; }
.doc-terms ul { padding-left: 20px; color: #374151; }
.doc-terms li { margin-bottom: 6px; }
.accept-row { display: flex; gap: 10px; align-items: flex-start; background: #eef2ff; border: 1px solid #c7d2fe; border-radius: 12px; padding: 12px 14px; margin-bottom: 14px; color: #312e81; }
.signer-fields { margin-bottom: 14px; }
.signature-pad-wrap { border: 2px dashed #9ca3af; border-radius: 14px; background: #fff; overflow: hidden; touch-action: none; }
#signaturePad { width: 100%; height: 220px; display: block; background: #fff; touch-action: none; user-select: none; -webkit-user-select: none; cursor: crosshair; }
.signature-print { width: 100%; max-height: 220px; object-fit: contain; border: 1px solid #d1d5db; border-radius: 10px; margin-top: 12px; }
.signature-line { display: flex; justify-content: space-between; border-top: 1px solid #9ca3af; margin-top: 18px; padding-top: 8px; color: #4b5563; font-size: .9rem; }
.client-mode .operator-only { display: none; }
.client-mode .order-hero { display: none; }

@media (max-width: 900px) {
    .order-layout { grid-template-columns: 1fr; }
    .share-panel { position: static; }
}
@media (max-width: 720px) {
    .form-grid.two-cols,
    .doc-grid { grid-template-columns: 1fr; }
    .doc-header { flex-direction: column; }
    .doc-meta { text-align: left; }
    .order-document { padding: 24px; border-radius: 0; }
    .order-document dl div { grid-template-columns: 1fr; }
}
@media print {
    @page { size: A4 portrait; margin: 8mm; }
    /* The page margins leave a 194 × 281 mm printable area. Forcing the
       full 210 × 297 mm sheet here guarantees overflow onto a second page. */
    html, body { width: auto !important; min-height: 0 !important; height: auto !important; }
    body { margin: 0 !important; background: #fff !important; color: #111 !important; font-size: 8.6pt !important; line-height: 1.24 !important; }
    .no-print, .header, .footer, .whatsapp-float, .sticky-cta { display: none !important; }
    .order-document-section { padding: 0 !important; background: #fff !important; }
    .container { max-width: none !important; padding: 0 !important; }
    .order-document { width: 100% !important; max-width: none !important; box-shadow: none !important; border-radius: 0 !important; padding: 0 !important; font-size: 8.6pt !important; line-height: 1.24 !important; }
    .doc-header { gap: 10px !important; padding-bottom: 8px !important; margin-bottom: 8px !important; border-bottom-width: 1px !important; }
    .doc-header h2 { font-size: 14pt !important; margin-bottom: 2px !important; }
    .doc-header p, .doc-meta { font-size: 8pt !important; }
    .doc-kicker { font-size: 7pt !important; }
    .doc-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; margin-bottom: 8px !important; }
    .order-document h3 { font-size: 9pt !important; margin-bottom: 4px !important; }
    .order-document dl { gap: 3px !important; }
    .order-document dl div { grid-template-columns: 25mm 1fr !important; gap: 5px !important; padding-bottom: 2px !important; }
    .order-document dt { font-size: 7.4pt !important; }
    .order-document dd { font-size: 8.2pt !important; }
    .doc-block { padding: 6px 8px !important; margin: 5px 0 !important; border-radius: 6px !important; page-break-inside: avoid !important; break-inside: avoid !important; }
    .doc-block p { min-height: 0 !important; font-size: 8pt !important; }
    .doc-terms { padding: 7px 9px !important; margin: 6px 0 !important; border-radius: 6px !important; page-break-inside: avoid !important; break-inside: avoid !important; }
    .doc-terms ul { padding-left: 14px !important; }
    .doc-terms li { margin-bottom: 2px !important; font-size: 7.6pt !important; }
    .signature-section { page-break-inside: avoid !important; break-inside: avoid !important; }
    .signature-print { max-height: 32mm !important; margin-top: 3mm !important; border-radius: 4px !important; }
    .signature-line { margin-top: 5mm !important; padding-top: 2mm !important; font-size: 8pt !important; }
    .signature-print[hidden] { display: none !important; }
    a { color: inherit !important; text-decoration: none !important; }
}


/* SEO service pages */
.seo-services { padding: 90px 0; background: linear-gradient(180deg, rgba(15,23,42,0.18), rgba(15,23,42,0)); }
.seo-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.seo-service-card { display: block; padding: 26px; border: 1px solid var(--border); border-radius: 20px; background: var(--bg-card); text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.seo-service-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-lg); }
.seo-service-card span { color: var(--accent-light); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.seo-service-card h3 { color: var(--text); margin: 10px 0 8px; font-size: 1.25rem; }
.seo-service-card p { color: var(--text-muted); line-height: 1.65; }
.service-page { padding-top: 72px; }
.service-hero { padding: 90px 0 70px; background: radial-gradient(circle at top left, rgba(251,146,60,.16), transparent 34%), var(--bg); }
.service-hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 42px; align-items: center; }
.service-hero h1 { font-size: clamp(2.35rem, 5vw, 4.5rem); line-height: 1.02; letter-spacing: -0.045em; margin: 0 0 22px; }
.service-summary-card, .service-cta-card { border: 1px solid var(--border); background: var(--bg-card); border-radius: 22px; padding: 28px; box-shadow: var(--shadow-lg); }
.service-summary-card h2, .service-cta-card h2 { font-size: 1.35rem; margin-bottom: 16px; }
.service-summary-card ul, .service-content article ul { padding-left: 20px; color: var(--text-muted); line-height: 1.8; }
.service-content { padding: 76px 0; }
.service-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 42px; align-items: start; }
.service-content article { max-width: 760px; }
.service-content h2 { font-size: 1.8rem; margin: 0 0 14px; }
.service-content h2:not(:first-child) { margin-top: 36px; }
.service-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.service-cta-card { position: sticky; top: 96px; }
.service-cta-card p { color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.service-faq { padding-top: 0; }
@media (max-width: 900px) {
    .seo-services-grid, .service-hero-grid, .service-content-grid { grid-template-columns: 1fr; }
    .service-cta-card { position: static; }
}
