
  * { font-family: 'Inter', sans-serif; }
  h1,h2,h3,h4,h5,.font-heading { font-family: 'Syne', sans-serif; }
  body { color: #2A2F35; background: #fff; }

  .nav-glass {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #E4E6E9;
  }

  .card {
    border: 1px solid #E4E6E9;
    border-radius: 5px;
    background: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  .card:hover {
    box-shadow: 0 12px 40px -8px rgba(107,186,71,0.12);
    transform: translateY(-2px);
  }

  .btn-primary {
    background: #6BBA47;
    color: #fff;
    border-radius: 5px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    transition: background 0.25s ease, transform 0.2s ease;
  }
  .btn-primary:hover { background: #3C4148; transform: translateY(-1px); }

  .btn-secondary {
    border: 1.5px solid #E4E6E9;
    color: #2A2F35;
    border-radius: 5px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    transition: border-color 0.25s, background 0.25s;
  }
  .btn-secondary:hover { border-color: #6BBA47; background: #F7F8F9; }

  .section-gray { background: #F7F8F9; }

  .tag {
    background: #F7F8F9;
    border: 1px solid #E4E6E9;
    border-radius: 99px;
    color: #6BBA47;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .stat-card {
    border: 1px solid #E4E6E9;
    border-radius: 5px;
    background: #fff;
  }

  .faq-item { border-bottom: 1px solid #E4E6E9; }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, opacity 0.3s ease; opacity: 0; }
  .faq-item.open .faq-answer { max-height: 300px; opacity: 1; }
  .faq-chevron { transition: transform 0.3s ease; }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }

  .tech-badge {
    background: #fff;
    border: 1px solid #E4E6E9;
    border-radius: 5px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #3C4148;
    white-space: nowrap;
  }
  .tech-badge:hover { border-color: #6BBA47; color: #6BBA47; }

  .process-step { position: relative; }
  .step-number {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #6BBA47;
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .mobile-menu { display: none; }
  .mobile-menu.open { display: block; }

  .logo-img { height: 71px; width: auto; }

  /* Dark stats bar */
  .stats-bar {
    background: #2A2F35;
    color: #fff;
  }
  .stats-bar .stat-num {
    color: #6BBA47;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
  }

  .green-line { width: 48px; height: 3px; background: #6BBA47; border-radius: 2px; }

  .project-card {
    border: 1px solid #E4E6E9;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
  }
  .project-card .p-8 { flex: 1; }
  .project-card:hover {
    box-shadow: 0 16px 48px -8px rgba(107,186,71,0.15);
    transform: translateY(-3px);
  }

  .project-dot { width: 8px; height: 8px; border-radius: 50%; background: #6BBA47; }

  /* Service cards with bg image */
  .svc-card {
    position: relative;
    border: 1px solid #E4E6E9;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .svc-card:hover {
    box-shadow: 0 16px 48px -8px rgba(107,186,71,0.18);
    transform: translateY(-3px);
  }
  .svc-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
    transition: transform 0.5s ease;
  }
  .svc-card:hover .svc-card-bg { transform: scale(1.06); }
  .svc-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.88);
    z-index: 1;
    transition: background 0.4s ease;
  }
  .svc-card:hover .svc-card-overlay { background: rgba(255,255,255,0.80); }
  .svc-card-content {
    position: relative;
    z-index: 2;
    padding: 1.75rem;
  }

  footer a:hover { color: #6BBA47; }

  /* ===== HERO STYLES ===== */
  .hero-section {
    position: relative;
    overflow: hidden;
    background: #1a1d20;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22,25,28,0.72);
  }
  .hero-tag {
    background: rgba(107,186,71,0.15);
    border: 1px solid rgba(107,186,71,0.35);
    border-radius: 99px;
    color: #6BBA47;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }
  .hero-btn-outline {
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    transition: border-color 0.25s, background 0.25s;
  }
  .hero-btn-outline:hover {
    border-color: #6BBA47;
    background: rgba(107,186,71,0.08);
  }
  .hero-stat { display: flex; flex-direction: column; gap: 2px; }
  .hero-stat-num { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
  .hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; letter-spacing: 0.03em; }
  .hero-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

  /* Hero card */
  .hero-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.45);
  }
  .hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #F7F8F9;
    border-bottom: 1px solid #E4E6E9;
  }
  .hero-card-dots { display: flex; gap: 5px; }
  .hero-card-dots span { display: block; width: 10px; height: 10px; border-radius: 50%; background: #E4E6E9; }
  .hero-card-dots span:first-child { background: #FC5C5C; }
  .hero-card-dots span:nth-child(2) { background: #FCBC3C; }
  .hero-card-dots span:nth-child(3) { background: #6BBA47; }
  .hero-card-title { font-size: 12px; font-weight: 600; color: #9ca3af; margin-left: 4px; }
  .hero-card-img-wrap { overflow: hidden; height: 260px; }
  .hero-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-card-stats {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background: #fff;
    border-top: 1px solid #E4E6E9;
  }
  .hero-card-stat { flex: 1; text-align: center; }
  .hero-card-stat-num { display: block; font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: #2A2F35; }
  .hero-card-stat-label { display: block; font-size: 11px; color: #9ca3af; margin-top: 2px; font-weight: 500; }
  .hero-card-stat-sep { width: 1px; height: 32px; background: #E4E6E9; }


  /* Hero servicios — dark with overlay */
  .svc-hero {
    position: relative;
    background: #1E2226;
    overflow: hidden;
    padding: 120px 0 80px;
  }
  .svc-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.12;
  }
  .svc-hero-content { position: relative; z-index: 1; }

    /* CTA section */
  .cta-section {
    position: relative;
    background: #1E2226;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600&q=80&auto=format&fit=crop') center/cover;
    opacity: 0.10;
  }
  .cta-content { position: relative; z-index: 1; }

    /* Value prop cards */
  .value-card {
    background: #fff;
    border: 1px solid #E4E6E9;
    border-radius: 5px;
    padding: 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .value-card:hover {
    box-shadow: 0 12px 40px -8px rgba(107,186,71,0.18);
    transform: translateY(-3px);
  }
  .value-card-icon {
    width: 48px; height: 48px;
    background: rgba(107,186,71,0.10);
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
  }

    /* Section alternating bg */
  .section-white { background: #ffffff; }


    /* Client profile cards */
  .profile-card {
    background: #fff;
    border: 1px solid #E4E6E9;
    border-radius: 5px;
    padding: 2rem;
    border-left: 3px solid #6BBA47;
    transition: box-shadow 0.3s;
  }
  .profile-card:hover { box-shadow: 0 8px 32px -4px rgba(107,186,71,0.14); }


    /* Process steps */
  .step-num {
    width: 52px; height: 52px;
    background: #6BBA47;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700; font-size: 20px;
    flex-shrink: 0;
  }
  .step-connector {
    position: absolute;
    left: 26px; top: 52px; bottom: -24px;
    width: 1px;
    background: #E4E6E9;
  }


    /* Metrics */
  .metric-card {
    text-align: center; padding: 2.5rem 1.5rem;
    border: 1px solid #E4E6E9;
    border-radius: 5px; background: #fff;
    transition: box-shadow 0.3s;
  }
  .metric-card:hover { box-shadow: 0 8px 32px -4px rgba(107,186,71,0.14); }
  .metric-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.75rem; font-weight: 800;
    color: #6BBA47; display: block; line-height: 1;
    margin-bottom: 8px;
  }
  .metric-label { font-size: 14px; color: #6b7280; line-height: 1.4; }

    /* App type cards */
  .app-card {
    background: #fff;
    border: 1px solid #E4E6E9;
    border-radius: 5px;
    padding: 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
    border-top: 3px solid #6BBA47;
  }
  .app-card:hover {
    box-shadow: 0 12px 40px -8px rgba(107,186,71,0.18);
    transform: translateY(-3px);
  }

    /* Differentiator cards */
  .diff-card {
    background: #fff;
    border: 1px solid #E4E6E9;
    border-radius: 5px;
    padding: 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .diff-card:hover {
    box-shadow: 0 12px 40px -8px rgba(107,186,71,0.14);
    transform: translateY(-2px);
  }
  .diff-icon {
    width: 48px; height: 48px;
    background: rgba(107,186,71,0.10);
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
  }

  /* Entregables table */
  .entregable-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #F0F1F3;
  }
  .entregable-row:last-child { border-bottom: none; }
  .entregable-check {
    width: 22px; height: 22px;
    background: #6BBA47;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
  }

  /* Comparativa table */
  .comp-table { width: 100%; border-collapse: collapse; }
  .comp-table th {
    background: #2A2F35;
    color: #fff;
    padding: 12px 16px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    border: 1px solid #3C4148;
  }
  .comp-table th:first-child { border-radius: 5px 0 0 0; }
  .comp-table th:last-child { border-radius: 0 5px 0 0; }
  .comp-table td {
    padding: 11px 16px;
    font-size: 13px;
    border: 1px solid #E4E6E9;
    vertical-align: top;
  }
  .comp-table tr:nth-child(even) td { background: #F8F9FA; }
  .comp-table td:first-child { font-weight: 600; color: #3C4148; }
  .comp-table td:nth-child(2) { color: #2A2F35; }
  .comp-table td:nth-child(3), .comp-table td:nth-child(4) { color: #6b7280; }