   :root {
     --bg: #0a0a0a;
     --bg1: #111111;
     --bg2: #181818;
     --line: rgba(255, 255, 255, 0.08);
     --line2: rgba(255, 255, 255, 0.14);
     --text: #d4d4d4;
     --dim: #666;
     --dim2: #999;
     --white: #f5f5f5;
     --accent: #e8ff47;
     --accent-dark: #c8df00;
   }

   *,
   *::before,
   *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box
   }

   html {
     scroll-behavior: smooth
   }

   body {
     font-family: 'DM Sans', sans-serif;
     background: var(--bg);
     color: var(--text);
     overflow-x: hidden;
     -webkit-font-smoothing: antialiased;
   }

   ::selection {
     background: var(--accent);
     color: #000
   }

   ::-webkit-scrollbar {
     width: 3px
   }

   ::-webkit-scrollbar-track {
     background: var(--bg)
   }

   ::-webkit-scrollbar-thumb {
     background: var(--accent)
   }

   /* ─── NAV ─── */
   nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 100;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 clamp(24px, 5vw, 72px);
     height: 56px;
     border-bottom: 1px solid var(--line);
     background: rgba(10, 10, 10, 0.92);
     backdrop-filter: blur(16px);
   }

   .nav-logo {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 1.5rem;
     letter-spacing: 0.04em;
     color: var(--white);
     text-decoration: none;
   }

   .nav-logo span {
     color: var(--accent);
   }

   .nav-right {
     display: flex;
     align-items: center;
     gap: 2rem;
   }

   .nav-links {
     display: flex;
     gap: 1.75rem;
     list-style: none;
   }

   .nav-links a {
     font-size: 0.8rem;
     font-weight: 500;
     color: var(--dim2);
     text-decoration: none;
     letter-spacing: 0.03em;
     transition: color 0.2s;
   }

   .nav-links a:hover {
     color: var(--white);
   }

   .nav-cta {
     font-size: 0.8rem;
     font-weight: 500;
     background: var(--accent);
     color: #000;
     padding: 0.42rem 1.1rem;
     border-radius: 2px;
     text-decoration: none;
     letter-spacing: 0.02em;
     transition: opacity 0.2s;
     white-space: nowrap;
   }

   .nav-cta:hover {
     opacity: 0.85;
   }

   /* hamburger */
   .hbg {
     display: none;
     background: none;
     border: none;
     cursor: pointer;
     flex-direction: column;
     gap: 4px;
     padding: 4px;
   }

   .hbg span {
     display: block;
     width: 20px;
     height: 1.5px;
     background: var(--dim2);
     transition: all 0.3s;
   }

   .hbg.open span:nth-child(1) {
     transform: translateY(5.5px) rotate(45deg);
   }

   .hbg.open span:nth-child(2) {
     opacity: 0;
   }

   .hbg.open span:nth-child(3) {
     transform: translateY(-5.5px) rotate(-45deg);
   }

   .mob-menu {
     display: none;
     position: fixed;
     top: 56px;
     left: 0;
     right: 0;
     z-index: 99;
     background: var(--bg1);
     border-bottom: 1px solid var(--line);
     padding: 1.5rem clamp(24px, 5vw, 72px);
     flex-direction: column;
     gap: 0;
   }

   .mob-menu.open {
     display: flex;
   }

   .mob-menu a {
     color: var(--dim2);
     text-decoration: none;
     font-size: 0.9rem;
     font-weight: 500;
     padding: 0.75rem 0;
     border-bottom: 1px solid var(--line);
     transition: color 0.2s;
   }

   .mob-menu a:hover {
     color: var(--white);
   }

   .mob-menu a:last-child {
     border-bottom: none;
   }

   /* ─── HERO ─── */
   .hero {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 0 clamp(24px, 5vw, 72px) clamp(48px, 6vw, 80px);
     position: relative;
     overflow: hidden;
     border-bottom: 1px solid var(--line);
   }

   /* big background number */
   .hero-bg {
     position: absolute;
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(200px, 30vw, 420px);
     color: rgba(255, 255, 255, 0.018);
     right: -2vw;
     bottom: -0.1em;
     letter-spacing: -0.04em;
     pointer-events: none;
     user-select: none;
     line-height: 1;
   }

   .hero-top {
     position: absolute;
     top: clamp(80px, 12vh, 120px);
     left: clamp(24px, 5vw, 72px);
   }

   .hero-tag {
     font-family: 'DM Mono', monospace;
     font-size: 0.68rem;
     letter-spacing: 0.14em;
     color: var(--dim);
     text-transform: uppercase;
     display: flex;
     align-items: center;
     gap: 10px;
   }

   .hero-tag::before {
     content: '';
     width: 20px;
     height: 1px;
     background: var(--accent);
   }

   .hero-content {
     position: relative;
     z-index: 1;
   }

   .hero-h1 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(72px, 12vw, 80px);
     line-height: 0.92;
     letter-spacing: -0.01em;
     color: var(--white);
     margin-bottom: 0.5em;
     width: fit-content;
   }

   .hero-h1 .y {
     color: var(--accent);
   }

   .u {
     background-color: var(--accent);
     color: black;
   }

   .hero_demos {
     position: absolute;
     top: -100px;
     right: -30px;
     z-index: -1;
   }

   .hero-bottom {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     gap: 2rem;
     flex-wrap: wrap;
     margin-top: 2.5rem;
   }

   .hero-desc {
     font-size: clamp(0.9rem, 1.5vw, 1.05rem);
     color: var(--dim2);
     line-height: 1.75;
     max-width: 400px;
     font-weight: 300;
   }

   .hero-actions {
     display: flex;
     gap: 0.75rem;
     align-items: center;
     flex-shrink: 0;
   }

   .btn-main {
     font-family: 'DM Sans', sans-serif;
     font-weight: 500;
     font-size: 0.88rem;
     background: var(--accent);
     color: #000;
     padding: 0.8rem 1.8rem;
     border-radius: 2px;
     text-decoration: none;
     border: none;
     cursor: pointer;
     transition: opacity 0.2s;
     letter-spacing: 0.01em;
     display: inline-block;
   }

   .btn-main:hover {
     opacity: 0.85;
   }

   .btn-line {
     font-family: 'DM Sans', sans-serif;
     font-weight: 500;
     font-size: 0.88rem;
     background: transparent;
     color: var(--text);
     padding: 0.8rem 1.8rem;
     border: 1px solid var(--line2);
     border-radius: 2px;
     text-decoration: none;
     cursor: pointer;
     transition: all 0.2s;
     letter-spacing: 0.01em;
     display: inline-block;
   }

   .btn-line:hover {
     border-color: rgba(255, 255, 255, 0.35);
     color: var(--white);
   }

   /* ─── STRIP ─── */
   .strip {
     border-bottom: 1px solid var(--line);
     padding: 0 clamp(24px, 5vw, 72px);
     overflow: hidden;
   }

   .strip-inner {
     max-width: 100%;
     display: flex;
   }

   .strip-item {
     flex: 1;
     padding: 1.5rem 0;
     border-right: 1px solid var(--line);
     padding-right: 2rem;
     padding-left: 0;
     display: flex;
     flex-direction: column;
     gap: 2px;
   }

   .strip-item:first-child {
     padding-left: 0;
   }

   .strip-item:last-child {
     border-right: none;
     padding-right: 0;
   }

   .strip-item+.strip-item {
     padding-left: 2rem;
   }

   .s-num {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 2rem;
     color: var(--white);
     letter-spacing: 0.02em;
   }

   .s-num span {
     color: var(--accent);
   }

   .s-label {
     font-size: 0.72rem;
     color: var(--dim);
     font-weight: 400;
     letter-spacing: 0.04em;
   }

   /* ─── SECTION COMMON ─── */
   .wrap {
     max-width: 1200px;
     margin: 0 auto;
     padding: clamp(64px, 9vw, 120px) clamp(24px, 5vw, 72px);
   }

   .eyebrow {
     font-family: 'DM Mono', monospace;
     font-size: 0.65rem;
     letter-spacing: 0.16em;
     color: var(--dim);
     text-transform: uppercase;
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 2.5rem;
   }

   .eyebrow::before {
     content: '';
     width: 20px;
     height: 1px;
     background: var(--accent);
   }

   /* ─── SERVICES ─── */
   #servicios {
     border-bottom: 1px solid var(--line);
   }

   .svc-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     gap: 2rem;
     flex-wrap: wrap;
     margin-bottom: clamp(40px, 6vw, 72px);
   }

   .svc-title {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(48px, 7vw, 88px);
     color: var(--white);
     line-height: 0.95;
     letter-spacing: -0.01em;
   }

   .svc-sub {
     font-size: 0.88rem;
     color: var(--dim2);
     line-height: 1.75;
     max-width: 300px;
     font-weight: 300;
   }

   .svc-table {
     width: 100%;
     border-collapse: collapse;
   }

   .svc-row {
     border-top: 1px solid var(--line);
     transition: background 0.25s;
     cursor: default;
   }

   .svc-row:last-child {
     border-bottom: 1px solid var(--line);
   }

   .svc-row:hover {
     background: var(--bg1);
   }

   .svc-cell {
     padding: clamp(24px, 3.5vw, 40px) 0;
     vertical-align: top;
   }

   .svc-cell:last-child {
     padding-right: 0;
   }

   .svc-index {
     font-family: 'DM Mono', monospace;
     font-size: 0.65rem;
     color: var(--dim);
     letter-spacing: 0.1em;
     width: 48px;
     padding-top: 6px;
     user-select: none;
   }

   .svc-name {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(28px, 4vw, 48px);
     color: var(--white);
     letter-spacing: 0.01em;
     line-height: 1;
     width: 260px;
   }

   .svc-what {
     font-size: 0.83rem;
     color: var(--dim2);
     line-height: 1.7;
     max-width: 280px;
     font-weight: 300;
   }

   .svc-tags {
     display: flex;
     flex-direction: column;
     gap: 5px;
     align-items: flex-end;
     min-width: 140px;
   }

   .tag {
     font-family: 'DM Mono', monospace;
     font-size: 0.62rem;
     letter-spacing: 0.08em;
     color: var(--dim);
     border: 1px solid var(--line2);
     padding: 0.22rem 0.7rem;
     border-radius: 2px;
     white-space: nowrap;
   }

   .svc-arrow {
     width: 48px;
     text-align: right;
     font-size: 1.1rem;
     color: var(--dim);
     padding-top: 2px;
     transition: color 0.2s, transform 0.2s;
   }

   .svc-row:hover .svc-arrow {
     color: var(--accent);
     transform: translateX(4px);
   }

   /* ─── PRICING ─── */
   #precios {
     background: var(--bg1);
     border-bottom: 1px solid var(--line);
   }

   .price-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     gap: 2rem;
     flex-wrap: wrap;
     margin-bottom: clamp(40px, 6vw, 72px);
   }

   .price-title {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(48px, 7vw, 88px);
     color: var(--white);
     line-height: 0.95;
     letter-spacing: -0.01em;
   }

   .price-note-top {
     font-size: 0.8rem;
     color: var(--dim);
     max-width: 260px;
     line-height: 1.6;
     font-style: italic;
   }

   .price-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     border: 1px solid var(--line);
     border-radius: 4px;
     overflow: hidden;
   }

   .pc {
     padding: 2.5rem 2rem;
     border-right: 1px solid var(--line);
     position: relative;
     transition: background 0.25s;
   }

   .pc:last-child {
     border-right: none;
   }

   .pc:hover {
     background: var(--bg2);
   }

   .pc.hot {
     background: var(--bg2);
   }

   .pc.hot::before {
     content: 'POPULAR';
     position: absolute;
     top: 0;
     right: 2rem;
     font-family: 'DM Mono', monospace;
     font-size: 0.58rem;
     letter-spacing: 0.12em;
     background: var(--accent);
     color: #000;
     padding: 0.28rem 0.7rem;
     border-radius: 0 0 4px 4px;
   }

   .pc-icon {
     font-size: 1.6rem;
     margin-bottom: 1.5rem;
   }

   .pc-name {
     font-family: 'DM Mono', monospace;
     font-size: 0.65rem;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--dim);
     margin-bottom: 1.5rem;
   }

   .pc-price {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(48px, 6vw, 72px);
     color: var(--white);
     line-height: 1;
     letter-spacing: -0.01em;
     margin-bottom: 0.1em;
   }

   .pc-price sup {
     font-size: 0.35em;
     vertical-align: super;
     color: var(--dim2);
   }

   .pc-period {
     font-size: 0.75rem;
     color: var(--dim);
     margin-bottom: 2rem;
   }

   .pc-div {
     height: 1px;
     background: var(--line);
     margin-bottom: 1.75rem;
   }

   .pc-feats {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 0.6rem;
     margin-bottom: 2rem;
   }

   .pc-feats li {
     font-size: 0.82rem;
     color: var(--dim2);
     display: flex;
     align-items: flex-start;
     gap: 10px;
     line-height: 1.5;
     font-weight: 300;
   }

   .pc-feats li::before {
     content: '–';
     color: var(--accent);
     font-weight: 500;
     flex-shrink: 0;
     margin-top: 1px;
   }

   .pc-btn {
     display: block;
     width: 100%;
     padding: 0.78rem;
     border-radius: 2px;
     font-family: 'DM Sans', sans-serif;
     font-weight: 500;
     font-size: 0.85rem;
     text-align: center;
     text-decoration: none;
     cursor: pointer;
     transition: all 0.2s;
     border: none;
     letter-spacing: 0.01em;
   }

   .pbtn-y {
     background: var(--accent);
     color: #000;
   }

   .pbtn-y:hover {
     opacity: 0.85;
   }

   .pbtn-g {
     background: transparent;
     color: var(--text);
     border: 1px solid var(--line2) !important;
   }

   .pbtn-g:hover {
     border-color: rgba(255, 255, 255, 0.3) !important;
     color: var(--white);
   }

   /* ─── ABOUT ─── */
   #por-que {
     border-bottom: 1px solid var(--line);
   }

   .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: clamp(40px, 8vw, 100px);
     align-items: start;
   }

   .about-left {}

   .about-title {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(48px, 7vw, 88px);
     color: var(--white);
     line-height: 0.95;
     letter-spacing: -0.01em;
     margin-bottom: 1.5rem;
   }

   .about-desc {
     font-size: 0.9rem;
     color: var(--dim2);
     line-height: 1.8;
     font-weight: 300;
     max-width: 440px;
   }

   .about-right {}

   .reason-list {
     display: flex;
     flex-direction: column;
   }

   .reason {
     display: flex;
     align-items: baseline;
     gap: 1rem;
     padding: 1.25rem 0;
     border-bottom: 1px solid var(--line);
     transition: background 0.2s;
   }

   .reason:first-child {
     border-top: 1px solid var(--line);
   }

   .r-num {
     font-family: 'DM Mono', monospace;
     font-size: 0.62rem;
     color: var(--dim);
     letter-spacing: 0.08em;
     flex-shrink: 0;
     width: 28px;
   }

   .r-text {
     flex: 1;
   }

   .r-title {
     font-size: 0.9rem;
     font-weight: 500;
     color: var(--white);
     margin-bottom: 3px;
   }

   .r-desc {
     font-size: 0.78rem;
     color: var(--dim2);
     font-weight: 300;
     line-height: 1.5;
   }

   /* ─── AUDIT CTA ─── */
   .audit-section {
     border-bottom: 1px solid var(--line);
   }

   .audit-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 2rem;
     flex-wrap: wrap;
   }

   .audit-left {}

   .audit-label {
     font-family: 'DM Mono', monospace;
     font-size: 0.65rem;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--dim);
     margin-bottom: 0.6rem;
   }

   .audit-title {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(28px, 4vw, 48px);
     color: var(--white);
     line-height: 0.95;
     letter-spacing: 0.01em;
   }

   .audit-desc {
     font-size: 0.83rem;
     color: var(--dim2);
     line-height: 1.7;
     max-width: 460px;
     margin-top: 0.75rem;
     font-weight: 300;
   }

   .btn-audit {
     font-family: 'DM Sans', sans-serif;
     font-weight: 500;
     font-size: 0.85rem;
     background: transparent;
     color: var(--text);
     border: 1px solid var(--line2);
     padding: 0.8rem 1.8rem;
     border-radius: 2px;
     text-decoration: none;
     white-space: nowrap;
     flex-shrink: 0;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
   }

   .btn-audit:hover {
     border-color: rgba(255, 255, 255, 0.3);
     color: var(--white);
   }

   /* ─── CONTACT ─── */
   #contacto {
     border-bottom: 1px solid var(--line);
   }

   .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: clamp(40px, 8vw, 100px);
     align-items: start;
   }

   .contact-left {}

   .contact-title {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(48px, 7vw, 88px);
     color: var(--white);
     line-height: 0.95;
     letter-spacing: -0.01em;
     margin-bottom: 1.5rem;
   }

   .contact-desc {
     font-size: 0.88rem;
     color: var(--dim2);
     line-height: 1.8;
     font-weight: 300;
     margin-bottom: 2rem;
   }

   .clink-list {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
   }

   .clink {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 1rem 1.25rem;
     border: 1px solid var(--line);
     border-radius: 2px;
     text-decoration: none;
     color: var(--dim2);
     font-size: 0.83rem;
     font-weight: 400;
     transition: all 0.2s;
   }

   .clink:hover {
     border-color: var(--line2);
     color: var(--white);
   }

   .clink-left {
     display: flex;
     align-items: center;
     gap: 10px;
   }

   .clink-icon {
     font-size: 0.9rem;
   }

   .clink-name {
     font-weight: 500;
     color: var(--text);
   }

   .clink-hint {
     font-size: 0.72rem;
     color: var(--dim);
     display: block;
     margin-top: 1px;
   }

   .clink-arr {
     font-size: 0.75rem;
     color: var(--dim);
     transition: transform 0.2s;
   }

   .clink:hover .clink-arr {
     transform: translate(2px, -2px);
     color: var(--accent);
   }

   .contact-form-wrap {}

   .form-title {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 1.6rem;
     color: var(--white);
     letter-spacing: 0.02em;
     margin-bottom: 1.5rem;
   }

   .fg {
     margin-bottom: 1rem;
   }

   .fl {
     display: block;
     font-family: 'DM Mono', monospace;
     font-size: 0.62rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--dim);
     margin-bottom: 0.5rem;
   }

   .fi {
     width: 100%;
     background: var(--bg1);
     border: 1px solid var(--line2);
     border-radius: 2px;
     padding: 0.75rem 1rem;
     color: var(--text);
     font-family: 'DM Sans', sans-serif;
     font-size: 0.88rem;
     transition: border-color 0.2s;
     -webkit-appearance: none;
   }

   .fi:focus {
     outline: none;
     border-color: rgba(232, 255, 71, 0.5);
   }

   .fi::placeholder {
     color: var(--dim);
   }

   .fta {
     resize: vertical;
     min-height: 110px;
     line-height: 1.6;
   }

   .fsub {
     width: 100%;
     background: var(--accent);
     color: #000;
     border: none;
     border-radius: 2px;
     padding: 0.88rem;
     font-family: 'DM Sans', sans-serif;
     font-weight: 500;
     font-size: 0.9rem;
     cursor: pointer;
     transition: opacity 0.2s;
     letter-spacing: 0.02em;
     margin-top: 0.25rem;
   }

   .fsub:hover {
     opacity: 0.85;
   }

   .fnote {
     font-size: 0.7rem;
     color: var(--dim);
     text-align: center;
     margin-top: 0.6rem;
   }

   /* ─── FOOTER ─── */
   footer {
     padding: 2.5rem clamp(24px, 5vw, 72px);
   }

   .footer-inner {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1.5rem;
   }

   .f-brand {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 1.3rem;
     color: var(--white);
     letter-spacing: 0.04em;
   }

   .f-brand span {
     color: var(--accent);
   }

   .f-links {
     display: flex;
     gap: 1.5rem;
     list-style: none;
   }

   .f-links a {
     font-size: 0.75rem;
     color: var(--dim);
     text-decoration: none;
     transition: color 0.2s;
   }

   .f-links a:hover {
     color: var(--white);
   }

   .f-copy {
     font-size: 0.72rem;
     color: var(--dim);
   }

   .f-status {
     display: flex;
     align-items: center;
     gap: 6px;
     font-family: 'DM Mono', monospace;
     font-size: 0.65rem;
     color: var(--dim2);
     letter-spacing: 0.06em;
   }

   .sdot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: #4ade80;
     box-shadow: 0 0 5px #4ade80;
     animation: pulse 2s infinite;
   }

   @keyframes pulse {

     0%,
     100% {
       opacity: 1
     }

     50% {
       opacity: 0.4
     }
   }

   /* ─── TOAST ─── */
   #toast {
     position: fixed;
     bottom: 1.5rem;
     right: 1.5rem;
     z-index: 500;
     background: var(--bg2);
     border: 1px solid var(--line2);
     border-left: 2px solid var(--accent);
     color: var(--text);
     font-size: 0.82rem;
     padding: 0.85rem 1.2rem;
     border-radius: 2px;
     display: none;
     font-family: 'DM Mono', monospace;
     letter-spacing: 0.04em;
   }

   .toast-show {
     animation: tin 0.25s ease both;
   }

   @keyframes tin {
     from {
       transform: translateY(8px);
       opacity: 0
     }

     to {
       transform: translateY(0);
       opacity: 1
     }
   }

   /* ─── REVEAL ─── */
   .r {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.6s ease, transform 0.6s ease;
   }

   .r.v {
     opacity: 1;
     transform: translateY(0);
   }

   .r2 {
     transition-delay: 0.1s;
   }

   .r3 {
     transition-delay: 0.2s;
   }

   /* ─── RESPONSIVE ─── */
   @media(max-width:900px) {
     .price-grid {
       grid-template-columns: 1fr;
     }

     .pc {
       border-right: none;
       border-bottom: 1px solid var(--line);
     }

     .pc:last-child {
       border-bottom: none;
     }

     .about-grid,
     .contact-grid {
       grid-template-columns: 1fr;
     }

     .svc-tags {
       display: none;
     }

     .svc-name {
       width: auto;
     }

     .strip-inner {
       flex-wrap: wrap;
     }

     .strip-item {
       min-width: 120px;
     }
   }

   @media(max-width:640px) {

     .nav-links,
     .nav-cta {
       display: none;
     }

     .hbg {
       display: flex;
     }

     .hero-actions {
       flex-direction: column;
       align-items: stretch;
       width: 100%;
     }

     .hero-bottom {
       flex-direction: column;
     }

     .svc-header,
     .price-header {
       flex-direction: column;
     }

     .audit-inner {
       flex-direction: column;
     }

     .footer-inner {
       flex-direction: column;
       align-items: flex-start;
     }

     .svc-cell {
       padding-top: 20px;
       padding-bottom: 20px;
     }
   }


   /* Testteo */