  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
    :root {
      --gold:        #B8892A;
      --gold-light:  #D4A84B;
      --gold-dark:   #8B6520;
      --navy:        #0F1E3C;
      --navy-mid:    #162547;
      --navy-light:  #1E3260;
      --white:       #FFFFFF;
      --off-white:   #F7F5F0;
      --gray-light:  #E8E4DC;
      --gray-mid:    #9A9590;
      --text-dark:   #1A1A1A;
      --text-body:   #3D3A35;

      --font-display: 'Oswald', sans-serif;
      --font-body:    'DM Sans', sans-serif;

      --shadow-card: 0 8px 40px rgba(15,30,60,0.10);
      --shadow-btn:  0 4px 20px rgba(184,137,42,0.35);
      --radius:      6px;
      --transition:  0.3s ease;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text-body);
      background: var(--white);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    img { display: block; width: 100%; object-fit: cover; }
    a   { text-decoration: none; color: inherit; }
    ul  { list-style: none; }
    
#loraf-wrapper,
#loraf-wrapper > .container,
.loraf-main-grid,
#loraf-content,
#loraf-content > .loraf-content,
.blog-items,
.blog-items.items-leading,
.blog-item,
.item-content {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
 
/* Step 2: Each section stretches full viewport width
   The background now covers 100% of the screen */
section.about,
section.services,
section.why-strip,
section.sectors,
section.cta-banner,
.topbar,
.navbar,
.hero,
.footer {
  width: 100vw !important;           /* Full viewport width */
  position: relative !important;
  left: 50% !important;              /* Trick: shift right by 50% of parent */
  right: 50% !important;
  margin-left: -50vw !important;     /* Pull back by 50vw to align with viewport edge */
  margin-right: -50vw !important;
}
 
/* Step 3: The inner .container inside each section keeps the 1366px max-width */
section.about > .container,
section.services > .container,
section.why-strip > .container,
section.sectors > .container,
section.cta-banner > .container,
.topbar > .container,
.navbar > .container,
.hero > .container,
.footer > .container {
  max-width: 1366px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}
    /* =============================================
       UTILITY CLASSES
    ============================================= */
    .container {
      max-width: 1366px;
      margin-inline: auto;
      padding-inline: 24px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      cursor: pointer;
      border: none;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    }
    .btn:hover { transform: translateY(-2px); }

    .btn-gold {
      background: var(--gold);
      color: var(--white);
      box-shadow: var(--shadow-btn);
    }
    .btn-gold:hover { background: var(--gold-light); box-shadow: 0 6px 28px rgba(184,137,42,0.45); }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.75) !important;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

    .section-label {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 1rem;
      color: var(--gray-mid);
      max-width: 920px;
      margin-inline: auto;
      text-align: center;
    }

    /* =============================================
       TOP BAR
    ============================================= */
    .topbar {
      background: var(--navy);
      color: rgba(255,255,255,0.7);
      font-size: 0.78rem;
      padding: 8px 0;
    }
    .topbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .topbar-left { display: flex; align-items: center; gap: 20px; }
    .topbar-left span, .topbar-right span { display: flex; align-items: center; gap: 6px; }
    .topbar svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }
    .topbar-right { display: flex; align-items: center; gap: 16px; }

    /* =============================================
       NAVBAR
    ============================================= */
    #loraf-topbar{
	    background: var(--navy);
	    width: 100%;
    }
    .navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);

    }
    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

/* ── Logo ── */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 180px;
    height: auto;
    max-width: 100%;
}
    .logo-icon svg { width: 24px; height: 24px; }
    .logo-text { line-height: 1.1; }
    .logo-text .brand { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); font-weight: 700; letter-spacing: 0.02em; }
    .logo-text .tagline { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

    /* Nav links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-dark);
      position: relative;
      padding-bottom: 4px;
      transition: color var(--transition);
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width var(--transition);
    }
    .nav-links a:hover, .nav-links a.active { color: var(--gold); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

    /* =============================================
       HERO SECTION
    ============================================= */
    .hero {
      position: relative;
      min-height: 680px;
      height: 70vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy);
    }

    /* Layered background with gradient overlay */
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(15,30,60,0.92) 40%, rgba(15,30,60,0.55) 100%),
        url('https://loraf.com.mx/images/loraf-main-bg-1.jpg') right center / cover no-repeat;
      z-index: 0;
    }
       .page-hero-bg-contacto {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(15,30,60,0.92) 40%, rgba(15,30,60,0.55) 100%),
        url('https://loraf.com.mx/images/loraf-main-bg-5.jpg') right center / cover no-repeat;
      z-index: 0;
    }
           .page-hero-bg-nosotros {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(15,30,60,0.92) 40%, rgba(15,30,60,0.55) 100%),
        url('https://loraf.com.mx/images/loraf-main-bg-24.jpg') right center / cover no-repeat;
      z-index: 0;
    }
          .page-hero-bg-servicios {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(15,30,60,0.92) 40%, rgba(15,30,60,0.55) 100%),
        url('https://loraf.com.mx/images/loraf-main-bg-19.jpg') right center / cover no-repeat;
      z-index: 0;
    }

    /* Decorative gold accent line */
    .hero::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 5px;
      background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
      z-index: 2;
    }

    .hero .container { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 80px; }

    .hero-content { max-width: 1366px; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(184,137,42,0.18);
      border: 1px solid rgba(184,137,42,0.4);
      color: var(--gold-light);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
    }
    .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .hero h1 em { color: var(--gold-light); font-style: normal; }

    .hero p {
      font-size: 1rem;
      color: rgba(255,255,255,0.78);
      margin-bottom: 36px;
      line-height: 1.7;
    }

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

    /* Hero stats row */
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 56px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .stat-item { }
    .stat-num {
      font-family: var(--font-display);
      font-size: 1.9rem;
      color: var(--gold-light);
      line-height: 1;
    }
    .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

.hero__compass-bg {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  width: min(55vw, 680px);
  height: min(55vw, 680px);
  z-index: 3;
  opacity: 0.095;
  pointer-events: none;
  animation: compass-rotate 120s linear infinite;
}
@keyframes compass-rotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
    /* =============================================
       WHO WE ARE SECTION
    ============================================= */
    .about {
      padding: 96px 0;
      background: var(--white);
    }
    .about .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .about-text .section-title { text-align: left; }
    .about-text p { font-size: 0.95rem; color: var(--text-body); margin-bottom: 16px; }
    .about-text p strong { color: var(--navy); }
    .about-text .btn { margin-top: 28px; }

    /* Feature checkmarks */
    .feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 24px;
      margin-top: 32px;
      padding-top: 28px;
      border-top: 1px solid var(--gray-light);
    }
    .feature-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--navy);
    }
    .feature-item .check {
      width: 20px;
      height: 20px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .feature-item .check svg { width: 11px; height: 11px; stroke: white; stroke-width: 3; fill: none; }

    /* About image side */
    .about-image {
      position: relative;
    }
    .about-image img {
      border-radius: 8px;
      height: 440px;
      box-shadow: var(--shadow-card);
    }
    /* Decorative gold border accent */
    .about-image::before {
      content: '';
      position: absolute;
      top: -14px; right: -14px;
      bottom: 14px; left: 14px;
      border: 3px solid var(--gold);
      border-radius: 8px;
      z-index: -1;
      opacity: 0.4;
    }
    /* Experience badge */
    .exp-badge {
      position: absolute;
      bottom: 24px;
      left: -24px;
      background: var(--navy);
      color: var(--white);
      padding: 18px 22px;
      border-radius: 8px;
      box-shadow: var(--shadow-card);
      border-left: 4px solid var(--gold);
    }
    .exp-badge .num { font-family: var(--font-display); font-size: 2rem; color: var(--gold-light); line-height: 1; }
    .exp-badge .label { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

    /* =============================================
       SERVICES SECTION
    ============================================= */
    .services {
      padding: 96px 0;
      background: var(--off-white);
      position: relative;
    }
    .services::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    }

    .services-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .services-header .section-title { margin-bottom: 12px; }

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

    .service-card {
      background: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: transform var(--transition), box-shadow var(--transition);
      display: flex;
      flex-direction: column;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 56px rgba(15,30,60,0.15);
    }

    .service-img {
      height: 200px;
      position: relative;
      overflow: hidden;
    }
    .service-img img { height: 100%; transition: transform 0.5s ease; }
    .service-card:hover .service-img img { transform: scale(1.06); }
    .service-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15,30,60,0.6) 0%, transparent 60%);
    }

    .service-body {
      padding: 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .service-body h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--navy);
      margin-bottom: 16px;
      text-align: center;
    }
    .service-list { flex: 1; }
    .service-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.875rem;
      color: var(--text-body);
      padding: 5px 0;
      border-bottom: 1px solid var(--gray-light);
    }
    .service-list li:last-child { border-bottom: none; }
    .service-list li::before {
      content: '✓';
      color: var(--gold);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .service-body .btn {
      width: 100%;
      justify-content: center;
      margin-top: 24px;
    }

    /* =============================================
       WHY CHOOSE US — STRIP
    ============================================= */
    .why-strip {
      background: var(--navy);
      padding: 72px 0;
    }
    .why-strip .container {
      display: grid;
      grid-template-columns: 1fr 3fr;
      gap: 60px;
      align-items: center;
    }
    .why-heading .section-title { color: var(--white); }
    .why-heading .section-label { color: var(--gold-light); }

    .why-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .why-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px;
      padding: 24px;
      transition: background var(--transition), border-color var(--transition);
    }
    .why-card:hover {
      background: rgba(184,137,42,0.12);
      border-color: rgba(184,137,42,0.3);
    }
    .why-icon {
      width: 44px;
      height: 44px;
      background: rgba(184,137,42,0.18);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }
    .why-icon svg { width: 22px; height: 22px; stroke: var(--gold-light); fill: none; stroke-width: 1.8; }
    .why-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
    .why-card p  { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

    /* =============================================
       SECTORS / INDUSTRIES
    ============================================= */
    .sectors {
      padding: 96px 0;
      background: var(--white);
    }
    .sectors-header { text-align: center; margin-bottom: 52px; }

    .sectors-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .sector-card {
      position: relative;
      height: 200px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
    }
    .sector-card img {
      height: 100%;
      transition: transform 0.5s ease;
    }
    .sector-card:hover img { transform: scale(1.08); }
    .sector-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15,30,60,0.85) 0%, rgba(15,30,60,0.2) 100%);
      display: flex;
      align-items: flex-end;
      padding: 20px 16px;
      transition: background var(--transition);
    }
    .sector-card:hover .sector-overlay { background: linear-gradient(to top, rgba(184,137,42,0.8) 0%, rgba(15,30,60,0.3) 100%); }
    .sector-overlay span {
      font-family: var(--font-display);
      font-size: 1rem;
      color: var(--white);
      font-weight: 700;
      line-height: 1.2;
    }

    /* =============================================
       CONTACT / CTA BANNER
    ============================================= */
 /* Shared banner structure */
  .cta-banner {
    padding: 80px 40px;
    text-align: center;
    width: 100%;
  }
  .cta-banner .eyebrow {
    font-family: var(--font-display);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    display: block; margin-bottom: 14px;
  }
  .cta-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2; margin-bottom: 14px;
  }
  .cta-banner p {
    
    font-size: 15px; line-height: 1.7;
    max-width: 520px; margin: 0 auto 36px;
  }
  .cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
  .btn {
    
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.05em;
    padding: 14px 28px; border-radius: 6px;
    border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
  }

  /* ── DARK VERSION ── */
  .cta-dark {
    background:
      linear-gradient(135deg, rgba(15,30,60,0.97) 0%, rgba(22,37,71,0.97) 100%),
      url('https://loraf.com.mx/images/loraf-main-bg-24.jpg') center/cover no-repeat;
    position: relative;
  }
  .cta-dark::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #B8892A, #D4A84B, #B8892A);
  }
  .cta-dark .eyebrow { color: #D4A84B; }
  .cta-dark h2 { color: #FFFFFF; }
  .cta-dark p  { color: rgba(255,255,255,0.62); }
  .btn-gold    { background: #B8892A; color: #fff; }
  .btn-outline-dark { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.55); }

  /* ── LIGHT VERSION ── */
  .cta-light {
    background:
      linear-gradient(135deg, rgba(247,245,240,0.97) 0%, rgba(232,228,220,0.97) 100%),
      url('https://loraf.com.mx/images/loraf-main-bg-24.jpg') center/cover no-repeat;
    position: relative;
  }
  .cta-light::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #B8892A, #D4A84B, #B8892A);
  }
  .cta-light::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: #0F1E3C;
  }
  .cta-light .eyebrow { color: #8B6520; }
  .cta-light h2 { color: #0F1E3C; }
  .cta-light p  { color: #6B6560; }
  .btn-navy { background: #0F1E3C; color: #fff; }
  .btn-outline-light { background: transparent; color: #0F1E3C; border: 2px solid rgba(15,30,60,0.35); }

    /* =============================================
       FOOTER
    ============================================= */
    .footer {
      background: #090F1E;
      color: rgba(255,255,255,0.5);
      padding: 60px 0 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand .logo { margin-bottom: 14px; }
    .footer-brand .logo-text .brand { color: var(--white); }
    .footer-brand p { font-size: 0.85rem; line-height: 1.7; }

    .footer-col h5 {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 16px;
    }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
    .footer-col ul li a:hover { color: var(--gold-light); }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.875rem;
      margin-bottom: 12px;
    }
    .footer-contact li svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
    }
    .footer-bottom span { color: var(--gold-light); }
    
/* ------------------------------------------
   NEW BUTTON VARIANTS
------------------------------------------ */

/* Navy solid button */
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); }

/* Gold outlined button */
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* ------------------------------------------
   SECTION BODY TEXT
   (extends existing .section-label / .section-title)
------------------------------------------ */
.section-title.light { color: var(--white); }

.section-body {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.75;
}

/* ------------------------------------------
   FULL-WIDTH FIX FOR SERVICES PAGE
   Sections stretch to 100vw; inner .container stays 1366px
------------------------------------------ */
section.page-hero,
section.services-intro,
section.service-detail,
section.process-section {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

section.page-hero > .container,
section.services-intro > .container,
section.service-detail > .container,
section.process-section > .container {
  max-width: 1366px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* ------------------------------------------
   ANCHOR SCROLL OFFSET (sticky navbar)
------------------------------------------ */
.anchor-target { scroll-margin-top: 90px; }

/* ------------------------------------------
   PAGE HERO — inner banner for sub-pages
------------------------------------------ */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 80px 0 72px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(15,30,60,0.96) 50%, rgba(15,30,60,0.70) 100%),
    url('https://loraf.com.mx/images/loraf-main-bg-1.jpg') center / cover no-repeat;
  z-index: 0;
}

/* Left gold accent bar */
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  z-index: 2;
}

/* Decorative circle */
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(184,137,42,0.1);
  z-index: 1;
}

.page-hero .container { position: relative; z-index: 3; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--gold-light); font-style: normal; }

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ------------------------------------------
   BREADCRUMB
------------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }
.breadcrumb-sep { opacity: 0.4; }

/* ------------------------------------------
   HERO ANCHOR PILLS (quick-jump links inside hero)
------------------------------------------ */
.hero-anchors { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-anchor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(184,137,42,0.35);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.04);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.hero-anchor:hover {
  background: rgba(184,137,42,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}
.hero-anchor .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ------------------------------------------
   STATS STRIP (below hero)
------------------------------------------ */
.services-intro {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
  padding: 40px 0;
}
.services-intro .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.intro-stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.intro-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  line-height: 1;
}
.intro-stat .num span { color: var(--gold); }
.intro-stat .label {
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.intro-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-light);
}

/* ------------------------------------------
   SERVICE DETAIL ROWS (alternating layout)
------------------------------------------ */
.service-detail { padding: 96px 0; }
.service-detail:nth-child(even) { background: var(--off-white); }
.service-detail:nth-child(odd)  { background: var(--white); }

.service-detail .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Flips text/image order for alternating rows */
.service-detail.reverse .container { direction: rtl; }
.service-detail.reverse .container > * { direction: ltr; }

/* Large decorative section number */
.service-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}

.service-text .section-title { margin-bottom: 12px; }
.service-text .section-body  { margin-bottom: 28px; }

/* ------------------------------------------
   FEATURE LIST (checkmark rows)
------------------------------------------ */
.feature-list { margin-bottom: 32px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}
.feature-list li:last-child { border-bottom: none; }

.feature-check {
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-check svg {
  width: 11px; height: 11px;
  stroke: white; stroke-width: 3; fill: none;
}

/* ------------------------------------------
   SERVICE TAGS / BADGES
------------------------------------------ */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.service-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(184,137,42,0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(184,137,42,0.25);
}

/* ------------------------------------------
   SERVICE IMAGE SIDE
------------------------------------------ */
.service-image { position: relative; }
.service-image img {
  border-radius: 10px;
  height: 460px;
  box-shadow: var(--shadow-card);
}

/* Gold border accent behind image */
.service-detail:nth-child(odd) .service-image::before {
  content: '';
  position: absolute;
  top: -14px; right: -14px; bottom: 14px; left: 14px;
  border: 2px solid rgba(184,137,42,0.25);
  border-radius: 10px;
  z-index: -1;
}
.service-detail.reverse .service-image::before {
  left: -14px; right: 14px;
}

/* Floating stat badge over the image */
.image-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(15,30,60,0.25);
  border-left: 4px solid var(--gold);
  min-width: 180px;
}
.service-detail.reverse .image-badge {
  left: auto; right: -20px;
  border-left: none; border-right: 4px solid var(--gold);
}
.image-badge .badge-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1;
}
.image-badge .badge-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}

/* ------------------------------------------
   SUB-CARDS GRID (4 mini feature cards)
------------------------------------------ */
.sub-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.sub-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 18px 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-detail:nth-child(even) .sub-card { background: var(--off-white); }
.sub-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(184,137,42,0.1);
}
.sub-card-icon {
  width: 36px; height: 36px;
  background: rgba(184,137,42,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.sub-card-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.sub-card h4 { font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.sub-card p  { font-size: 0.8rem; color: var(--gray-mid); line-height: 1.5; }

/* ------------------------------------------
   PROCESS SECTION — How we work
------------------------------------------ */
.process-section {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* Gold top border */
.process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

/* Decorative circle bottom-right */
.process-section::after {
  content: '';
  position: absolute;
  right: -120px; bottom: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(184,137,42,0.07);
}

.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-label { color: var(--gold-light); }

/* 4-column step grid */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Horizontal connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 34px; left: 12%; right: 12%;
  height: 1px;
  background: rgba(184,137,42,0.25);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

/* Circle icon container */
.step-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(184,137,42,0.1);
  border: 2px solid rgba(184,137,42,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  transition: background var(--transition), border-color var(--transition);
}
.process-step:hover .step-circle {
  background: rgba(184,137,42,0.2);
  border-color: var(--gold);
}
.step-circle svg {
  width: 26px; height: 26px;
  stroke: var(--gold-light); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

/* Step number badge */
.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.process-step h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.process-step p  { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ------------------------------------------
   CTA BANNER — services page version
   (overrides the dark bg version from main sheet)
------------------------------------------ */
   /* =============================================
       ABOUT STORY — Historia + intro stats
    ============================================= */
    .about-story { background: var(--white); padding: 96px 0; }
    .about-story .container {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }

    /* Text side */
    .story-text .section-title { margin-bottom: 12px; }
    .story-text .section-body { margin-bottom: 20px; }

    /* Timeline — founding moments */
    .timeline { margin-top: 36px; }
    .timeline-item {
      display: flex; gap: 20px; padding: 20px 0;
      border-bottom: 1px solid var(--gray-light);
    }
    .timeline-item:last-child { border-bottom: none; }
    .timeline-year {
      font-family: var(--font-display); font-size: 1.3rem;
      color: var(--gold); line-height: 1; flex-shrink: 0; width: 52px; padding-top: 2px;
    }
    .timeline-content h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
    .timeline-content p  { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.6; }

    /* Image side */
    .story-image { position: relative; }
    .story-image img { border-radius: 10px; height: 520px; box-shadow: var(--shadow-card); }
    .story-image::before {
      content: ''; position: absolute; top: -14px; right: -14px; bottom: 14px; left: 14px;
      border: 2px solid rgba(184,137,42,0.22); border-radius: 10px; z-index: -1;
    }
    /* Floating badge */
    .story-badge {
      position: absolute; bottom: 30px; left: -24px;
      background: var(--navy); color: var(--white);
      padding: 18px 22px; border-radius: 8px;
      box-shadow: 0 8px 32px rgba(15,30,60,0.25);
      border-left: 4px solid var(--gold);
    }
    .story-badge .num { font-family: var(--font-display); font-size: 2rem; color: var(--gold-light); line-height: 1; }
    .story-badge .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 3px; }
   /* =============================================
       DIFERENCIAL — What makes us different
       Alternating feature rows
    ============================================= */
    .diferencial { background: var(--white); padding: 96px 0; }
    .diferencial-header { text-align: center; margin-bottom: 64px; }

    .diferencial-row {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center; margin-bottom: 72px;
    }
    .diferencial-row:last-child { margin-bottom: 0; }
    .diferencial-row.reverse { direction: rtl; }
    .diferencial-row.reverse > * { direction: ltr; }

    .dif-text .section-label { display: block; }
    .dif-text .section-title { margin-bottom: 12px; font-size: clamp(1.4rem, 2.5vw, 2rem); }
    .dif-text .section-body  { margin-bottom: 28px; }

    .dif-features { display: flex; flex-direction: column; gap: 14px; }
    .dif-feature {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 18px; border-radius: 8px;
      border: 1px solid var(--gray-light);
      background: var(--off-white);
      transition: border-color var(--transition), background var(--transition);
    }
    .dif-feature:hover { border-color: var(--gold); background: var(--white); }
    .dif-check {
      width: 28px; height: 28px; border-radius: 50%; background: var(--gold);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
    }
    .dif-check svg { width: 13px; height: 13px; stroke: white; stroke-width: 3; fill: none; }
    .dif-feature-text h5 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
    .dif-feature-text p  { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.5; }

    /* Visual panel for the diferencial section */
    .dif-visual {
      position: relative;
      background: var(--navy);
      border-radius: 12px; padding: 40px;
      min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end;
      overflow: hidden;
    }
    .dif-visual-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(145deg, rgba(15,30,60,0.88) 0%, rgba(15,30,60,0.6) 100%),
        var(--img) center/cover no-repeat;
      border-radius: 12px;
    }
    .dif-visual-content { position: relative; z-index: 1; }
    .dif-visual-stat {
      font-family: var(--font-display); font-size: 3.5rem; color: var(--gold-light); line-height: 1;
    }
    .dif-visual-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 6px; }
    /* Corner gold accent */
    .dif-visual::after {
      content: ''; position: absolute; top: 0; right: 0;
      width: 80px; height: 80px;
      border-top: 3px solid var(--gold); border-right: 3px solid var(--gold);
      border-radius: 0 12px 0 0;
    }

    /* =============================================
       REACH — Cobertura + stats strip
    ============================================= */
    .reach-section { background: var(--off-white); padding: 96px 0; }
    .reach-header { text-align: center; margin-bottom: 56px; }

    .reach-grid {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 24px; margin-bottom: 56px;
    }
    .reach-card {
      background: var(--white); border-radius: 10px;
      border: 1px solid var(--gray-light);
      overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .reach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
    .reach-card-img { height: 180px; overflow: hidden; }
    .reach-card-img img { height: 100%; transition: transform 0.5s ease; }
    .reach-card:hover .reach-card-img img { transform: scale(1.06); }
    .reach-card-body { padding: 24px; }
    .reach-card-body h3 {
      font-family: var(--font-display); font-size: 1.2rem; color: var(--navy);
      margin-bottom: 8px; display: flex; align-items: center; gap: 10px;
    }
    .reach-flag {
      width: 22px; height: 15px; border-radius: 2px; flex-shrink: 0;
      display: inline-block; border: 1px solid rgba(0,0,0,0.08);
    }
    .reach-card-body p { font-size: 0.875rem; color: var(--gray-mid); line-height: 1.65; }

    /* Stats row below reach grid */
    .reach-stats {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: var(--gray-light);
      border: 1px solid var(--gray-light); border-radius: 10px; overflow: hidden;
    }
    .reach-stat {
      background: var(--white); padding: 32px 24px; text-align: center;
    }
    .reach-stat .num {
      font-family: var(--font-display); font-size: 2.4rem; color: var(--navy); line-height: 1;
    }
    .reach-stat .num span { color: var(--gold); }
    .reach-stat .lbl { font-size: 0.8rem; color: var(--gray-mid); margin-top: 6px; letter-spacing: 0.04em; }

    /* =============================================
       ALLY SECTION — Tu aliado en comercio internacional
    ============================================= */
    .ally-section { background: var(--white); padding: 96px 0; }
    .ally-section .container {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }

    .ally-text .section-title { margin-bottom: 14px; }
    .ally-text .section-body  { margin-bottom: 28px; }

    .ally-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
    .ally-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 18px 0; border-bottom: 1px solid var(--gray-light);
    }
    .ally-item:last-child { border-bottom: none; }
    .ally-num {
      font-family: var(--font-display); font-size: 1.4rem; color: var(--gold);
      line-height: 1; flex-shrink: 0; width: 28px;
    }
    .ally-item h5 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
    .ally-item p  { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.6; }

    /* Quote / testimonial panel */
    .ally-quote {
      background: var(--navy); border-radius: 12px; padding: 44px 40px;
      position: relative; overflow: hidden;
    }
    .ally-quote::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }
    .ally-quote::after {
      content: ''; position: absolute; bottom: -60px; right: -60px;
      width: 220px; height: 220px; border-radius: 50%;
      border: 1px solid rgba(184,137,42,0.08);
    }
    .quote-mark {
      font-family: var(--font-display); font-size: 5rem; color: rgba(184,137,42,0.2);
      line-height: 0.7; margin-bottom: 20px; display: block;
    }
    .ally-quote blockquote {
      font-family: var(--font-display); font-size: 1.2rem;
      color: var(--white); line-height: 1.65; font-style: italic;
      margin-bottom: 28px; position: relative; z-index: 1;
    }
    .quote-divider { width: 40px; height: 2px; background: var(--gold); margin-bottom: 20px; }
    .quote-stats { display: flex; gap: 32px; position: relative; z-index: 1; }
    .quote-stat .num { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-light); line-height: 1; }
    .quote-stat .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

    /* =============================================
       MISSION & VISION — split cards on navy bg
    ============================================= */
    .mission-vision {
      background: var(--navy);
      padding: 88px 0;
      position: relative; overflow: hidden;
    }
    .mission-vision::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    }
    /* Decorative circle */
    .mission-vision::after {
      content: ''; position: absolute; left: -120px; bottom: -120px;
      width: 480px; height: 480px; border-radius: 50%;
      border: 1px solid rgba(184,137,42,0.07);
    }
    .mv-header { text-align: center; margin-bottom: 56px; }
    .mv-header .section-label { color: var(--gold-light); }
    .mv-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 28px; position: relative; z-index: 1;
    }
    .mv-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px; padding: 40px 36px;
      position: relative; overflow: hidden;
      transition: border-color var(--transition), background var(--transition);
    }
    .mv-card:hover { background: rgba(184,137,42,0.06); border-color: rgba(184,137,42,0.25); }
    .mv-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }
    /* Large decorative letter */
    .mv-letter {
      font-family: var(--font-display); font-size: 7rem; font-weight: 800;
      color: rgba(184,137,42,0.08); line-height: 1;
      position: absolute; right: 24px; bottom: -10px;
      pointer-events: none; user-select: none;
    }
    .mv-icon {
      width: 52px; height: 52px; background: rgba(184,137,42,0.14);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .mv-icon svg { width: 26px; height: 26px; stroke: var(--gold-light); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
    .mv-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 14px; }
    .mv-card p  { font-size: 0.95rem; color: rgba(255,255,255,0.62); line-height: 1.8; }

    /* =============================================
       VALUES — 6-card grid
    ============================================= */
    .values-section { background: var(--off-white); padding: 96px 0; }
    .values-header { text-align: center; margin-bottom: 56px; }
    .values-header .section-subtitle {
      font-size: 1rem; color: var(--gray-mid);
      max-width: 560px; margin-inline: auto; line-height: 1.7;
    }
    .values-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .value-card {
      background: var(--white); border-radius: 10px;
      border: 1px solid var(--gray-light);
      padding: 32px 28px;
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .value-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
      box-shadow: 0 12px 40px rgba(184,137,42,0.1);
    }
    .value-icon {
      width: 48px; height: 48px; border-radius: 10px;
      background: rgba(184,137,42,0.1);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .value-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .value-card h4 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
    .value-card p  { font-size: 0.875rem; color: var(--gray-mid); line-height: 1.7; }
    /* Gold top accent on hover */
    .value-card { position: relative; overflow: hidden; }
    .value-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 0;
      background: var(--gold); transition: height 0.25s ease;
    }
    .value-card:hover::before { height: 3px; }
    /* =============================================
       INFO STRIP — 3 quick contact cards
    ============================================= */
    .info-strip {
      background: var(--off-white);
      border-bottom: 1px solid var(--gray-light);
      padding: 0;
    }
    .info-strip .container {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }
    .info-card {
      display: flex; align-items: center; gap: 18px;
      padding: 32px 36px;
      border-right: 1px solid var(--gray-light);
      transition: background var(--transition);
    }
    .info-card:last-child { border-right: none; }
    .info-card:hover { background: var(--white); }
    .info-icon {
      width: 48px; height: 48px; border-radius: 10px;
      background: rgba(184,137,42,0.1);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .info-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .info-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
    .info-value { font-size: 0.95rem; font-weight: 500; color: var(--navy); }
    .info-sub   { font-size: 0.8rem; color: var(--gray-mid); margin-top: 2px; }

    /* =============================================
       CONTACT SECTION — form + sidebar
    ============================================= */
    .contact-section { background: var(--white); padding: 96px 0; }
    .contact-section .container {
      display: grid; grid-template-columns: 1fr 420px;
      gap: 72px; align-items: start;
    }

    /* ---- FORM PANEL ---- */
    .form-panel {
      background: var(--white);
      border: 1px solid var(--gray-light);
      border-radius: 12px;
      padding: 48px 44px;
      box-shadow: var(--shadow-card);
      position: relative; overflow: hidden;
    }
    /* Gold top accent */
    .form-panel::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    }
    .form-panel-header { margin-bottom: 36px; }
    .form-panel-header .section-title { font-size: 1.8rem; margin-bottom: 8px; }
    .form-panel-header p { font-size: 0.9rem; color: var(--gray-mid); }

    /* =============================================
       CONVERTFORMS OVERRIDE STYLES
       Matches LORAF brand palette exactly
    ============================================= */

    /* Reset ConvertForms wrapper */
    .convertforms,
    .cf-form-wrap { width: 100% !important; background: none !important; padding: 0 !important; }

    /* Hide honeypot field */
    .cf-field-hp { display: none !important; }

    /* Response area */
    .cf-response { margin-bottom: 16px; font-size: 0.875rem; }

    /* Field group spacing */
    .cf-control-group { margin-bottom: 22px; }

    /* Labels */
    .cf-label {
      display: block;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--navy);
      margin-bottom: 8px;
      text-transform: uppercase;
    }
    .cf-required-label {
      color: var(--gold);
      margin-left: 3px;
    }

    /* Inputs, textareas */
    .cf-input {
      width: 100% !important;
      font-family: var(--font-body) !important;
      font-size: 0.95rem !important;
      color: var(--text-dark) !important;
      background: var(--off-white) !important;
      border: 1.5px solid var(--gray-light) !important;
      border-radius: var(--radius) !important;
      padding: 13px 16px !important;
      outline: none !important;
      transition: border-color var(--transition), background var(--transition), box-shadow var(--transition) !important;
      appearance: none !important;
      -webkit-appearance: none !important;
      box-shadow: none !important;
    }
    .cf-input:focus {
      border-color: var(--gold) !important;
      background: var(--white) !important;
      box-shadow: 0 0 0 3px rgba(184,137,42,0.12) !important;
    }
    .cf-input::placeholder { color: var(--gray-mid) !important; }

    /* Textarea specific */
    textarea.cf-input {
      resize: vertical !important;
      min-height: 130px !important;
    }

    /* Number input — remove spinners */
    input[type="number"].cf-input::-webkit-inner-spin-button,
    input[type="number"].cf-input::-webkit-outer-spin-button { -webkit-appearance: none; }
    input[type="number"].cf-input { -moz-appearance: textfield !important; }

    /* Submit button wrapper */
    .cf-text-left { width: 100%; margin-top: 8px; }

    /* ConvertForms submit button */
    .cf-btn {
      width: 100% !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 10px !important;
      padding: 16px 28px !important;
      background: var(--gold) !important;
      color: var(--white) !important;
      font-family: var(--font-body) !important;
      font-size: 0.95rem !important;
      font-weight: 600 !important;
      letter-spacing: 0.06em !important;
      border: none !important;
      border-radius: var(--radius) !important;
      cursor: pointer !important;
      box-shadow: var(--shadow-btn) !important;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
    }
    .cf-btn:hover {
      background: var(--gold-light) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 28px rgba(184,137,42,0.45) !important;
    }
    .cf-btn:active { transform: translateY(0) !important; }

    /* Spinner dots */
    .cf-spinner { display: flex; gap: 4px; align-items: center; }
    .cf-spinner span { width: 6px; height: 6px; border-radius: 50%; background: var(--white); opacity: 0.6; }

    /* Success / error response messages */
    .cf-response .alert-success {
      background: rgba(184,137,42,0.08);
      border-left: 4px solid var(--gold);
      color: var(--gold-dark);
      padding: 12px 16px;
      border-radius: var(--radius);
      font-size: 0.875rem;
    }
    .cf-response .alert-danger {
      background: rgba(200,40,40,0.06);
      border-left: 4px solid #c82828;
      color: #a52020;
      padding: 12px 16px;
      border-radius: var(--radius);
      font-size: 0.875rem;
    }

    /* ---- SIDEBAR ---- */
    .contact-sidebar { display: flex; flex-direction: column; gap: 24px; }

    /* Why contact us card */
    .sidebar-why {
      background: var(--navy);
      border-radius: 12px; padding: 36px 32px;
      position: relative; overflow: hidden;
    }
    .sidebar-why::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }
    .sidebar-why::after {
      content: ''; position: absolute; bottom: -60px; right: -60px;
      width: 200px; height: 200px; border-radius: 50%;
      border: 1px solid rgba(184,137,42,0.07);
    }
    .sidebar-why h3 {
      font-family: var(--font-display); font-size: 1.25rem;
      color: var(--white); margin-bottom: 20px;
    }
    .sidebar-why-list { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
    .sidebar-why-item { display: flex; align-items: flex-start; gap: 12px; }
    .sidebar-why-check {
      width: 20px; height: 20px; border-radius: 50%; background: rgba(184,137,42,0.2);
      border: 1px solid rgba(184,137,42,0.4);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
    }
    .sidebar-why-check svg { width: 10px; height: 10px; stroke: var(--gold-light); fill: none; stroke-width: 2.5; }
    .sidebar-why-item p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.55; }

    /* Direct contact cards */
    .sidebar-contact-card {
      background: var(--off-white);
      border: 1px solid var(--gray-light);
      border-radius: 10px; padding: 22px 24px;
      display: flex; align-items: center; gap: 16px;
      transition: border-color var(--transition), background var(--transition);
      text-decoration: none;
    }
    .sidebar-contact-card:hover { border-color: var(--gold); background: var(--white); }
    .sidebar-contact-icon {
      width: 44px; height: 44px; border-radius: 9px;
      background: rgba(184,137,42,0.1);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .sidebar-contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .sidebar-contact-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
    .sidebar-contact-value { font-size: 0.95rem; font-weight: 500; color: var(--navy); }

    /* Response time badge */
    .response-badge {
      display: flex; align-items: center; gap: 10px;
      background: rgba(184,137,42,0.08);
      border: 1px solid rgba(184,137,42,0.2);
      border-radius: 8px; padding: 14px 18px;
    }
    .response-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; animation: pulse 2s infinite; }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.5; transform: scale(0.85); }
    }
    .response-badge p { font-size: 0.82rem; color: var(--gold-dark); font-weight: 500; }


    /* =============================================
       ANIMATIONS
    ============================================= */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-badge   { animation: fadeUp 0.6s ease both; }
    .hero h1      { animation: fadeUp 0.6s 0.1s ease both; }
    .hero p       { animation: fadeUp 0.6s 0.2s ease both; }
    .hero-cta     { animation: fadeUp 0.6s 0.3s ease both; }
    .hero-stats   { animation: fadeUp 0.6s 0.4s ease both; }

/* ========================================================
   RESPONSIVE — TABLET (max 1024px)
======================================================== */
@media (max-width: 1024px) {
    /* About section collapses, image hidden on tablet */
    .about .container           { grid-template-columns: 1fr; }
    .about-image                { display: none; }

    /* Services show 2 columns */
    .services-grid              { grid-template-columns: repeat(2, 1fr); }

    /* Sectors show 2 columns */
    .sectors-grid               { grid-template-columns: repeat(2, 1fr); }

    /* Footer 2 columns */
    .footer-grid                { grid-template-columns: 1fr 1fr; }

    /* Service detail collapses to single column */
    .service-detail .container  { grid-template-columns: 1fr; gap: 48px; }
    .service-detail.reverse .container { direction: ltr; }
    .service-image              { display: none; }

    /* Process steps 2 across */
    .process-steps              { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-steps::before      { display: none; }

    /* Story and ally collapse */
    .about-story .container,
    .ally-section .container    { grid-template-columns: 1fr; gap: 48px; }
    .story-image,
    .ally-quote                 { display: none; }

    /* Mission and vision 1 column */
    .mv-grid                    { grid-template-columns: 1fr; }

    /* Values 2 columns */
    .values-grid                { grid-template-columns: 1fr 1fr; }

    /* Reach collapses */
    .reach-grid                 { grid-template-columns: 1fr; }
    .reach-stats                { grid-template-columns: repeat(2, 1fr); }

    /* Diferencial collapses */
    .diferencial-row            { grid-template-columns: 1fr; gap: 40px; }
    .diferencial-row.reverse    { direction: ltr; }

    /* Contact collapses, sidebar becomes 2-col grid */
    .contact-section .container { grid-template-columns: 1fr; }
    .contact-sidebar            { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .sidebar-why                { grid-column: 1 / -1; }

    /* Info strip collapses */
    .info-strip .container      { grid-template-columns: 1fr; }
    .info-card                  { border-right: none; border-bottom: 1px solid var(--gray-light); }
    .info-card:last-child       { border-bottom: none; }

    /* Why strip collapses */
    .why-strip .container       { grid-template-columns: 1fr; gap: 40px; }
    .why-cards                  { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================
   RESPONSIVE — MOBILE (max 768px)
======================================================== */
@media (max-width: 768px) {
    /* Hide top bar and nav on mobile */
    .topbar,
    .topbar-right .lang { display: none; }
    .nav-links          { display: none; }

    /* Hero adjustments */
    .hero               { min-height: 520px; height: auto; }
    .hero .container    { padding-top: 60px; padding-bottom: 60px; }
    .hero-stats         { flex-wrap: wrap; gap: 24px; }
    .hero__compass-bg   { right: -10%; width: 90vw; height: 90vw; opacity: 0.04; }

    /* Services single column */
    .services-grid      { grid-template-columns: 1fr; }

    /* Why strip single column */
    .why-strip .container { grid-template-columns: 1fr; }
    .why-cards            { grid-template-columns: 1fr; }

    /* Footer single column */
    .footer-grid          { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom        { flex-direction: column; gap: 8px; text-align: center; }

    /* Process single column */
    .process-steps        { grid-template-columns: 1fr; }

    /* Intro strip centers and wraps */
    .services-intro .container { justify-content: center; }
    .intro-divider             { display: none; }

    /* Values single column */
    .values-grid               { grid-template-columns: 1fr; }

    /* Reach stats 2 col on mobile */
    .reach-stats               { grid-template-columns: 1fr 1fr; }

    /* Form panel padding reduced */
    .form-panel                { padding: 32px 24px; }

    /* Contact sidebar single column */
    .contact-sidebar           { grid-template-columns: 1fr; }

    /* Sub-cards single column */
    .sub-cards                 { grid-template-columns: 1fr; }

    /* Hide desktop-only decorative elements */
    .Desk                      { display: none !important; }

    /* CTA banner padding reduced */
    .cta-banner                { padding: 60px 24px; }

    /* Sectors 2 columns on mobile */
    .sectors-grid              { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
======================================================== */
@media (max-width: 480px) {
    /* Sectors single column on very small screens */
    .sectors-grid              { grid-template-columns: 1fr; }

    /* Reach stats stack */
    .reach-stats               { grid-template-columns: 1fr; }

    /* Hero CTA buttons stack */
    .hero-cta                  { flex-direction: column; }
    .hero-cta .btn             { width: 100%; justify-content: center; }

    /* Feature grid single column */
    .feature-grid              { grid-template-columns: 1fr; }

    /* Info cards stack */
    .info-card                 { flex-direction: column; text-align: center; padding: 24px; }

    /* Why cards full width */
    .why-cards                 { grid-template-columns: 1fr; }

    /* Contact anchor pills wrap and stack */
    .hero-anchors              { flex-direction: column; align-items: flex-start; }
}

/* ========================================================
   REDUCE MOTION
======================================================== */
@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .hero h1,
    .hero p,
    .hero-cta,
    .hero-stats { animation: none; opacity: 1; }
    .hero__compass-bg { animation: none; }
}

    
  