/* ============================================================
   SoftVision – Custom CSS
   Paleta: navy #0f3460, azul eléctrico #1a6cf5, teal #00d4ff
   ============================================================ */

:root {
    --primary:     #0f3460;
    --primary2:    #1a3a6e;
    --accent:      #1a6cf5;
    --accent2:     #3d82f7;
    --highlight:   #00d4ff;
    --dark:        #080f23;
    --surface:     #0d1b3e;
    --text-light:  #e2e8f0;
    --text-muted:  #94a3b8;
    --color2-rgb:  26, 108, 245;
    --navbar-bg:   #080f23;
    --footer-bg:   #050c1a;
    --cream:       #0d1b3e;
}

/* ---- Base ---- */
* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text-light); background: var(--dark); }
h1,h2,h3,h4,h5 { font-family: 'Space Grotesk', sans-serif; }
.py-section { padding: 5rem 0; }
.bg-surface { background: var(--surface); }
.bg-dark-sv { background: var(--dark); }
.text-accent { color: var(--accent) !important; }
.text-highlight { color: var(--highlight) !important; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-sv {
    background: transparent;
    transition: background .35s, box-shadow .35s, padding .35s;
    padding: 1.25rem 0;
}
.navbar-sv.scrolled {
    background: rgba(8,15,35,.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0,0,0,.4);
    border-bottom: 1px solid rgba(26,108,245,.15);
    padding: .75rem 0;
}
.navbar-sv .nav-link {
    color: rgba(255,255,255,.78);
    font-weight: 500; font-size: .9rem;
    transition: color .2s;
    padding: .4rem .75rem !important;
}
.navbar-sv .nav-link:hover { color: var(--highlight); }
.navbar-sv .navbar-toggler { border-color: rgba(255,255,255,.3); color: white; }
.brand-text { font-family: 'Space Grotesk', sans-serif; color: white; font-weight: 700; font-size: 1.25rem; }
.brand-icon { font-size: 1.2rem; margin-right: .35rem; color: var(--accent); }
.brand-logo { height: 36px; width: auto; object-fit: contain; margin-right: .4rem; }

/* ---- Buttons ---- */
.btn-accent {
    background: var(--accent); color: white; border: none;
    font-weight: 600; border-radius: 8px;
    transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-accent:hover {
    background: var(--accent2); color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,108,245,.4);
}
.btn-outline-sv {
    background: transparent; color: white;
    border: 1.5px solid rgba(255,255,255,.4);
    font-weight: 600; border-radius: 8px;
    transition: all .2s;
}
.btn-outline-sv:hover {
    border-color: var(--accent); color: var(--accent);
    background: rgba(26,108,245,.08);
}
.btn-hero { padding: .8rem 2rem; font-size: .95rem; border-radius: 50px; }

/* ---- Section tags ---- */
.section-tag {
    background: rgba(var(--color2-rgb), .12);
    color: var(--highlight);
    border: 1px solid rgba(var(--color2-rgb), .3);
    padding: .3rem .9rem; border-radius: 100px;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    display: inline-block;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.15; color: white; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 580px; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
#hero-vanta { position: absolute; inset: 0; z-index: 0; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,15,35,.35) 0%, rgba(8,15,35,.15) 50%, rgba(8,15,35,.7) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 8rem 1rem 5rem; }
.hero-badge {
    display: inline-block;
    background: rgba(26,108,245,.12); border: 1px solid rgba(26,108,245,.4);
    color: var(--highlight); padding: .3rem 1rem; border-radius: 100px;
    font-size: .72rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; line-height: 1.1; color: white; margin-bottom: 1.25rem; }
.hero-title span { color: var(--accent); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.15rem); max-width: 600px; margin: 0 auto 2rem; color: rgba(255,255,255,.72); line-height: 1.7; }
.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%); z-index: 2;
    color: rgba(255,255,255,.5); font-size: .75rem;
    text-align: center; text-decoration: none;
    animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll i { display: block; font-size: 1.2rem; color: var(--accent); }
@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.service-card {
    background: var(--surface);
    border: 1px solid rgba(26,108,245,.12);
    border-radius: 20px; padding: 2.5rem;
    height: 100%; display: flex; flex-direction: column;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    will-change: transform;
}
.service-card:hover {
    border-color: rgba(26,108,245,.5);
    box-shadow: 0 0 40px rgba(26,108,245,.15), 0 0 80px rgba(26,108,245,.06);
    transform: translateY(-4px);
}
.service-icon-wrap {
    width: 64px; height: 64px;
    background: rgba(26,108,245,.1); border: 1px solid rgba(26,108,245,.25);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--accent); margin-bottom: 1.5rem;
    transition: background .3s, box-shadow .3s; flex-shrink: 0;
}
.service-card:hover .service-icon-wrap {
    background: rgba(26,108,245,.2);
    box-shadow: 0 0 20px rgba(26,108,245,.4);
}
.service-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: .6rem; }
.service-desc { color: var(--text-muted); font-size: .875rem; line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.service-includes { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.service-includes li { font-size: .82rem; color: var(--text-light); margin-bottom: .4rem; display: flex; align-items: center; gap: .5rem; }
.service-includes li i { color: var(--highlight); font-size: .75rem; flex-shrink: 0; }

/* ============================================================
   STATS
   ============================================================ */
#stats-section { position: relative; overflow: hidden; }
#stats-vanta { position: absolute; inset: 0; z-index: 0; }
.stats-content { position: relative; z-index: 1; }
.stat-number { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; color: white; line-height: 1; margin-bottom: .25rem; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; }

/* ============================================================
   PROCESO
   ============================================================ */
.process-timeline { position: relative; }
.process-line-svg { position: absolute; top: 36px; left: 0; width: 100%; height: 4px; z-index: 0; }
.step-wrap { position: relative; z-index: 1; text-align: center; padding: 0 .5rem; }
.step-circle {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--surface); border: 2px solid rgba(26,108,245,.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--accent);
    margin: 0 auto 1rem; position: relative; z-index: 2;
    transition: background .4s, border-color .4s, box-shadow .4s;
}
.step-circle.active {
    background: var(--accent); border-color: var(--accent);
    color: white; box-shadow: 0 0 28px rgba(26,108,245,.6);
}
.step-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .9rem; color: white; margin-bottom: .35rem; }
.step-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   TECNOLOGÍAS
   ============================================================ */
.tech-marquee-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.tech-marquee { display: flex; gap: 1rem; animation: marqueeLeft 28s linear infinite; width: max-content; }
.tech-marquee.reverse { animation: marqueeRight 32s linear infinite; }
.tech-marquee:hover, .tech-marquee.reverse:hover { animation-play-state: paused; }
@keyframes marqueeLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.tech-badge {
    display: flex; align-items: center; gap: .55rem;
    background: var(--surface); border: 1px solid rgba(26,108,245,.18);
    border-radius: 100px; padding: .55rem 1.25rem;
    white-space: nowrap; font-size: .83rem; color: var(--text-light);
    transition: border-color .25s, box-shadow .25s, color .25s;
    cursor: default; user-select: none;
}
.tech-badge:hover { border-color: var(--accent); box-shadow: 0 0 18px rgba(26,108,245,.35); color: var(--highlight); }
.tech-badge i { color: var(--accent); font-size: .95rem; }

/* ============================================================
   PORTAFOLIO
   ============================================================ */
.portfolio-card {
    position: relative; border-radius: 16px; overflow: hidden;
    background: var(--surface); border: 1px solid rgba(26,108,245,.12);
    transition: border-color .3s, box-shadow .3s;
}
.portfolio-card:hover { border-color: rgba(26,108,245,.4); box-shadow: 0 0 32px rgba(26,108,245,.12); }
.portfolio-img { width: 100%; height: 220px; object-fit: cover; opacity: .4; transition: opacity .4s, transform .4s; display: block; }
.portfolio-card:hover .portfolio-img { opacity: .2; transform: scale(1.05); }
.portfolio-overlay {
    position: absolute; inset: 0;
    background: rgba(8,15,35,.94); backdrop-filter: blur(4px);
    display: flex; flex-direction: column; justify-content: center;
    padding: 1.75rem; opacity: 0; transition: opacity .3s;
    font-family: 'Courier New', monospace;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.terminal-line { font-size: .78rem; margin-bottom: .4rem; overflow: hidden; white-space: nowrap; width: 0; color: var(--highlight); }
.portfolio-card:hover .terminal-line { animation: typeIt .38s steps(40) forwards; }
.portfolio-card:hover .terminal-line:nth-child(2) { animation-delay: .38s; color: var(--text-muted); }
.portfolio-card:hover .terminal-line:nth-child(3) { animation-delay: .76s; color: var(--text-muted); }
.portfolio-card:hover .terminal-line:nth-child(4) { animation-delay: 1.14s; color: var(--accent); }
@keyframes typeIt { to { width: 100%; } }
.portfolio-meta { padding: 1.25rem 1.5rem; border-top: 1px solid rgba(26,108,245,.1); }
.portfolio-type-badge {
    font-size: .7rem; background: rgba(26,108,245,.12); color: var(--highlight);
    border: 1px solid rgba(26,108,245,.25); border-radius: 100px;
    padding: .2rem .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.portfolio-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .95rem; color: white; margin: .5rem 0 0; }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonial-card {
    background: var(--surface); border: 1px solid rgba(26,108,245,.1);
    border-radius: 16px; padding: 2rem; height: 100%;
    transition: border-color .3s;
}
.testimonial-card:hover { border-color: rgba(26,108,245,.3); }
.testimonial-quote { font-size: 1.5rem; color: var(--accent); opacity: .6; margin-bottom: .75rem; }
.testimonial-text { font-size: .9rem; color: var(--text-light); line-height: 1.8; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-divider { height: 1px; background: linear-gradient(to right, var(--accent), transparent); margin-bottom: 1rem; }
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent); color: white; font-weight: 700;
    font-size: .85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .88rem; color: white; }
.testimonial-role { font-size: .75rem; color: var(--text-muted); }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
    position: relative; padding: 7rem 0; overflow: hidden;
    background: linear-gradient(-45deg, #080f23, #0f3460, #0a1f4e, #1a3a6e);
    background-size: 400% 400%;
    animation: gradientPulse 8s ease infinite;
}
@keyframes gradientPulse {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.cta-content { position: relative; z-index: 1; }
.btn-cta-pulse { animation: btnPulse 2.5s ease-in-out infinite; padding: 1rem 2.5rem; font-size: 1rem; border-radius: 50px; }
@keyframes btnPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(26,108,245,.5); }
    50%      { box-shadow: 0 0 0 20px rgba(26,108,245,0); }
}

/* ============================================================
   FORMULARIO
   ============================================================ */
.quote-card {
    background: var(--surface); border: 1px solid rgba(26,108,245,.15);
    border-radius: 20px; padding: 2.5rem;
    max-width: 680px; margin: 0 auto;
}
.quote-card .form-control,
.quote-card .form-select {
    background: rgba(8,15,35,.6); border: 1px solid rgba(26,108,245,.2);
    color: var(--text-light); border-radius: 10px;
    padding: .7rem 1rem; transition: border-color .2s, box-shadow .2s;
}
.quote-card .form-control:focus,
.quote-card .form-select:focus {
    background: rgba(8,15,35,.8); border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26,108,245,.15); color: white; outline: none;
}
.quote-card .form-control::placeholder { color: var(--text-muted); }
.quote-card .form-label { color: var(--text-muted); font-size: .82rem; font-weight: 500; margin-bottom: .4rem; }
.quote-card .form-select option { background: var(--surface); color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-sv {
    background: var(--footer-bg);
    border-top: 1px solid rgba(26,108,245,.1);
    padding: 3rem 0 1.5rem;
    color: rgba(255,255,255,.9);
}
.footer-sv .footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem; color: white; }
.footer-sv .footer-desc { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.6; }
.footer-sv .footer-heading { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: white; margin-bottom: 1rem; }
.footer-sv .footer-link { color: rgba(255,255,255,.55); text-decoration: none; font-size: .875rem; display: flex; align-items: center; gap: .5rem; transition: color .2s; margin-bottom: .5rem; }
.footer-sv .footer-link:hover { color: var(--highlight); }
.footer-sv .social-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: background .2s; }
.footer-sv .social-icon:hover { background: var(--accent); }
.footer-copyright { border-top: 1px solid rgba(255,255,255,.07); margin-top: 2rem; padding-top: 1.25rem; text-align: center; color: rgba(255,255,255,.25); font-size: .75rem; }

/* ============================================================
   HERO — stats + code window
   ============================================================ */
.hero-stats { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; }
.hero-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800; color: white; line-height: 1; }
.hero-stat-lbl { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }

.hero-code-window {
    width: 100%; max-width: 430px;
    background: #0d1117; border: 1px solid rgba(26,108,245,.25);
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(26,108,245,.1);
}
.hero-code-bar {
    background: #161b22; padding: .7rem 1rem;
    display: flex; align-items: center; gap: .5rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.hero-code-filename { color: rgba(255,255,255,.35); font-size: .72rem; margin-left: auto; font-family: 'Courier New', monospace; }
.hero-code-body { padding: 1.25rem 1.5rem; font-family: 'Courier New', monospace; font-size: .8rem; line-height: 1.9; }

.terminal-line {
    overflow: hidden; white-space: nowrap; width: 0;
    animation: typeIt .55s steps(30) forwards;
    animation-delay: var(--d, 0s);
    color: var(--text-light);
}
.blink-cursor::after { content: '▋'; animation: blink .8s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.tc-kw  { color: #ff7b72; }
.tc-fn  { color: #d2a8ff; }
.tc-var { color: #79c0ff; }
.tc-op  { color: #e6edf3; }
.tc-str { color: #a5d6ff; }
.tc-cmt { color: #8b949e; }
.tc-prompt { color: var(--highlight); font-weight: 700; }
.tc-cmd    { color: #a5d6ff; }

.hero-scroll-hint {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: .4rem;
    color: rgba(255,255,255,.35); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid rgba(26,108,245,.5); border-bottom: 2px solid rgba(26,108,245,.5);
    transform: rotate(45deg);
    animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }

/* ============================================================
   PROCESO (new layout)
   ============================================================ */
.process-wrapper { position: relative; }
.process-svg {
    position: absolute; top: 52px; left: 10%; width: 80%; height: 8px;
    z-index: 0; display: none;
}
@media (min-width: 992px) { .process-svg { display: block; } }

.process-step {
    text-align: center; padding: 1rem .5rem;
    position: relative; z-index: 1;
}
.process-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .7rem; font-weight: 700;
    color: var(--accent); letter-spacing: .1em;
    text-transform: uppercase; margin-bottom: .5rem;
}
.process-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(26,108,245,.1); border: 2px solid rgba(26,108,245,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--accent);
    margin: 0 auto 1rem;
    transition: background .4s, border-color .4s, box-shadow .4s;
}
.process-step:hover .process-icon {
    background: var(--accent); border-color: var(--accent);
    color: white; box-shadow: 0 0 28px rgba(26,108,245,.5);
}
.process-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: white; margin-bottom: .4rem; }
.process-desc  { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   TECNOLOGÍAS (marquee outer alias)
   ============================================================ */
.tech-marquee-outer {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.surface-sv { background: var(--surface); }

/* ============================================================
   PORTAFOLIO (additions)
   ============================================================ */
.portfolio-card img {
    width: 100%; height: 230px; object-fit: cover;
    opacity: .5; transition: opacity .4s, transform .4s; display: block;
}
.portfolio-card:hover img { opacity: .2; transform: scale(1.05); }

.portfolio-terminal { font-family: 'Courier New', monospace; font-size: .8rem; color: var(--highlight); margin-bottom: .75rem; }
.portfolio-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: white; margin-bottom: .4rem; }
.portfolio-caption { font-size: .82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

.portfolio-demo { min-height: 230px; display: flex; flex-direction: column; }
.portfolio-demo-bg {
    flex: 1; min-height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--surface) 100%);
    position: relative; display: flex; align-items: center; justify-content: center;
}
.portfolio-demo-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(26,108,245,.08) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(26,108,245,.08) 1px, transparent 1px);
    background-size: 24px 24px;
}
.portfolio-demo-tag {
    font-family: 'Space Grotesk', sans-serif; font-weight: 700;
    font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
    background: rgba(26,108,245,.15); border: 1px solid rgba(26,108,245,.35);
    color: var(--highlight); padding: .3rem .8rem; border-radius: 100px;
    position: relative; z-index: 1;
}

/* ============================================================
   TESTIMONIOS (additions)
   ============================================================ */
.testimonial-stars { color: #facc15; font-size: .85rem; margin-bottom: .75rem; display: flex; gap: .15rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; margin-top: 1.25rem; }

/* ============================================================
   CTA (additions)
   ============================================================ */
.cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(26,108,245,.25) 0%, transparent 70%);
    pointer-events: none;
}
.cta-title { font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 700; color: white; margin-bottom: .75rem; }
.cta-subtitle { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; max-width: 540px; margin: 0 auto; }

/* ============================================================
   CONTACTO INFO
   ============================================================ */
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: rgba(26,108,245,.1); border: 1px solid rgba(26,108,245,.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: .95rem; flex-shrink: 0;
}
.contact-info-label { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .1rem; }
.contact-info-val { color: var(--text-light); font-size: .9rem; text-decoration: none; }
.contact-info-val:hover { color: var(--highlight); }

.quote-guarantee {
    display: flex; align-items: center; gap: .6rem;
    background: rgba(26,108,245,.06); border: 1px solid rgba(26,108,245,.15);
    border-radius: 10px; padding: .75rem 1rem;
    color: rgba(255,255,255,.55); font-size: .8rem;
}
.quote-guarantee i { color: var(--highlight); font-size: 1rem; flex-shrink: 0; }

.form-control-sv {
    background: rgba(8,15,35,.6) !important; border: 1px solid rgba(26,108,245,.2) !important;
    color: var(--text-light) !important; border-radius: 10px !important;
    padding: .7rem 1rem; transition: border-color .2s, box-shadow .2s;
}
.form-control-sv:focus {
    background: rgba(8,15,35,.8) !important; border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(26,108,245,.15) !important; color: white !important; outline: none;
}
.form-control-sv::placeholder { color: var(--text-muted) !important; }
.form-select.form-control-sv option { background: #0d1b3e; color: var(--text-light); }
.form-label { color: var(--text-muted); font-size: .82rem; font-weight: 500; margin-bottom: .35rem; }

.btn-submit-quote {
    background: linear-gradient(90deg, var(--accent), #3d82f7);
    border: none; color: white; font-weight: 700;
    border-radius: 12px; padding: .9rem;
    transition: opacity .2s, transform .15s, box-shadow .2s;
}
.btn-submit-quote:hover {
    opacity: .92; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,108,245,.4); color: white;
}

/* service price label */
.service-price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--highlight); font-size: .9rem; margin-top: auto; padding-top: .75rem; border-top: 1px solid rgba(26,108,245,.1); }

/* stats section padding */
.stats-section { padding: 5rem 0; }

/* ============================================================
   ANIMACIONES / REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .process-svg { display: none; }
    .process-step { padding: .5rem; }
    .quote-card { padding: 1.5rem; }
    .hero-content { padding: 7rem 1rem 4rem; }
    .hero-code-window { display: none; }
    .hero-stats { gap: 1.25rem !important; }
}
