/**
 * JConsulting - main.css
 * @copyright 2026 JConsulting. Todos los derechos reservados.
 * @license   Propietario - No redistribuir
 */


    :root {
      --navy: #002B5C;
      --navy-dark: #001A3A;
      --navy-mid: #003F85;
      --accent: #0077CC;
      --accent-bright: #0094FF;
      --orange: #E85D00;
      --orange-hover: #FF6A00;
      --teal: #00B89C;
      --teal-light: #E1F5EE;
      --white: #FFFFFF;
      --off-white: #F5F7FA;
      --gray-light: #E8EDF4;
      --gray-mid: #8899AA;
      --text-dark: #0D1B2A;
      --text-mid: #3D5166;
      --text-light: #6B7E92;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--off-white);
      color: var(--text-dark);
      font-size: 15px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }
    h3 { font-size: 19px; }

    /* ── NAV ── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(0, 27, 58, 0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,119,204,0.2);
      padding: 0 40px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-mark {
      width: 38px; height: 38px;
      background: linear-gradient(135deg, var(--accent), var(--teal));
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: white;
      letter-spacing: -0.5px;
    }

    .logo-text {
      font-family: 'Sora', sans-serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: white;
      letter-spacing: -0.3px;
    }

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

    nav { display: flex; align-items: center; gap: 6px; }

    nav a {
      color: rgba(255,255,255,0.82);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      padding: 7px 14px;
      border-radius: 6px;
      transition: all 0.2s;
    }

    nav a:hover { color: white; background: rgba(255,255,255,0.1); }

    .btn-nav {
      background: var(--orange);
      color: white !important;
      padding: 8px 20px !important;
      border-radius: 6px !important;
      font-weight: 600 !important;
      transition: background 0.2s !important;
    }

    .btn-nav:hover { background: var(--orange-hover) !important; }

    /* ── HERO ── */
    #inicio {
      min-height: 100vh;
      background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, #004F9F 100%);
      display: flex;
      align-items: center;
      padding: 100px 40px 60px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 80% 20%, rgba(0,148,255,0.12) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(0,184,156,0.1) 0%, transparent 40%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-content {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,148,255,0.15);
      border: 1px solid rgba(0,148,255,0.3);
      color: #7BC8FF;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 24px;
    }

    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--teal);
      border-radius: 50%;
    }

    .hero-left h1 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      color: white;
      line-height: 1.15;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .hero-left h1 em {
      font-style: normal;
      color: var(--accent-bright);
    }

    .hero-left p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.72);
      margin-bottom: 36px;
      max-width: 480px;
      line-height: 1.8;
    }

    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

    .btn-primary {
      background: var(--orange);
      color: white;
      padding: 13px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
      display: inline-block;
    }

    .btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }

    .btn-outline {
      background: transparent;
      color: white;
      padding: 12px 26px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      border: 1.5px solid rgba(255,255,255,0.35);
      transition: all 0.2s;
      display: inline-block;
    }

    .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }

    .hero-stat strong { display: block; font-family: 'Sora', sans-serif; font-size: 1.9rem; font-weight: 700; color: white; }
    .hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; }

    .hero-right {
      display: flex;
      justify-content: center;
    }

    .hero-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 32px;
      max-width: 380px;
      width: 100%;
      backdrop-filter: blur(10px);
    }

    .hero-card-title {
      font-family: 'Sora', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--teal);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 20px;
    }

    .service-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border-radius: 10px;
      background: rgba(255,255,255,0.06);
      margin-bottom: 10px;
      border: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.85);
      font-size: 0.9rem;
      font-weight: 500;
    }

    .service-pill .icon {
      width: 32px; height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .icon-blue { background: rgba(0,119,204,0.25); }
    .icon-teal { background: rgba(0,184,156,0.25); }
    .icon-orange { background: rgba(232,93,0,0.25); }
    .icon-purple { background: rgba(120,80,220,0.2); }

    /* ── SECTION COMMONS ── */
    section { padding: 90px 40px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--navy-dark);
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.3px;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--text-light);
      max-width: 580px;
      margin-bottom: 52px;
      line-height: 1.8;
    }

    /* ── TRUST ADVISOR ── */
    #servicios {
      background: white;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 12px;
    }

    .trust-card {
      border: 1px solid var(--gray-light);
      border-radius: 14px;
      padding: 28px;
      background: white;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }

    .trust-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--teal));
      opacity: 0;
      transition: opacity 0.25s;
    }

    .trust-card:hover { border-color: rgba(0,119,204,0.3); box-shadow: 0 8px 30px rgba(0,43,92,0.08); transform: translateY(-2px); }
    .trust-card:hover::before { opacity: 1; }

    .trust-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 16px;
    }

    .trust-card h3 {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--navy-dark);
      margin-bottom: 10px;
    }

    .trust-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

    /* ── ACOMPAÑAMIENTO ── */
    #acompanamiento {
      background: var(--off-white);
    }

    .accomp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .accomp-card {
      background: white;
      border: 1px solid var(--gray-light);
      border-radius: 14px;
      padding: 26px;
      transition: all 0.2s;
    }

    .accomp-card:hover { box-shadow: 0 6px 24px rgba(0,43,92,0.07); transform: translateY(-2px); }

    .accomp-num {
      font-family: 'Sora', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }

    .accomp-card h3 {
      font-size: 0.98rem;
      font-weight: 600;
      color: var(--navy-dark);
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .accomp-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; }

    /* ── CASOS DE ÉXITO ── */
    #casos { background: white; }

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

    .caso-card {
      border: 1px solid var(--gray-light);
      border-radius: 14px;
      overflow: hidden;
      transition: all 0.25s;
    }

    .caso-card:hover { box-shadow: 0 10px 36px rgba(0,43,92,0.1); transform: translateY(-3px); }

    .caso-header {
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
    }

    .caso-body { padding: 22px; }

    .caso-tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 3px 10px;
      border-radius: 4px;
      margin-bottom: 10px;
    }

    .tag-ai { background: rgba(0,119,204,0.1); color: var(--accent); }
    .tag-cyber { background: rgba(0,184,156,0.1); color: #007A63; }
    .tag-xaas { background: rgba(232,93,0,0.1); color: var(--orange); }

    .caso-body h3 { font-size: 1rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 8px; }
    .caso-body p { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; }

    .caso-result {
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--gray-light);
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--teal);
    }

    /* ── QUIÉNES SOMOS ── */
    #quienes { background: var(--navy-dark); }

    #quienes .section-title { color: white; }
    #quienes .section-label { color: var(--teal); }
    #quienes .section-sub { color: rgba(255,255,255,0.55); }

    .profile-wrap {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 64px;
      align-items: start;
    }

    .profile-photo-container { position: relative; }

    .profile-photo {
      width: 100%;
      border-radius: 16px;
      display: block;
      object-fit: cover;
      aspect-ratio: 4/5;
    }

    .profile-badge {
      position: absolute;
      bottom: -16px;
      right: -16px;
      background: var(--orange);
      color: white;
      font-family: 'Sora', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 10px 16px;
      border-radius: 10px;
      text-align: center;
      line-height: 1.4;
      box-shadow: 0 4px 16px rgba(232,93,0,0.4);
    }

    .profile-content h2 {
      font-size: 1.9rem;
      font-weight: 700;
      color: white;
      margin-bottom: 4px;
    }

    .profile-role {
      font-size: 1rem;
      color: var(--accent-bright);
      font-weight: 500;
      margin-bottom: 28px;
    }

    .profile-bio {
      font-size: 0.97rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.85;
      margin-bottom: 28px;
    }

    .profile-links {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .profile-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 18px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      transition: all 0.2s;
    }

    .link-linkedin {
      background: rgba(0,119,204,0.2);
      border: 1px solid rgba(0,119,204,0.4);
      color: #7BC8FF;
    }

    .link-linkedin:hover { background: rgba(0,119,204,0.35); }

    .link-email {
      background: rgba(0,184,156,0.15);
      border: 1px solid rgba(0,184,156,0.35);
      color: #4DDFC4;
    }

    .link-email:hover { background: rgba(0,184,156,0.28); }

    .expertise-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
    }

    .etag {
      font-size: 0.78rem;
      font-weight: 500;
      padding: 5px 12px;
      border-radius: 20px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.72);
    }

    /* ── CONTACTO ── */
    #contacto { background: white; }

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

    .contact-info h3 {
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--navy-dark);
      margin-bottom: 16px;
    }

    .contact-info p {
      color: var(--text-light);
      font-size: 0.95rem;
      margin-bottom: 30px;
      line-height: 1.8;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .contact-detail-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: var(--gray-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .contact-detail-text strong {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-light);
      margin-bottom: 2px;
    }

    .contact-detail-text a, .contact-detail-text span {
      font-size: 0.93rem;
      color: var(--accent);
      text-decoration: none;
      font-weight: 500;
    }

    .contact-form { }

    .form-group { margin-bottom: 16px; }

    .form-group label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-mid);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--gray-light);
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.93rem;
      color: var(--text-dark);
      background: var(--off-white);
      transition: border-color 0.2s;
      outline: none;
    }

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

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

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

    /* ── FOOTER ── */
    footer {
      background: var(--navy-dark);
      padding: 40px;
      border-top: 1px solid rgba(255,255,255,0.07);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-brand .logo-text { font-size: 1.1rem; }

    .footer-tagline {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.4);
      margin-top: 4px;
    }

    .footer-links { display: flex; gap: 24px; }

    .footer-links a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: white; }

    .footer-copy {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.35);
    }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      header { padding: 0 20px; }
      nav a { display: none; }
      .btn-nav { display: flex; }

      section { padding: 60px 20px; }

      .hero-content { grid-template-columns: 1fr; gap: 40px; }
      .hero-right { display: none; }

      .trust-grid { grid-template-columns: 1fr; }
      .accomp-grid { grid-template-columns: 1fr; }
      .casos-grid { grid-template-columns: 1fr; }
      .profile-wrap { grid-template-columns: 1fr; }
      .contact-wrap { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }

      .hero-stats { gap: 20px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }

    /* ── MODAL OVERLAY ── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(4px);
      overflow-y: auto;
    }
    .modal-overlay.open { display: block; }
    .modal-inner {
      min-height: 100vh;
      position: relative;
    }
    .modal-close {
      position: fixed;
      top: 16px;
      right: 20px;
      z-index: 1100;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      color: white;
      border-radius: 8px;
      padding: 8px 16px;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: background 0.2s;
    }
    .modal-close:hover { background: rgba(255,255,255,0.22); }
    .modal-frame {
      width: 100%;
      min-height: 100vh;
      border: none;
      display: block;
    }

    /* ── RAaaS SECTION ── */
    #raas { background: linear-gradient(160deg, var(--navy-dark) 0%, #003060 100%); }
    #raas .section-title { color: white; }
    #raas .section-label { color: var(--teal); }
    #raas .section-sub { color: rgba(255,255,255,0.6); }

    .raas-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,184,156,0.15);
      border: 1px solid rgba(0,184,156,0.35);
      color: var(--teal);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 16px;
    }

    .raas-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 12px;
    }

    .raas-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 30px;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }

    .raas-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--accent-bright));
      opacity: 0;
      transition: opacity 0.25s;
    }

    .raas-card:hover { 
      background: rgba(255,255,255,0.08); 
      border-color: rgba(0,184,156,0.3);
      transform: translateY(-2px);
    }
    .raas-card:hover::before { opacity: 1; }

    .raas-card-icon {
      width: 52px; height: 52px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 18px;
    }

    .raas-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: white;
      margin-bottom: 8px;
    }

    .raas-card .raas-subtitle {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--teal);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 10px;
    }

    .raas-card p {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .raas-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 20px;
    }

    .raas-tag {
      font-size: 0.72rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      background: rgba(0,148,255,0.15);
      border: 1px solid rgba(0,148,255,0.25);
      color: #7BC8FF;
    }

    .raas-tag-teal {
      background: rgba(0,184,156,0.15);
      border: 1px solid rgba(0,184,156,0.25);
      color: var(--teal);
    }

    .btn-raas {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      transition: all 0.2s;
    }

    .btn-raas-teal {
      background: var(--teal);
      color: white;
    }
    .btn-raas-teal:hover { background: #009b82; transform: translateY(-1px); }

    .btn-raas-outline {
      background: transparent;
      color: rgba(255,255,255,0.7);
      border: 1.5px solid rgba(255,255,255,0.2);
    }
    .btn-raas-outline:hover { border-color: rgba(255,255,255,0.5); color: white; }

    .raas-value-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .raas-value-item { text-align: center; }
    .raas-value-item strong { display: block; font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--teal); }
    .raas-value-item span { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; }

    .repo-btn-wrap {
      text-align: center;
      margin-top: 36px;
    }

    .btn-repo {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 24px;
      border-radius: 8px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.7);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }
    .btn-repo:hover { background: rgba(255,255,255,0.13); color: white; }

    @media (max-width: 900px) {
      .raas-grid { grid-template-columns: 1fr; }
      .raas-value-strip { grid-template-columns: 1fr; gap: 10px; }
    }

  
/* ══ TAKING POINTS SECTION ══ */
.taking-points-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8edf4 100%);
  padding: 48px 40px;
  margin: 0;
}

.taking-points-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.taking-point-block {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid var(--accent);
}

.taking-point-block:nth-child(2) {
  border-left-color: var(--teal);
}

.tp-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.tp-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.tp-carousel {
  display: flex;
  gap: 12px;
  overflow: hidden;
  position: relative;
  height: 48px;
  align-items: center;
}

.tp-stat {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  padding: 0 16px;
  animation: carouselScroll 12s linear infinite;
}

.tp-stat:nth-child(1) { animation-delay: 0s; }
.tp-stat:nth-child(2) { animation-delay: 4s; }
.tp-stat:nth-child(3) { animation-delay: 8s; }

@keyframes carouselScroll {
  0% { opacity: 1; transform: translateX(0); }
  25% { opacity: 1; transform: translateX(0); }
  35% { opacity: 0; transform: translateX(-100%); }
  40% { opacity: 0; transform: translateX(100%); }
  50% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; transform: translateX(0); }
  100% { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
  .taking-points-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tp-title {
    font-size: 16px;
  }
  
  .tp-subtitle {
    font-size: 13px;
  }
  
  .tp-stat {
    font-size: 14px;
  }
}

