/**
 * Arya Signer — Landing Page
 */

/* ==========================================================================
   GP OVERRIDES
   ========================================================================== */

.page-template-page-inicio .site-header,
.page-template-page-inicio .site-info,
.page-template-page-inicio .main-navigation { display: none !important; }

.page-template-page-inicio #page {
    display: block !important;
    max-width: 100% !important;
    overflow: visible !important;
    background: var(--signer-bg);
}

.page-template-page-inicio .site-content {
    display: block !important;
    overflow: visible !important;
    padding: 0; margin: 0;
}

.page-template-page-inicio .site-content .content-area {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0; margin: 0;
    float: none !important;
}

.page-template-page-inicio .inside-article {
    display: block !important;
    padding: 0; margin: 0;
    background: transparent;
}

.page-template-page-inicio .entry-content { padding: 0; margin: 0; }
.page-template-page-inicio .site-main { display: block !important; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.signer-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 10000;
    background: rgba(10, 15, 30, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 14px 0;
    transition: background 0.3s;
}

.admin-bar .signer-navbar { top: 32px; }
@media (max-width: 782px) { .admin-bar .signer-navbar { top: 46px; } }

.signer-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signer-navbar-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--signer-white);
    text-decoration: none;
    letter-spacing: -.01em;
}

.signer-navbar-brand:hover { color: var(--signer-white); }

.signer-brand-arya {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signer-navbar-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.signer-navbar-menu a:not(.signer-btn) {
    color: var(--signer-text-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.signer-navbar-menu a:not(.signer-btn):hover { color: var(--signer-white); }

.signer-btn-sm { padding: 7px 16px; font-size: 13px; }

.signer-navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--signer-white);
    cursor: pointer;
    padding: 4px;
}

/* ==========================================================================
   CANVAS 3D PLANE
   ========================================================================== */

.signer-plane-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.signer-plane-canvas--bg { z-index: 2; }
.signer-plane-canvas--fg { z-index: 8; }

/* ==========================================================================
   HERO — FULL SCREEN
   ========================================================================== */

.signer-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 60px;
}

/* Fondo */
.signer-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.signer-hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(109,40,217,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109,40,217,.07) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at 65% 40%, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 80% at 65% 40%, black 30%, transparent 100%);
}

.signer-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}
.signer-hero-glow.glow-1 {
    width: 600px; height: 600px;
    background: rgba(109,40,217,.22);
    top: -150px; right: -100px;
}
.signer-hero-glow.glow-2 {
    width: 400px; height: 400px;
    background: rgba(6,182,212,.12);
    bottom: -80px; right: 15%;
}
.signer-hero-glow.glow-3 {
    width: 300px; height: 300px;
    background: rgba(109,40,217,.1);
    top: 30%; left: -80px;
}

.signer-hero .signer-container {
    position: relative;
    z-index: 5;
    width: 100%;
}

/* Layout */
.signer-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Columna izquierda */
.signer-hero-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.signer-badge-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.3);
    color: #6ee7b7;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 999px;
}

.signer-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #10b981; }
    50%       { opacity: .6; box-shadow: 0 0 12px #10b981; }
}

.signer-badge-outline-sm {
    display: inline-block;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--signer-text-muted);
    font-size: 11px;
    font-weight: 500;
    padding: .28rem .7rem;
    border-radius: 999px;
}

.signer-hero-title {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--signer-white);
    margin: 0 0 16px;
}

.signer-hero-subtitle {
    font-size: 16px;
    color: var(--signer-text-muted);
    line-height: 1.7;
    max-width: 460px;
    margin: 0 0 24px;
}

.signer-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.signer-btn-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 12px;
}

.signer-btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.7);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 20px;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
    transition: background .2s, border-color .2s, color .2s;
}
.signer-btn-ghost-hero:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: var(--signer-white);
}

.signer-hero-note {
    font-size: 12px;
    color: #475569;
    margin: 0 0 20px;
}

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

.signer-trust-badge {
    display: inline-block;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    color: var(--signer-text-muted);
    font-size: 12px;
    font-weight: 500;
    padding: .3rem .75rem;
    border-radius: 999px;
    letter-spacing: .01em;
}

/* Columna derecha — mockup */
.signer-hero-visual {
    perspective: 1200px;
    position: relative;
}

.signer-hero-mockup {
    background: rgba(12, 8, 28, 0.8);
    border: 1px solid rgba(109,40,217,.35);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(109,40,217,.1),
        0 32px 80px rgba(0,0,0,.5),
        0 0 80px rgba(109,40,217,.1);
    transform-style: preserve-3d;
    transition: transform .12s ease-out;
    cursor: default;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.signer-mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    background: rgba(109,40,217,.1);
    border-bottom: 1px solid rgba(109,40,217,.2);
}

.signer-mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.signer-mockup-dot.red    { background: #ff5f57; }
.signer-mockup-dot.yellow { background: #febc2e; }
.signer-mockup-dot.green  { background: #28c840; }

.signer-mockup-title {
    flex: 1;
    margin-left: 8px;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    color: #a78bfa;
    font-weight: 600;
}

.signer-mockup-badge {
    font-size: 11px;
    font-weight: 700;
    color: #6ee7b7;
    background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.25);
    padding: 2px 8px;
    border-radius: 999px;
}

.signer-mockup-body { padding: 18px 20px 0; }

.signer-mockup-pre {
    margin: 0;
    padding: 0;
    font-size: 12.5px;
    line-height: 1.75;
    overflow-x: auto;
}

.signer-mockup-pre code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: inherit;
    white-space: pre;
    color: #94a3b8;
}

/* Syntax colors */
.c-key     { color: #c4b5fd; }
.c-str     { color: #86efac; }
.c-num     { color: #fcd34d; }
.c-op      { color: #64748b; }
.c-comment { color: #334155; font-style: italic; }

/* Flow del request */
.signer-mockup-response { padding: 14px 20px 18px; }

.signer-mockup-flow {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.signer-flow-step {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #475569;
    font-weight: 500;
}

.signer-flow-step.done { color: #6ee7b7; }
.signer-flow-step.active { color: #a78bfa; }

.signer-flow-icon { font-size: 12px; }
.signer-flow-icon.pulse {
    animation: blink 1s ease-in-out infinite;
    color: #a78bfa;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: .3; }
}

.signer-flow-arrow { color: #1e293b; font-size: 11px; }

.signer-mockup-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #6ee7b7;
    background: rgba(16,185,129,.08);
    padding: 9px 14px;
    border-radius: 8px;
    border: 1px solid rgba(16,185,129,.18);
}

.signer-mockup-status strong { color: #34d399; }

/* Floating badges */
.signer-hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(15,10,30,.85);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    color: var(--signer-text-muted);
    font-weight: 500;
    white-space: nowrap;
    animation: float-y 3s ease-in-out infinite;
}

.signer-hero-float-1 {
    top: -16px; left: -16px;
    animation-delay: 0s;
}

.signer-hero-float-2 {
    bottom: 24px; right: -20px;
    animation-delay: 1.5s;
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Scroll indicator */
.signer-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    animation: bounce 2s ease-in-out infinite;
    transition: color .2s;
    z-index: 1;
}
.signer-hero-scroll:hover { color: rgba(255,255,255,.5); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ==========================================================================
   STATS
   ========================================================================== */

.signer-stats {
    padding: 56px 0;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    background: rgba(255,255,255,.015);
}

.signer-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.signer-stat {
    padding: 8px 24px;
    position: relative;
}

/* Separador vertical entre stats */
.signer-stat + .signer-stat::before {
    content: '';
    position: absolute;
    left: 0; top: 10%; bottom: 10%;
    width: 1px;
    background: rgba(255,255,255,.07);
}

.signer-stat strong {
    display: block;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #e0d7ff 0%, #a78bfa 45%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: -.03em;
}

.signer-stat span {
    font-size: 13px;
    font-weight: 500;
    color: var(--signer-text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.signer-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.signer-section-header .signer-badge {
    display: inline-block;
    margin-bottom: 16px;
}

.signer-section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 14px;
    line-height: 1.15;
}

.signer-section-header p {
    color: var(--signer-text-muted);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

/* Badge global */
.signer-badge {
    display: inline-block;
    background: rgba(109,40,217,.12);
    border: 1px solid rgba(109,40,217,.3);
    color: #a78bfa;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 999px;
}

/* Gradient text */
.signer-gradient-text {
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 40%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.signer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all .18s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 10px 22px;
    white-space: nowrap;
}

.signer-btn-primary {
    background: rgba(109,40,217,.25);
    color: #fff !important;
    border: 1px solid rgba(167,139,250,.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(109,40,217,.25), inset 0 1px 0 rgba(255,255,255,.1);
}
.signer-btn-primary:hover {
    background: rgba(109,40,217,.38);
    border-color: rgba(167,139,250,.55);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(109,40,217,.4), inset 0 1px 0 rgba(255,255,255,.15);
    color: #fff !important;
}

.signer-btn-outline {
    background: transparent;
    color: var(--signer-text) !important;
    border: 1px solid rgba(255,255,255,.15);
}
.signer-btn-outline:hover {
    border-color: rgba(255,255,255,.3);
    background: rgba(255,255,255,.05);
    color: var(--signer-white) !important;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */

.signer-features {
    padding: 100px 0;
}

.signer-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.signer-feature-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
    cursor: default;
}

/* Shimmer en hover */
.signer-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.03), transparent);
    transition: left .5s ease;
    pointer-events: none;
}
.signer-feature-card:hover::before { left: 160%; }

.signer-feature-card:hover {
    border-color: rgba(124,58,237,.32);
    background: rgba(109,40,217,.06);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(109,40,217,.14);
}

.signer-feature-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(109,40,217,.12));
    border: 1px solid rgba(124,58,237,.22);
    color: #a78bfa;
}

.signer-feature-icon.icon-accent {
    background: linear-gradient(135deg, rgba(6,182,212,.2),  rgba(6,182,212,.08));
    border-color: rgba(6,182,212,.2);   color: #22d3ee;
}
.signer-feature-icon.icon-green {
    background: linear-gradient(135deg, rgba(16,185,129,.2), rgba(5,150,105,.08));
    border-color: rgba(16,185,129,.2);  color: #34d399;
}
.signer-feature-icon.icon-orange {
    background: linear-gradient(135deg, rgba(249,115,22,.18), rgba(234,88,12,.08));
    border-color: rgba(249,115,22,.2);  color: #fb923c;
}
.signer-feature-icon.icon-purple {
    background: linear-gradient(135deg, rgba(168,85,247,.2), rgba(139,92,246,.08));
    border-color: rgba(168,85,247,.2);  color: #c084fc;
}
.signer-feature-icon.icon-pink {
    background: linear-gradient(135deg, rgba(236,72,153,.18), rgba(219,39,119,.08));
    border-color: rgba(236,72,153,.2);  color: #f472b6;
}

.signer-feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 9px;
    color: var(--signer-white);
    line-height: 1.3;
}

.signer-feature-card p {
    color: var(--signer-text-muted);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.signer-feature-card p strong {
    color: rgba(255,255,255,.75);
    font-weight: 600;
}

/* ==========================================================================
   TIPOS e-CF
   ========================================================================== */

.signer-ecf-types {
    padding: 80px 0 100px;
    background: rgba(255,255,255,.018);
    border-top: 1px solid rgba(255,255,255,.05);
}

.signer-ecf-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.signer-ecf-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    padding: 24px 20px 22px;
    position: relative;
    overflow: hidden;
    transition: border-color .22s, background .22s, transform .22s, box-shadow .22s;
    cursor: default;
}

.signer-ecf-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124,58,237,.0) 0%, rgba(124,58,237,.06) 100%);
    opacity: 0;
    transition: opacity .22s;
}

.signer-ecf-card:hover {
    border-color: rgba(124,58,237,.38);
    background: rgba(109,40,217,.06);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(109,40,217,.14);
}
.signer-ecf-card:hover::after { opacity: 1; }

.signer-ecf-code {
    display: inline-block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.02em;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.signer-ecf-card h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--signer-white);
    margin: 0 0 6px;
    line-height: 1.3;
}

.signer-ecf-card p {
    font-size: 12px;
    color: var(--signer-text-muted);
    margin: 0;
    line-height: 1.55;
}

/* ==========================================================================
   STEPS — CÓMO FUNCIONA
   ========================================================================== */

.signer-steps {
    padding: 100px 0;
}

/* Steps — grid moderno con número fantasma y hover elegante */
.signer-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    position: relative;
}

/* Línea conectora entre iconos */
.signer-steps-grid::before {
    content: '';
    position: absolute;
    top: 58px;
    left: calc(12.5% + 26px);
    right: calc(12.5% + 26px);
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(124,58,237,.35) 15%,
        rgba(124,58,237,.35) 85%,
        transparent
    );
    pointer-events: none;
}

.signer-step-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    padding: 32px 24px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
    cursor: default;
}

/* Borde superior que aparece al hover */
.signer-step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124,58,237,.0), rgba(167,139,250,.0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background .25s;
    pointer-events: none;
}

.signer-step-card:hover {
    border-color: rgba(124,58,237,.35);
    background: rgba(109,40,217,.07);
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(109,40,217,.18);
}

/* Número fantasma de fondo */
.signer-step-num {
    position: absolute;
    bottom: -4px;
    right: 18px;
    font-size: 88px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(124,58,237,.1);
    letter-spacing: -.04em;
    pointer-events: none;
    user-select: none;
    transition: -webkit-text-stroke .25s;
}
.signer-step-card:hover .signer-step-num {
    -webkit-text-stroke-color: rgba(167,139,250,.18);
}

/* Icono circular */
.signer-step-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(109,40,217,.12));
    border: 1px solid rgba(124,58,237,.22);
    color: #a78bfa;
}
.signer-step-icon.icon-accent {
    background: linear-gradient(135deg, rgba(6,182,212,.2),  rgba(6,182,212,.08));
    border-color: rgba(6,182,212,.2);
    color: #22d3ee;
}
.signer-step-icon.icon-purple {
    background: linear-gradient(135deg, rgba(168,85,247,.2), rgba(139,92,246,.08));
    border-color: rgba(168,85,247,.2);
    color: #c084fc;
}
.signer-step-icon.icon-green {
    background: linear-gradient(135deg, rgba(16,185,129,.2), rgba(5,150,105,.08));
    border-color: rgba(16,185,129,.2);
    color: #34d399;
}

.signer-step-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--signer-white);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.signer-step-card p {
    font-size: 13.5px;
    color: var(--signer-text-muted);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Pipeline de trazabilidad */
.signer-pipeline {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    padding: 32px 36px;
    overflow: hidden;
}

.signer-pipeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.signer-pipeline-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: rgba(167,139,250,.7);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 4px;
}

.signer-pipeline-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--signer-white);
    margin: 0;
}

.signer-pipeline-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--signer-text-muted);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: .35rem .9rem;
    border-radius: 999px;
    white-space: nowrap;
}

/* Track — dots + línea */
.signer-pipeline-track {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

/* Línea base */
.signer-pipeline-track::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: rgba(255,255,255,.06);
    border-radius: 2px;
}

/* Línea de progreso — llega hasta el penúltimo paso */
.signer-pipeline-progress {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: 2px;
    background: linear-gradient(90deg,
        rgba(124,58,237,.5),
        rgba(99,102,241,.5) 50%,
        rgba(16,185,129,.6)
    );
    border-radius: 2px;
}

.signer-pipeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.signer-pipeline-dot {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.04);
    border: 1.5px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.25);
    transition: all .2s;
}

.signer-pipeline-step.done .signer-pipeline-dot {
    background: rgba(124,58,237,.15);
    border-color: rgba(124,58,237,.35);
    color: #a78bfa;
}

.signer-pipeline-step.success .signer-pipeline-dot {
    background: rgba(16,185,129,.18);
    border-color: rgba(16,185,129,.45);
    color: #34d399;
    box-shadow: 0 0 0 5px rgba(16,185,129,.08), 0 0 20px rgba(16,185,129,.2);
}

.signer-pipeline-step span {
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255,255,255,.3);
    text-align: center;
    white-space: nowrap;
}

.signer-pipeline-step.done span  { color: var(--signer-text-muted); }
.signer-pipeline-step.success span {
    color: #34d399;
    font-weight: 600;
}


/* ==========================================================================
   PRICING — TABLA COMPARATIVA
   ========================================================================== */

.signer-pricing {
    padding: 100px 0;
    background: rgba(255,255,255,.018);
    border-top: 1px solid rgba(255,255,255,.05);
}

/* ---- Banner Arya Market ---- */
.signer-pricing-market {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: rgba(245,158,11,.055);
    border: 1px solid rgba(245,158,11,.22);
    border-radius: 16px;
    padding: 22px 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.signer-pricing-market-info {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.signer-pricing-market-tag {
    display: inline-block;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}

.signer-pricing-market-info p {
    font-size: 14px;
    color: var(--signer-text-muted);
    margin: 0;
    line-height: 1.65;
}

.signer-pricing-market-info strong { color: #fcd34d; }

.signer-btn-market-solid {
    background: rgba(245,158,11,.18);
    border: 1px solid rgba(245,158,11,.4);
    color: #fbbf24 !important;
    white-space: nowrap;
    flex-shrink: 0;
}
.signer-btn-market-solid:hover {
    background: rgba(245,158,11,.28);
    border-color: rgba(245,158,11,.65);
    color: #fde68a !important;
    transform: translateY(-2px);
}

/* ---- Tabla wrapper ---- */
.signer-ptable-wrap {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    overflow: hidden;
}

/*
 * Grid de 5 columnas: [label] [Free] [Starter] [Business] [Enterprise]
 * Todos los hijos directos son items del grid.
 * .signer-ptable-section usa grid-column: 1 / -1 para span completo.
 */
.signer-ptable {
    display: grid;
    grid-template-columns: 1.7fr repeat(4, 1fr);
}

/* ---- Cabecera de planes — 5 filas separadas en el grid ---- */

/* Celda base */
.signer-pth {
    background: rgba(255,255,255,.012);
    border-left: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4px 18px;
}

/* Columna izquierda vacía */
.signer-pth-spacer {
    border-left: none;
    background: rgba(255,255,255,.008);
}

/* Columna Business */
.signer-pth--biz {
    background: rgba(109,40,217,.1) !important;
    border-left-color: rgba(109,40,217,.3) !important;
    border-right: 1px solid rgba(109,40,217,.3);
}

/* Línea de acento superior — solo fila de badge */
.signer-pth-badge.signer-pth--biz { position: relative; }
.signer-pth-badge.signer-pth--biz::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6d28d9, #7c3aed, #a78bfa);
}

/* Fila 1: badge */
.signer-pth-badge {
    min-height: 50px;
    padding-top: 24px;
    justify-content: flex-end;
    padding-bottom: 4px;
}

/* Fila 2: nombre del plan */
.signer-pth-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--signer-white);
    padding-top: 10px;
    padding-bottom: 6px;
    justify-content: center;
}

/* Fila 3: precio */
.signer-pth-price {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    padding-top: 4px;
    padding-bottom: 4px;
}

/* Fila 4: descripción */
.signer-pth-desc {
    font-size: 12px;
    color: var(--signer-text-muted);
    line-height: 1.4;
    padding-top: 6px;
    padding-bottom: 6px;
}

/* Fila 5: CTA — separador inferior */
.signer-pth-cta {
    padding-top: 14px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    align-items: stretch;
}
.signer-pth-spacer.signer-pth--last {
    border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Textos de precio */
.signer-ptable-popular {
    font-size: 11px;
    font-weight: 700;
    color: #c4b5fd;
    background: rgba(109,40,217,.22);
    border: 1px solid rgba(109,40,217,.35);
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: .04em;
}

.signer-ptable-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--signer-white);
    letter-spacing: -.02em;
}

.signer-ptable-amount--custom {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #f9a8d4, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signer-ptable-period {
    font-size: 12px;
    color: var(--signer-text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

/* ---- Sección (span completo) ---- */
.signer-ptable-section {
    grid-column: 1 / -1;
    padding: 10px 24px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(167,139,250,.55);
    background: rgba(109,40,217,.04);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.04);
}

/* ---- Fila de característica: label ---- */
.signer-ptable-feat {
    padding: 13px 24px;
    font-size: 13px;
    color: var(--signer-text-muted);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.04);
    background: rgba(255,255,255,.008);
}

/* ---- Celdas de valor ---- */
.signer-ptable-cell {
    padding: 13px 12px;
    text-align: center;
    font-size: 13px;
    color: var(--signer-text);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04);
}

/* Columna Business destacada */
.signer-ptable-cell--biz {
    background: rgba(109,40,217,.07);
    border-left-color: rgba(109,40,217,.2);
    border-right: 1px solid rgba(109,40,217,.2);
    color: #ddd6fe;
    font-weight: 500;
}

.signer-ptable-cell--no   { color: rgba(255,255,255,.22); font-size: 12px; }
.signer-ptable-cell--muted { color: rgba(255,255,255,.18); }

/* ---- Íconos de check / cross ---- */
.signer-pt-yes,
.signer-pt-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
}

.signer-pt-yes {
    background: rgba(16,185,129,.13);
    border: 1px solid rgba(16,185,129,.28);
    color: #34d399;
}

.signer-pt-no {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.2);
}

/* Botón en tabla */
.signer-btn-block { display: block; width: 100%; text-align: center; }

/* Modal de verificación Turnstile (mailto / tel) */
#signer-ts-modal { display: contents; }
#signer-ts-modal[hidden] { display: none; }

.signer-ts-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.signer-ts-box {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 36px 32px 28px;
    text-align: center;
    max-width: 360px;
    width: 100%;
    box-shadow: 0 24px 80px rgba(0,0,0,.5);
}

.signer-ts-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--signer-white);
    margin: 0 0 20px;
    line-height: 1.4;
}

.signer-ts-box #signer-ts-widget {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    min-height: 65px;
}

.signer-ts-cancel {
    background: transparent;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    color: var(--signer-text-muted);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 22px;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}
.signer-ts-cancel:hover {
    border-color: rgba(255,255,255,.28);
    color: var(--signer-white);
}

/* Íconos de redes sociales (contacto + footer) */
.signer-contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.signer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.09);
    color: var(--signer-text-muted);
    transition: background .2s, border-color .2s, color .2s, transform .2s;
    text-decoration: none;
}
.signer-social-link:hover {
    background: rgba(79,70,229,.18);
    border-color: rgba(79,70,229,.35);
    color: #a78bfa;
    transform: translateY(-2px);
}

/* Footer social row */
.signer-footer-social {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .signer-ptable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .signer-ptable { min-width: 680px; }
}

@media (max-width: 768px) {
    .signer-pricing-market { flex-direction: column; align-items: flex-start; padding: 20px; }
    .signer-pricing-market-info { flex-direction: column; align-items: flex-start; gap: 10px; }
    .signer-ptable { min-width: 620px; }
    .signer-pth { padding: 4px 12px; }
    .signer-pth-badge { padding-top: 18px; }
    .signer-pth-cta { padding-bottom: 18px; }
    .signer-ptable-feat { padding: 11px 14px; }
    .signer-ptable-cell { padding: 11px 8px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.signer-faq {
    padding: 100px 0;
}

.signer-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.signer-faq-header {
    position: sticky;
    top: 100px;
}

.signer-faq-header .signer-badge { margin-bottom: 16px; }

.signer-faq-header h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 14px;
    line-height: 1.2;
}

.signer-faq-header p {
    color: var(--signer-text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.signer-faq-contact-link {
    font-size: 14px;
    color: #a78bfa;
    text-decoration: none;
    font-weight: 500;
    transition: color .15s;
}
.signer-faq-contact-link:hover { color: #c4b5fd; }

.signer-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signer-faq-item {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s;
}

.signer-faq-item[open] { border-color: rgba(109,40,217,.3); }

.signer-faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--signer-white);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

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

.signer-faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: #7c3aed;
    flex-shrink: 0;
    transition: transform .2s;
}

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

.signer-faq-answer { padding: 0 22px 18px; }

.signer-faq-answer p {
    color: var(--signer-text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.signer-faq-answer strong { color: var(--signer-text); }
.signer-faq-answer code {
    background: rgba(109,40,217,.15);
    color: #c4b5fd;
    padding: .1em .35em;
    border-radius: 4px;
    font-size: .9em;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.signer-contact {
    padding: 100px 0;
    background: rgba(255,255,255,.018);
    border-top: 1px solid rgba(255,255,255,.05);
}

.signer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.signer-contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}

.signer-contact-info > p {
    color: var(--signer-text-muted);
    margin-bottom: 28px;
    font-size: 15px;
}

.signer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.signer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--signer-text);
    font-size: 14px;
}

.signer-contact-item svg { color: #a78bfa; flex-shrink: 0; }

.signer-contact-form-wrap {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    padding: 36px;
}

.signer-form-group { margin-bottom: 14px; }

.signer-form-group input,
.signer-form-group textarea {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--signer-white);
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}

.signer-form-group input::placeholder,
.signer-form-group textarea::placeholder { color: #334155; }

.signer-form-group input:focus,
.signer-form-group textarea:focus { border-color: rgba(109,40,217,.5); }

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

/* ==========================================================================
   CTA
   ========================================================================== */

.signer-cta { padding: 100px 0; }

.signer-cta-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(109,40,217,.1), rgba(6,182,212,.06));
    border: 1px solid rgba(109,40,217,.25);
    border-radius: 24px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.signer-cta-box::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(109,40,217,.15), transparent 70%);
    pointer-events: none;
}

.signer-cta-box .signer-badge { margin-bottom: 20px; }

.signer-cta-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.signer-cta-box p {
    color: var(--signer-text-muted);
    font-size: 17px;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.signer-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.signer-cta-trust {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.signer-cta-trust span {
    font-size: 13px;
    color: var(--signer-text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.signer-footer {
    padding: 60px 0 32px;
    border-top: 1px solid rgba(255,255,255,.06);
    background: rgba(0,0,0,.2);
}

.signer-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.signer-footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--signer-white) !important;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}

.signer-footer-brand p {
    color: var(--signer-text-muted);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 280px;
}

.signer-footer-cert {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.signer-cert-badge {
    font-size: 10.5px;
    font-weight: 600;
    color: #94a3b8;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: .04em;
}

.signer-footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.signer-footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--signer-white);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 14px;
}

.signer-footer-col a {
    display: block;
    color: var(--signer-text-muted) !important;
    font-size: 13.5px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .15s;
}
.signer-footer-col a:hover { color: var(--signer-white) !important; }

.signer-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.signer-footer-bottom p {
    color: rgba(255,255,255,.25);
    font-size: 12.5px;
    margin: 0;
}

.signer-footer-compliance { font-size: 11.5px !important; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1280px) {
    .signer-features-grid { grid-template-columns: repeat(2, 1fr); }
    .signer-ecf-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .signer-hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .signer-hero { text-align: center; align-items: flex-start; padding-top: 100px; }
    .signer-hero-subtitle { max-width: 100%; }
    .signer-hero-cta, .signer-hero-trust, .signer-hero-badges { justify-content: center; }
    .signer-hero-float { display: none; }
    .signer-hero-scroll { display: none; }

    .signer-faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .signer-faq-header { position: static; }
    .signer-contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .signer-footer-top { grid-template-columns: 1fr; gap: 36px; }
    .signer-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .signer-steps-grid::before { display: none; }

}

/* ==========================================================================
   BLOG PREVIEW — sección en landing
   ========================================================================== */

.signer-blog-preview {
    padding: var(--signer-section-pad) 0;
    border-top: 1px solid var(--signer-border);
}

.signer-blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.signer-blog-preview-cta {
    text-align: center;
}

@media (max-width: 1024px) {
    .signer-blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .signer-blog-preview-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .signer-navbar-toggle { display: block; }
    .signer-navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding-top: 12px;
    }
    .signer-navbar-menu.active { display: flex; }
    .signer-navbar-menu a:not(.signer-btn) {
        padding: 10px 0;
        border-top: 1px solid rgba(255,255,255,.06);
    }
    .signer-navbar-inner { flex-wrap: wrap; }
    .signer-navbar-menu .signer-btn { margin-top: 8px; }

    .signer-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .signer-features-grid { grid-template-columns: 1fr; }
    .signer-ecf-grid { grid-template-columns: repeat(2, 1fr); }
    .signer-footer-links-grid { grid-template-columns: repeat(2, 1fr); }

    .signer-cta-box { padding: 48px 24px; }
    .signer-contact-form-wrap { padding: 24px; }

    .signer-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .signer-hero-title { font-size: 2rem; }
    .signer-hero-cta { flex-direction: column; }
    .signer-steps-grid { grid-template-columns: 1fr; }
    .signer-ecf-grid { grid-template-columns: 1fr; }
    .signer-stats-grid { grid-template-columns: 1fr 1fr; }
    .signer-cta-trust { flex-direction: column; gap: 8px; }
}
