    :root{
      --bg-dark:#08111c;
      --bg-dark-2:#0d1824;
      --text:#111111;
      --text-soft:#5d5d5d;
      --white:#ffffff;
      --border:#ece7df;
      --card:#ffffff;
      --accent:#ef4d5a;
      --accent-2:#d93d4a;
      --shadow:0 12px 40px rgba(0,0,0,.08);
      --radius-xl:22px;
      --radius-lg:18px;
      --radius-md:14px;
      --container:1240px;
    }

    *{
      box-sizing:border-box;
      margin:0;
      padding:0;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:'Inter', sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(220,165,95,.12), transparent 20%),
        radial-gradient(circle at top right, rgba(220,165,95,.12), transparent 20%),
        #f9f6f2;
      line-height:1.6;
    }

    img{
      max-width:100%;
      display:block;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    .container{
      width:min(var(--container), calc(100% - 48px));
      margin:0 auto;
    }

    /* =========================
       HERO
    ========================= */
    .hero{
      background:
        radial-gradient(circle at 85% 10%, rgba(210,119,89,.35), transparent 24%),
        radial-gradient(circle at 15% 10%, rgba(20,34,52,.5), transparent 25%),
        linear-gradient(180deg, #07111b 0%, #09131d 100%);
      color:var(--white);
      padding:72px 0 110px;
    }

    .hero-copy {
        padding-top: 6px;
    }

    .hero-grid{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:56px;
      align-items:stretch;
    }

    .eyebrow{
      display: inline-block;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--accent);
      background: rgba(239,77,90,0.08);
      border: 1px solid rgba(239,77,90,0.16);
      padding: 8px 14px;
      border-radius: 999px;
      margin-bottom: 20px;
    }

    .hero h1{
      font-family:'Playfair Display', serif;
      font-size:4.2rem;
      line-height:.95;
      font-weight:600;
      margin-bottom:18px;
      letter-spacing:-0.03em;
    }

    .hero h2{
      font-family:'Playfair Display', serif;
      font-size:2.2rem;
      line-height:1.08;
      color:var(--accent-2);
      font-weight:500;
      margin-bottom:28px;
    }

    .hero p{
      max-width:720px;
      font-size:17px;
      color:rgba(255,255,255,.92);
      margin-bottom:14px;
    }

    .hero-actions{
      display:flex;
      gap:18px;
      flex-wrap:wrap;
      margin-top:30px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:200px;
      height:52px;
      padding:0 29px;
      border-radius:6px;
      font-weight:500;
      font-size:16px;
      transition:.25s ease;
    }

    .btn-primary{
      background:linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
      color:#fff;
      box-shadow:0 10px 24px rgba(219, 10, 90, 0.25);
    }

    .btn-primary:hover{
      transform:translateY(-2px);
      filter:brightness(1.03);
    }

    .btn-outline{
      border:2px solid var(--accent);
      color:#fff;
      background:transparent;
      
    }

    .btn-outline:hover{
      background:rgba(255,255,255,.04);
      transform:translateY(-2px);
    }

    .hero-image{
      position:relative;
      border-radius:24px;
      overflow:hidden;
      min-height:540px;
      box-shadow:0 30px 60px rgba(0,0,0,.28);
      background:#1c1c1c;
    }

    .hero-image img{
      width:100%;
      height:100%;
      object-fit: cover;
      display: block;
    }

    /* =========================
       SECTIONS
    ========================= */
    .section{
      padding:30px 0 0;
    }

    .section-heading{
      margin-bottom:28px;
    }

    .section-heading .eyebrow{
      color:var(--accent-2);
      margin-bottom:25px;
    }

    .section-title{
      font-family:'Playfair Display', serif;
      font-size:2.3rem;
      line-height:1.06;
      font-weight:600;
      color:#171717;
      margin-bottom:25px;
    }

    .title-line{
      width:62px;
      height:3px;
      background:var(--accent);
      border-radius:999px;
    }

    /* =========================
       PROJECTS GRID
    ========================= */
    .projects-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:32px;
      margin-top:55px;
    }

    .project-card{
      background:var(--card);
      border:1px solid #efe8df;
      border-radius:20px;
      overflow:hidden;
      box-shadow:var(--shadow);
      display:flex;
      flex-direction: column;
      min-height:430px;
    }

    .project-thumb{
      position:relative;
      aspect-ratio: 1 / 1;
      width: 100%;
      background:#f7f3ee;
      overflow: hidden;
      flex-shrink:0;
    }

    .project-thumb img{
      width:100%;
      height:100%;
      object-fit:contain;
      object-position: top center;
      display: block;
    }

    .project-content{
      padding:34px 28px 28px;
      display:flex;
      flex-direction:column;
      justify-content:flex-start;
      flex: 1;
    }

    .project-tag{
      color:var(--accent);
      text-transform:uppercase;
      font-size:14px;
      font-weight:700;
      letter-spacing:.04em;
      margin-bottom:12px;
    }

    .project-title{
      font-family:'Playfair Display', serif;
      font-size:24px;
      line-height:1.18;
      font-weight:600;
      margin-bottom:18px;
      color:#171717;
    }

    .project-text{
      color:#444;
      font-size:16px;
      line-height:1.85;
      margin-bottom:24px;
    }

    .project-link{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:fit-content;
    min-height:50px;
    padding:0 20px;
    border-radius: 10px;
    background:linear-gradient(180deg, #ff6670 0%, #ff4f5f 100%);
    color:#fff;
    font-weight:700;
    font-size:15px;
    line-height:1;
    box-shadow:0 12px 28px rgba(255,79,95,.22);
    transition:all .25s ease;
    }

    .project-link:hover{
    transform:translateY(-2px);
    filter:brightness(1.04);
    opacity:.95;
    }

    
    /* =========================
       INFO CARDS (SERVICIOS / CONTACTO)
    ========================= */
    .info-block{
      background:#fff;
      border:1px solid #efe8df;
      border-radius:20px;
      box-shadow:var(--shadow);
      margin-top:26px;
      overflow:hidden;
    }

    /* ===== SERVICIOS ===== */

    .info-grid{
    display:grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    align-items:stretch;
    }

    .info-col{
    padding:34px 28px;
    min-height:178px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    padding-top: 44px;
    position:relative;
    }
    
    
    .info-col + .info-col{
    border-left:1px solid #efe8df;
    }

    .info-title{
    font-family:'Playfair Display', serif;
    font-size:28px;
    line-height:1.1;
    margin-bottom:14px;
    color:#181818;
    }

    .info-line{
    width:56px;
    height:3px;
    background:var(--accent);
    border-radius:999px;
    margin-bottom:12px;
    }

    /* NUEVO: bloque del icono */
    .feature-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    color:#ff5a63;
    margin-bottom:18px;
    flex-shrink:0;
    }

    /* NUEVO: tamaño real del SVG */
    .feature-icon svg{
    width:34px;
    height:34px;
    stroke:currentColor;
    stroke-width:1.8;
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
    }

    /* NUEVO: texto mejor alineado */
    .feature-text{
    font-size:16px;
    line-height:1.75;
    color:#1d1d1d;
    font-weight:500;
    max-width:220px;
    margin:0;
    }

    /* =========================
    CONTACTO
    ========================= */

    .contact-grid{
    display:grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    align-items:stretch;
    }

    .contact-item{
    padding: 52px 40px 28px;
    min-height:178px;
    display:flex;
    flex-direction:column;
    justify-content: space-between;
    position:relative;
    }

    .contact-item + .contact-item{
    border-left:1px solid #efe8df;
    }

    .contact-item--intro{
        padding: 34px 28px;
    justify-content:center;
    }

    .contact-top{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
    }

    .contact-copy{
    display:flex;
    flex-direction:column;
    gap:2px;
    }

    .contact-icon{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ff5a63;
    flex-shrink:0;
    margin-top:2px;
    }

    .contact-icon svg{
    width:28px;
    height:28px;
    stroke:currentColor;
    stroke-width:1.9;
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
    }

    .contact-label{
    font-weight:700;
    font-size:18px;
    line-height:1.2;
    color:#202020;
    margin:0;
    }

    .contact-value{
    color:#303030;
    font-size:16px;
    line-height:1.6;
    margin:0;
    }

    .contact-link{
    margin-top:auto;
    color:#ff5a63;
    font-weight:600;
    font-size:14px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    }

    .contact-link:hover{
    opacity:.85;
    }

    /* =========================
       FOOTER
    ========================= */
    .footer{
      margin-top:40px;
      background:linear-gradient(180deg, #07111b 0%, #09131d 100%);
      color:rgba(255,255,255,.88);
      padding:22px 0;
    }

    .footer-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      font-size:13px;
      color: #8390a3;
    }

    /* =========================
       RESPONSIVE
    ========================= */
    @media (max-width: 1200px){
      .hero-grid{
        grid-template-columns:1fr;
      }

      .hero-image{
        min-height:420px;
      }

      .projects-grid{
        grid-template-columns:1fr;
      }

      .project-card{
        grid-template-columns:1fr;
      }

      .project-thumb{
        min-height:340px;
      }

      .info-grid{
        grid-template-columns:1fr 1fr;
      }

      .info-col:first-child{
        grid-column:1 / -1;
        border-bottom:1px solid #efe8df;
      }

      .contact-grid{
        grid-template-columns:1fr 1fr;
      }

      .contact-item:first-child{
        grid-column:1 / -1;
        border-bottom:1px solid #efe8df;
      }
    }

    @media (max-width: 768px){
      .container{
        width:min(100% - 28px, var(--container));
      }

      .hero{
        padding:48px 0 42px;
      }

      .hero h1{
        font-size:54px;
      }

      .hero h2{
        font-size:30px;
      }

      .hero p{
        font-size:15px;
      }

      .btn{
        width:100%;
      }

      .hero-image{
        min-height:320px;
      }

      .section{
        padding-top:40px;
      }

      .section-title{
        font-size:42px;
      }

      .project-thumb{
        min-height:260px;
      }

      .project-content{
        padding:24px 22px 24px;
      }

      .project-title{
        font-size:28px;
      }

      .info-grid,
      .contact-grid{
        grid-template-columns:1fr;
      }

      .info-col + .info-col,
      .contact-item + .contact-item{
        border-left:none;
        border-top:1px solid #efe8df;
      }

      .footer-inner{
        flex-direction:column;
        align-items:flex-start;
      }
    }

    .contact-icon i{
        font-size:30px;
        line-height:1;
        color:#ff5a63;
    }

    /* =========================
       Availability Badge
    ========================= */

    .availability-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;
    min-height:42px;
    padding:0 16px;
    margin-bottom:16px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#f5f5f5;
    font-size:14px;
    font-weight:600;
    }

    .availability-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#4ade80;
    position:relative;
    flex-shrink:0;
    box-shadow:0 0 0 0 rgba(74, 222, 128, .7);
    animation:pulseAvailability 1.8s infinite;
    }

    .availability-dot::after{
    content:"";
    position:absolute;
    inset:-5px;
    border-radius:50%;
    border:1px solid rgba(74, 222, 128, .35);
    }

    @keyframes pulseAvailability{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(74, 222, 128, .55);
    }
    70%{
        transform:scale(1.08);
        box-shadow:0 0 0 12px rgba(74, 222, 128, 0);
    }
    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(74, 222, 128, 0);
    }
    }

    /* =========================
       LOGOTIPO
    ========================= */

    .hero-brand{
        position: relative;
        top:-34px;
        margin-bottom:-12px;
    }

    .hero-brand img{
        height:auto;      /* prueba entre 36 y 48 */
        width:48px;
        display:block;
    }

    /* =========================
   MINI PRUEBA SOCIAL
    ========================= */

    .trust-strip-wrap{
    position:relative;
    margin-top:-36px;   /* la sube un poco sobre la transición */
    z-index:5;
    }

    .trust-strip{
    max-width:700px;
    margin:0 auto;
    min-height:78px;
    padding:20px 24px;
    border-radius:16px;
    background:#fffdfa;
    border:1px solid #efe8df;
    box-shadow:0 12px 34px rgba(20, 26, 35, .07);
    display:flex;
    align-items:center;
    gap:18px;
    }

    .trust-icon{
    width:44px;
    height:44px;
    border-radius:14px;
    background:#fff3f1;
    color:#ff5a63;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    }

    .trust-icon i{
    font-size:21px;
    line-height:1;
    }

    .trust-text{
    margin:0;
    font-size:16px;
    line-height:1.60;
    color:#4a4a4a;
    font-weight:500;
    }

    /* =========================
    CTA FINAL
    ========================= */

    .final-cta{
    padding:40px 0 10px;
    }

    .final-cta-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    padding:58px 56px;
    background:
        radial-gradient(circle at top right, rgba(255,90,99,.16), transparent 28%),
        linear-gradient(180deg, #0f1723 0%, #0c141f 100%);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 24px 60px rgba(8, 12, 20, .22);
    text-align:center;
    }

    .final-cta-eyebrow{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        min-height:40px;
        padding:0 16px;
        border-radius:999px;
        background:rgba(255, 90, 99, .08);
        border:1px solid rgba(255, 90, 99, .18);
        color:#ff5a63;
        font-size:13px;
        font-weight:700;
        letter-spacing:.08em;
        margin-bottom:22px;
        }

    .final-cta-title{
    max-width:820px;
    margin:0 auto 35px;
    font-family:'Playfair Display', serif;
    font-size:48px;
    line-height:1.12;
    color:#fff;
    }

    .final-cta-text{
    max-width:790px;
    margin:0 auto;
    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,.82);
    }

    .final-cta-actions{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
    margin-top:40px;
    }

    .hero-image{
    display: flex;
    justify-content: flex-end;
    }

    .hero-media{
    position: relative;
    width: 100%;
    max-width: 620px;
    display: inline-block;
    line-height: 0;
    border-radius: 28px;
    overflow: hidden;
    }

    .hero-photo{
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
    }

    .hero-social{
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    display: flex;
    gap: 12px;
    }

    .hero-social-link{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    background: rgba(31, 41, 55, 0.78);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 10px 28px rgba(0,0,0,.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .25s ease, background .25s ease;
    }

    .hero-social-link:hover{
    transform: translateY(-2px);
    background: #ef4859;
    }


    /* ==========================
      PAGE IMPROVEMENTS
    ========================== */

    .section-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      min-height:42px;
      padding:0 16px;
      border-radius:999px;
      background:rgba(239,77,90,.08);
      border:1px solid rgba(239,77,90,.16);
      color:#aa585f;
      font-size:14px;
      font-weight:700;
      letter-spacing:.03em;
    }

    .section-pill i{
      font-size:15px;
      line-height:1;
    }

    .page-improvements{
      padding: 96px 0 86px;
      background: #f8f4ee;
    }

    .page-improvements__intro{
      max-width: 820px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .page-improvements__intro h2{
      font-family: 'Playfair display', serif;
      margin: 18px 0 18px;
      font-size: 3rem;
      line-height: 1.08;
      color: #111827;
    }

    .page-improvements__intro p{
      margin: 0 auto;
      max-width: 760px;
      font-size: 1.08rem;
      line-height: 1.85;
      color: #5f6472;
    }

    .page-improvements__grid{
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
    }

    .improvement-card{
      display: flex;
      gap: 18px;
      padding: 28px 28px 30px;
      background: #ffffff;
      border: 1px solid rgba(17, 24, 39, 0.06);
      border-radius: 15px;
      box-shadow: 0 18px 48px rgba(17, 24, 39, 0.06);
      transition: transform .28s ease, box-shadow .28s ease;
    }

    .improvement-card:hover{
      transform: translateY(-4px);
      box-shadow: 0 24px 56px rgba(17, 24, 39, 0.10);
    }

    .improvement-card--wide{
      grid-column: 1 / -1;
    }

    .improvement-icon{
      flex: 0 0 56px;
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(239, 72, 89, 0.08);
      color: #ef4859;
      font-size: 1.35rem;
    }

    .improvement-content h3{
      margin: 0 0 10px;
      font-size: 1.18rem;
      line-height: 1.3;
      color: #111827;
    }

    .improvement-content p{
      margin: 0;
      font-size: 1rem;
      line-height: 1.8;
      color: #5b6270;
    }

    /* Responsive */
    @media (max-width: 991px){
      .page-improvements{
        padding: 90px 0;
      }

      .page-improvements__grid{
        grid-template-columns: 1fr;
      }

      .improvement-card--wide{
        grid-column: auto;
      }
    }

    @media (max-width: 640px){
      .improvement-card{
        padding: 24px 20px 24px;
        border-radius: 22px;
        gap: 16px;
      }

      .improvement-icon{
        width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 1.2rem;
      }

      .page-improvements__intro{
        margin-bottom: 40px;
      }

      .page-improvements__intro p{
        font-size: 1rem;
        line-height: 1.75;
      }
    }

    /* =========================================
      PROCESS SECTION / COMO TRABAJO
    ========================================= */
    .process-section {
      padding: 30px 0 40px;
      background: #f8f4ef;
    }

    .section-heading.centered {
      max-width: 860px;
      margin: 0 auto 52px;
      text-align: center;
    }

    .section-heading.centered h2 {
      margin: 18px 0 18px;
      font-size: 3rem;
      font-family: 'Playfair Display', serif;
      line-height: 1.05;
      color: #0f1727;
    }

    .section-heading.centered p {
      margin: 0 auto;
      max-width: 760px;
      font-size: 1.15rem;
      line-height: 1.8;
      color: #5e6573;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .process-card {
      background: #ffffff;
      border: 1px solid rgba(15, 23, 39, 0.08);
      border-radius: 20px;
      padding: 32px 30px;
      box-shadow: 0 18px 40px rgba(15, 23, 39, 0.06);
    }

    .process-step {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 54px;
      height: 54px;
      padding: 0 14px;
      margin-bottom: 18px;
      border-radius: 999px;
      background: rgba(255, 88, 104, 0.10);
      color: #ff5868;
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: 0.08em;
    }

    .process-card h3 {
      margin: 0 0 12px;
      font-size: 1.45rem;
      line-height: 1.25;
      color: #0f1727;
    }

    .process-card p {
      margin: 0;
      font-size: 1.02rem;
      line-height: 1.8;
      color: #5e6573;
    }

/* =========================================
   OFFER SECTION / MEJORA EXPRESS
========================================= */
.offer-section {
  padding: 50px 0 120px;
  background: #f8f4ef;
}

.offer-box {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 34px;
  align-items: stretch;
  background: linear-gradient(135deg, #101827 0%, #171e2f 60%, #2a2130 100%);
  border-radius: 34px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(15, 23, 39, 0.18);
}

.offer-left h2 {
  margin: 18px 0 16px;
  font-size: 2.4rem;
  font-family: 'Playfair display', serif;
  line-height: 1.05;
  color: #ffffff;
}

.offer-intro {
  margin: 0 0 28px;
  max-width: 720px;
  font-size: 1.12rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.offer-list li {
  position: relative;
  padding-left: 28px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff5868;
  transform: translateY(-50%);
}

.offer-right {
  display: flex;
}

.offer-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.offer-card h3 {
  margin: 0 0 20px;
  font-size: 1.5rem;
  color: #0f1727;
}

.offer-checks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.offer-checks li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  line-height: 1.75;
  color: #4f5665;
}

.offer-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5868;
  font-weight: 800;
}

.offer-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.offer-note {
  margin: 16px 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6a7280;
}

/* =========================================
      RESPONSIVE
    ========================================= */
    @media (max-width: 1100px) {
      .offer-box {
        grid-template-columns: 1fr;
        padding: 40px;
      }
    }

    @media (max-width: 820px) {
      .process-section {
        padding: 90px 0 30px;
      }

      .offer-section {
        padding: 40px 0 100px;
      }

      .process-grid {
        grid-template-columns: 1fr;
      }

      .section-heading.centered {
        margin-bottom: 40px;
      }
    }

    @media (max-width: 640px) {
      .process-card,
      .offer-card {
        padding: 26px 22px;
        border-radius: 22px;
      }

      .offer-box {
        padding: 28px 22px;
        border-radius: 26px;
      }

      .section-heading.centered p,
      .process-card p,
      .offer-intro,
      .offer-list li,
      .offer-checks li {
        font-size: 0.98rem;
        line-height: 1.75;
      }

      .process-card h3,
      .offer-card h3 {
        font-size: 1.28rem;
      }
    }

