/* MIXED CSS PACK */
/* Template: mecanicafraga.com.ar/index.html */
/* Template mtime: 2026-04-15 19:39:22 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
/* ==========================================
       VARIABLES & RESET
    ========================================== */
    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

    :root {
      --navy:       #e43520;
      --navy-deep:  #061e35;
      --navy-mid:   #0d3860;
      --navy-light: #144e82;
      --navy-soft:  rgba(10,43,74,0.06);
      --navy-glow:  rgba(10,43,74,0.18);
      --white:      #ffffff;
      --off:        #f7f8fa;
      --text:       #111418;
      --muted:      #5e6a78;
      --line:       #e8eaed;

      --sh-xs: 0 2px 8px rgba(10,43,74,0.05);
      --sh-sm: 0 6px 20px rgba(10,43,74,0.07);
      --sh-md: 0 14px 40px rgba(10,43,74,0.09);
      --sh-lg: 0 28px 64px rgba(10,43,74,0.12);
      --sh-xl: 0 44px 88px rgba(10,43,74,0.15);

      --r-sm: 14px;
      --r-md: 22px;
      --r-lg: 32px;
      --r-xl: 44px;
      --r-pill: 999px;

      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
      --dur-fast: 0.22s;
      --dur-base: 0.38s;
      --dur-slow: 0.6s;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 88px;
      overflow-x: hidden;
    }

    body {
      font-family: 'Manrope', system-ui, sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--line); }
    ::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 10px; }

    /* ==========================================
       TYPOGRAPHY
    ========================================== */
    .font-display { font-family: 'Outfit', sans-serif; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 1.1rem;
      border-radius: var(--r-pill);
      background: var(--navy-soft);
      color: var(--navy);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.4rem;
      border: 1px solid rgba(10,43,74,0.12);
    }

    .section-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(1.7rem, 3.4vw, 2.95rem);
      line-height: 1.05;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text);
      margin-bottom: 1rem;
    }

    .section-sub {
      color: var(--muted);
      font-size: 0.98rem;
      max-width: 680px;
      margin: 0 auto;
      font-weight: 400;
      line-height: 1.65;
    }

    /* ==========================================
       ANIMATIONS
    ========================================== */
    @keyframes fadeUp {
      from { opacity:0; transform:translateY(32px); }
      to   { opacity:1; transform:translateY(0); }
    }
    @keyframes fadeLeft {
      from { opacity:0; transform:translateX(-32px); }
      to   { opacity:1; transform:translateX(0); }
    }
    @keyframes fadeRight {
      from { opacity:0; transform:translateX(32px); }
      to   { opacity:1; transform:translateX(0); }
    }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-12px); }
    }
    @keyframes spin-slow {
      to { transform: rotate(360deg); }
    }
    @keyframes pulse-ring {
      0%   { transform: scale(1);    opacity:0.6; }
      100% { transform: scale(1.35); opacity:0; }
    }
    @keyframes shimmer-line {
      0%   { background-position: -200% 0; }
      100% { background-position:  200% 0; }
    }

    .aos {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity var(--dur-slow) var(--ease),
                  transform var(--dur-slow) var(--ease);
    }
    .aos.visible { opacity: 1; transform: translateY(0); }
    .aos-left  { transform: translateX(-28px); }
    .aos-right { transform: translateX(28px); }
    .aos-left.visible, .aos-right.visible { transform: translateX(0); }

    /* Stagger delays */
    .d1 { transition-delay: 0.05s; }
    .d2 { transition-delay: 0.12s; }
    .d3 { transition-delay: 0.19s; }
    .d4 { transition-delay: 0.26s; }
    .d5 { transition-delay: 0.33s; }
    .d6 { transition-delay: 0.40s; }
    .d7 { transition-delay: 0.47s; }
    .d8 { transition-delay: 0.54s; }

    /* Section */
    .section { padding: 110px 0; position: relative; overflow: hidden; }
    @media(max-width:768px) { .section { padding: 72px 0; } }

    /* ==========================================
       BUTTONS
    ========================================== */
    .btn-primary-cta, .btn-outline-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.65rem;
      height: 56px;
      padding: 0 2rem;
      border-radius: var(--r-md);
      font-weight: 700;
      font-size: 0.92rem;
      cursor: pointer;
      border: none;
      letter-spacing: -0.01em;
      transition: all var(--dur-base) var(--ease);
      position: relative;
      overflow: hidden;
      text-decoration: none;
    }

    .btn-primary-cta {
      background: var(--navy);
      color: white;
      box-shadow: 0 10px 28px -6px var(--navy-glow);
    }
    .btn-primary-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
      transform: translateX(-100%);
      transition: transform 0.55s var(--ease);
    }
    .btn-primary-cta:hover { background: var(--navy-mid); transform: translateY(-3px); box-shadow: 0 18px 36px -8px var(--navy-glow); color: white; }
    .btn-primary-cta:hover::after { transform: translateX(100%); }

    .btn-outline-cta {
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--line);
    }
    .btn-outline-cta:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-soft); transform: translateY(-3px); }

    /* ==========================================
       NAVBAR
    ========================================== */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0;
      height: 80px;
      display: flex;
      align-items: center;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid rgba(10,43,74,0.06);
      transition: background var(--dur-base), box-shadow var(--dur-base);
    }
    .navbar.scrolled {
      background: rgba(255,255,255,0.98);
      box-shadow: var(--sh-sm);
    }
    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: var(--text);
    }
    .nav-brand-logo {
      width: 44px;
      height: 44px;
      object-fit: contain;
      transition: transform var(--dur-base) var(--ease-back);
    }
    .nav-brand:hover .nav-brand-logo { transform: scale(1.08) rotate(-3deg); }
    .nav-brand-name {
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 1.03rem;
      letter-spacing: -0.02em;
      color: var(--navy);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.15rem;
      list-style: none;
    }
    .nav-links a {
      display: block;
      padding: 0.5rem 1rem;
      border-radius: var(--r-pill);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--muted);
      text-decoration: none;
      transition: all var(--dur-fast) var(--ease);
      letter-spacing: -0.01em;
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--navy);
      background: var(--navy-soft);
    }
    .nav-cta {
      height: 42px;
      padding: 0 1.4rem;
      border-radius: var(--r-md);
      background: var(--navy);
      color: white !important;
      font-size: 0.88rem !important;
      font-weight: 700 !important;
      transition: all var(--dur-fast) var(--ease);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .nav-cta:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 20px -4px var(--navy-glow); }

    /* Hamburger */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      background: var(--navy-soft);
      border: none;
      border-radius: var(--r-sm);
      cursor: pointer;
      padding: 0;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all var(--dur-base) var(--ease);
      transform-origin: center;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile nav */
    .nav-mobile {
      display: none;
      position: fixed;
      top: 80px; left: 0; right: 0;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--line);
      padding: 1.5rem;
      z-index: 999;
      transform: translateY(-20px);
      opacity: 0;
      pointer-events: none;
      transition: all var(--dur-base) var(--ease);
      box-shadow: var(--sh-md);
    }
    .nav-mobile.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }
    .nav-mobile a {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.85rem 1rem;
      border-radius: var(--r-sm);
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all var(--dur-fast);
    }
    .nav-mobile a:hover { background: var(--navy-soft); color: var(--navy); }
    .nav-mobile-cta {
      margin-top: 1rem;
      width: 100%;
      justify-content: center;
    }

    @media(max-width: 991px) {
      .nav-links, .nav-cta { display: none; }
      .nav-toggle { display: flex; }
      .nav-mobile { display: block; }
    }

    /* ==========================================
       HERO
    ========================================== */
    .hero {
      min-height: 100vh;
      padding: 120px 0 80px;
      display: flex;
      align-items: center;
      position: relative;
      background: var(--white);
      overflow: hidden;
    }

    /* Decorative blobs */
    .hero-blob {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(80px);
    }
    .hero-blob-1 {
      width: 600px; height: 600px;
      top: -200px; right: -150px;
      background: radial-gradient(circle, rgba(10,43,74,0.06), transparent 70%);
    }
    .hero-blob-2 {
      width: 400px; height: 400px;
      bottom: -100px; left: -100px;
      background: radial-gradient(circle, rgba(10,43,74,0.04), transparent 70%);
    }

    /* Grid decoration */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(10,43,74,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,43,74,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 60% at 80% 50%, black 30%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 80% 60% at 80% 50%, black 30%, transparent 100%);
    }

    .hero-content { position: relative; z-index: 2; }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.5rem 1.2rem 0.5rem 0.6rem;
      border-radius: var(--r-pill);
      background: var(--navy);
      color: white;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 2rem;
      animation: fadeUp 0.7s var(--ease) 0.1s both;
    }
    .hero-label-dot {
      width: 28px; height: 28px;
      background: white;
      border-radius: 50%;
      display: grid;
      place-items: center;
    }
    .hero-label-dot i { color: var(--navy); font-size: 0.7rem; }

    .hero-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2.45rem, 5.4vw, 4.75rem);
      line-height: 0.98;
      font-weight: 900;
      letter-spacing: -0.04em;
      margin-bottom: 2rem;
      animation: fadeUp 0.8s var(--ease) 0.2s both;
    }
    .hero-title .line-accent {
      display: block;
      color: var(--navy);
      position: relative;
    }
    .hero-title .line-plain { display: block; color: var(--text); }

    /* Underline accent */
    .hero-title .line-accent::after {
      content: '';
      position: absolute;
      left: 0; bottom: -6px;
      height: 4px;
      width: 100%;
      background: var(--navy);
      border-radius: 2px;
      transform-origin: left;
      animation: shimmer-line 2.5s linear infinite;
      background-size: 200% 100%;
      background-image: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
    }

    .hero-text {
      color: var(--muted);
      font-size: 1rem;
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 2.5rem;
      animation: fadeUp 0.8s var(--ease) 0.3s both;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeUp 0.8s var(--ease) 0.4s both;
    }

    /* Stats bar */
    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--line);
      animation: fadeUp 0.8s var(--ease) 0.5s both;
    }
    .hero-stat-num {
      font-family: 'Outfit', sans-serif;
      font-size: 1.75rem;
      font-weight: 900;
      color: var(--navy);
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 500;
      margin-top: 0.3rem;
    }

    /* Hero visual side */
    .hero-visual-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeRight 1s var(--ease) 0.3s both;
    }

    /* Big circle ring */
    .hero-ring {
      position: absolute;
      width: 500px; height: 500px;
      border: 1.5px solid rgba(10,43,74,0.10);
      border-radius: 50%;
      animation: spin-slow 30s linear infinite;
    }
    .hero-ring-2 {
      width: 380px; height: 380px;
      border-color: rgba(10,43,74,0.06);
      animation-direction: reverse;
      animation-duration: 20s;
    }

    /* Dots on ring */
    .hero-ring::before {
      content: '';
      position: absolute;
      width: 10px; height: 10px;
      background: var(--navy);
      border-radius: 50%;
      top: -5px; left: 50%;
      transform: translateX(-50%);
    }

    .hero-card-wrap {
      position: relative;
      z-index: 2;
      width: clamp(280px, 36vw, 480px);
      aspect-ratio: 1;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--sh-xl), 0 0 0 20px rgba(10,43,74,0.03), 0 0 0 40px rgba(10,43,74,0.015);
      animation: float 6s ease-in-out infinite;
    }

    .hero-card-img {
      width: 72%;
      object-fit: contain;
      filter: drop-shadow(0 8px 20px rgba(10,43,74,0.15));
    }

    /* Floating badges */
    .hero-badge {
      position: absolute;
      background: white;
      border-radius: var(--r-md);
      padding: 0.8rem 1.2rem;
      box-shadow: var(--sh-md);
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      z-index: 5;
      white-space: nowrap;
    }
    .hero-badge-1 { top: 8%; left: -8%; animation: float 5s ease-in-out 0.5s infinite; }
    .hero-badge-2 { bottom: 14%; right: -6%; animation: float 5s ease-in-out 1s infinite; }
    .hero-badge i { color: var(--navy); font-size: 1.3rem; }
    .hero-badge-text strong { display:block; font-size: 0.85rem; font-weight: 700; color: var(--text); }
    .hero-badge-text span { font-size: 0.72rem; color: var(--muted); }

    /* Mobile hero img */
    .hero-mobile-visual {
      display: none;
    }
    .hero-mobile-visual .hero-card-wrap {
      margin: 1.4rem auto 1.2rem;
      width: min(86vw, 320px);
      height: min(86vw, 320px);
      aspect-ratio: 1;
    }
    .hero-mobile-visual .hero-card-img {
      width: 78%;
      max-width: 220px;
      object-fit: contain;
    }

    @media(max-width:991px) {
      .hero { min-height: auto; padding: 110px 0 60px; }
      .hero-ring, .hero-ring-2, .hero-badge { display: none; }
      .hero-card-wrap { width: 200px; height: 200px; }
      .hero-visual-wrap { margin-top: 3rem; }
      .hero-stats { gap: 1.5rem; }
    }
    @media(max-width:576px) {
      .hero-mobile-visual { display: block; }
      .hero-desktop-col { display: none; }
      .hero-actions { flex-direction: column; }
      .hero-actions a { width: 100%; justify-content: center; }
      .hero-stats { flex-direction: column; gap: 1rem; }
      .hero-card-wrap { width: 160px; height: 160px; }
      .hero-title { font-size: clamp(2.05rem, 11vw, 2.8rem); }
      .section-title { font-size: clamp(1.55rem, 8vw, 2.1rem); }
      .hero-text, .section-sub { font-size: 0.95rem; }
    }

    /* ==========================================
       WHO WE ARE
    ========================================== */
    .about-section {
      background: var(--off);
      position: relative;
    }
    .about-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--line), transparent);
    }

    .about-text-wrap {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      padding-right: 2rem;
    }

    .about-text-wrap p {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 1.2rem;
    }

    .about-img-wrap {
      position: relative;
    }
    .about-img-frame {
      border-radius: var(--r-xl);
      overflow: hidden;
      position: relative;
      box-shadow: var(--sh-xl);
    }
    .about-img-frame img {
      width: 100%;
      height: clamp(340px, 42vw, 560px);
      object-fit: cover;
      display: block;
      transition: transform 0.8s var(--ease);
    }
    .about-img-frame:hover img { transform: scale(1.04); }

    /* Corner accent */
    .about-img-frame::before {
      content: '';
      position: absolute;
      top: -12px; left: -12px;
      width: 80px; height: 80px;
      background: var(--navy);
      border-radius: 50%;
      z-index: -1;
      opacity: 0.12;
    }

    /* Floating info card */
    .about-float-card {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--navy);
      color: white;
      border-radius: var(--r-lg);
      padding: 1.4rem 1.8rem;
      box-shadow: var(--sh-lg);
      min-width: 200px;
    }
    .about-float-num {
      font-family: 'Outfit', sans-serif;
      font-size: 2.1rem;
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1;
    }
    .about-float-label { font-size: 0.8rem; opacity: 0.8; margin-top: 0.3rem; }

    @media(max-width:991px) {
      .about-text-wrap { padding-right: 0; margin-bottom: 3rem; }
      .about-float-card { left: 0; bottom: -10px; }
    }

    /* ==========================================
       SERVICES
    ========================================== */
    .services-section { background: var(--white); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 3.5rem;
    }
    @media(max-width:1199px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media(max-width:575px)  { .services-grid { grid-template-columns: 1fr; } }

    .service-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 2rem 1.6rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: all var(--dur-base) var(--ease);
      position: relative;
      overflow: hidden;
      cursor: default;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--navy);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--dur-base) var(--ease);
    }
    .service-card:hover {
      transform: translateY(-8px);
      border-color: transparent;
      box-shadow: var(--sh-lg);
    }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 56px; height: 56px;
      background: var(--navy-soft);
      border-radius: var(--r-sm);
      display: grid;
      place-items: center;
      color: var(--navy);
      font-size: 1.5rem;
      transition: all var(--dur-base) var(--ease-back);
      flex-shrink: 0;
    }
    .service-card:hover .service-icon {
      background: var(--navy);
      color: white;
      transform: rotate(-5deg) scale(1.08);
    }
    .service-name {
      font-family: 'Outfit', sans-serif;
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.25;
    }
    .service-arrow {
      margin-top: auto;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--off);
      display: grid;
      place-items: center;
      color: var(--muted);
      font-size: 0.8rem;
      transition: all var(--dur-fast) var(--ease-back);
    }
    .service-card:hover .service-arrow {
      background: var(--navy);
      color: white;
      transform: translate(2px, -2px);
    }

    /* ==========================================
       WHY US
    ========================================== */
    .why-section {
      background: var(--navy);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .why-section::before {
      content: '';
      position: absolute;
      top: -40%; right: -20%;
      width: 70%; height: 140%;
      background: radial-gradient(circle, rgba(255,255,255,0.03), transparent 60%);
      pointer-events: none;
    }
    .why-section .eyebrow {
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.9);
      border-color: rgba(255,255,255,0.15);
    }
    .why-section .section-title { color: white; }
    .why-section .section-sub { color: rgba(255,255,255,0.65); }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
    }
    @media(max-width:1199px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
    @media(max-width:575px)  { .why-grid { grid-template-columns: 1fr; } }

    .why-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--r-lg);
      padding: 2.2rem 1.8rem;
      transition: all var(--dur-base) var(--ease);
      position: relative;
      overflow: hidden;
    }
    .why-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.04);
      opacity: 0;
      transition: opacity var(--dur-base);
    }
    .why-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
    .why-card:hover::after { opacity: 1; }

    .why-icon {
      width: 60px; height: 60px;
      background: rgba(255,255,255,0.1);
      border-radius: var(--r-sm);
      display: grid;
      place-items: center;
      color: white;
      font-size: 1.6rem;
      margin-bottom: 1.5rem;
      transition: all var(--dur-base) var(--ease-back);
    }
    .why-card:hover .why-icon { background: rgba(255,255,255,0.2); transform: scale(1.08) rotate(3deg); }

    .why-title {
      font-family: 'Outfit', sans-serif;
      font-size: 1.05rem;
      font-weight: 800;
      color: white;
      margin-bottom: 0.6rem;
    }
    .why-text { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.6; }

    /* ==========================================
       GALLERY — untouched styles from original
    ========================================== */
    .gal-gallery .carousel { max-width:980px; margin-inline:auto; position:relative; margin-top:2rem; }
    .gal-frame {
      height:clamp(260px,50vw,500px);
      background:#fff; border-radius:24px; overflow:hidden;
      box-shadow:0 18px 48px rgba(0,0,0,.11);
      display:flex; align-items:center; justify-content:center;
      padding:12px; border:1px solid rgba(0,0,0,.06);
    }
    .gal-img {
      width:auto !important; max-width:100%;
      height:auto !important; max-height:100%;
      object-fit:contain !important; object-position:center;
      display:block; cursor:zoom-in; border-radius:16px;
    }
    .gal-gallery .carousel-control-prev,
    .gal-gallery .carousel-control-next {
      z-index:20; width:52px; height:52px; top:50%; transform:translateY(-50%);
      opacity:1; background:rgba(17,17,17,.72); border-radius:50%; margin:0 12px;
    }
    .gal-gallery .carousel-control-prev { left:0; }
    .gal-gallery .carousel-control-next { right:0; }
    .gal-gallery .gal-ctrl-icon { width:2.7rem; height:2.7rem; background-size:58% 58%; }
    .gal-gallery .carousel-indicators { z-index:10; bottom:-54px; }
    .gal-gallery .carousel-indicators button {
      width:10px; height:10px; border-radius:50%;
      background:rgba(17,17,17,.35); border:none;
    }
    .gal-gallery .carousel-indicators button.active { background: var(--navy); }
    .gal-gallery { padding-bottom:62px; }
    #galLightbox .modal-content { background:#000; border-radius:20px; overflow:hidden; }
    #galLightboxImg { max-height:86vh; width:100%; height:auto; object-fit:contain; background:#000; }
    .gal-lightbox-nav {
      position:absolute; top:50%; transform:translateY(-50%);
      border:0; width:46px; height:46px; border-radius:999px;
      background:rgba(255,255,255,.18); color:#fff; font-size:32px;
      line-height:46px; text-align:center; z-index:5; cursor:pointer;
    }
    .gal-lightbox-nav:hover { background:rgba(255,255,255,.3); }
    .gal-lightbox-nav.gal-prev { left:10px; }
    .gal-lightbox-nav.gal-next { right:10px; }
    @media(max-width:575.98px) { .gal-frame { height: clamp(200px,40vh,360px); } }

    /* ==========================================
       FAQ
    ========================================== */
    .faq-section { background: var(--off); }
    .faq-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--line), transparent);
    }

    .faq-list {
      max-width: 840px;
      margin: 3rem auto 0;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      background: white;
      margin-bottom: 0.9rem;
      overflow: hidden;
      transition: box-shadow var(--dur-base) var(--ease);
    }
    .faq-item:hover { box-shadow: var(--sh-md); }
    .faq-item.open { box-shadow: var(--sh-md); border-color: rgba(10,43,74,0.2); }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.4rem 1.8rem;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: 'Manrope', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      transition: color var(--dur-fast);
    }
    .faq-q:hover { color: var(--navy); }
    .faq-item.open .faq-q { color: var(--navy); }

    .faq-q-icon {
      width: 36px; height: 36px;
      background: var(--navy-soft);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--navy);
      font-size: 0.9rem;
      flex-shrink: 0;
      transition: all var(--dur-base) var(--ease);
    }
    .faq-item.open .faq-q-icon { background: var(--navy); color: white; }

    .faq-q-chevron {
      margin-left: auto;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--off);
      display: grid;
      place-items: center;
      color: var(--muted);
      flex-shrink: 0;
      transition: all var(--dur-base) var(--ease);
    }
    .faq-item.open .faq-q-chevron { background: var(--navy-soft); color: var(--navy); transform: rotate(180deg); }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--ease), padding 0.3s;
    }
    .faq-body.open { max-height: 300px; }

    .faq-body-inner {
      padding: 0 1.8rem 1.5rem;
      padding-left: calc(1.8rem + 36px + 1rem);
      color: var(--muted);
      font-size: 0.97rem;
      line-height: 1.7;
    }

    /* ==========================================
       CONTACT
    ========================================== */
    .contact-section { background: var(--white); }

    .contact-info-card {
      background: var(--navy);
      border-radius: var(--r-xl);
      padding: 2.8rem;
      height: 100%;
      color: white;
      position: relative;
      overflow: hidden;
    }
    .contact-info-card::before {
      content: '';
      position: absolute;
      bottom: -80px; right: -80px;
      width: 240px; height: 240px;
      border: 40px solid rgba(255,255,255,0.05);
      border-radius: 50%;
    }
    .contact-info-card::after {
      content: '';
      position: absolute;
      top: -40px; left: -40px;
      width: 160px; height: 160px;
      border: 30px solid rgba(255,255,255,0.04);
      border-radius: 50%;
    }

    .contact-info-title {
      font-family: 'Outfit', sans-serif;
      font-size: 1.55rem;
      font-weight: 800;
      color: white;
      margin-bottom: 0.5rem;
    }
    .contact-info-sub { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; font-size: 0.95rem; }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.1rem;
      border-radius: var(--r-md);
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 0.9rem;
      transition: all var(--dur-fast) var(--ease);
      position: relative;
      z-index: 1;
    }
    .contact-item:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
    .contact-item-icon {
      width: 44px; height: 44px;
      background: rgba(255,255,255,0.12);
      border-radius: var(--r-sm);
      display: grid;
      place-items: center;
      font-size: 1.2rem;
      color: white;
      flex-shrink: 0;
    }
    .contact-item-label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-bottom: 0.2rem;
    }
    .contact-item-value, .contact-item-value a {
      color: white;
      font-weight: 600;
      font-size: 0.97rem;
      text-decoration: none;
      transition: opacity var(--dur-fast);
    }
    .contact-item-value a:hover { opacity: 0.8; }

    /* Form card */
    .contact-form-card {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--r-xl);
      padding: 2.8rem;
      height: 100%;
      box-shadow: var(--sh-sm);
      transition: box-shadow var(--dur-base);
    }
    .contact-form-card:hover { box-shadow: var(--sh-lg); }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .form-label-custom {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .form-ctrl {
      height: 52px;
      padding: 0 1.2rem;
      border: 1.5px solid var(--line);
      border-radius: var(--r-md);
      background: var(--off);
      font-family: 'Manrope', sans-serif;
      font-size: 0.95rem;
      color: var(--text);
      width: 100%;
      transition: all var(--dur-fast) var(--ease);
      outline: none;
    }
    .form-ctrl:focus {
      border-color: var(--navy);
      background: white;
      box-shadow: 0 0 0 4px rgba(10,43,74,0.08);
    }
    .form-ctrl.textarea { height: auto; padding: 1rem 1.2rem; resize: none; }
    select.form-ctrl { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235e6a78' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 18px; padding-right: 2.5rem; }

    .form-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    @media(max-width:575px) { .form-grid-2 { grid-template-columns: 1fr; } }

    /* ==========================================
       FOOTER
    ========================================== */
    .footer {
      background: var(--navy-deep);
      color: white;
      padding: 80px 0 0;
      position: relative;
      overflow: hidden;
    }
    .footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--navy-light), rgba(255,255,255,0.3), var(--navy-light));
    }
    .footer::after {
      content: '';
      position: absolute;
      bottom: -100px; right: -100px;
      width: 400px; height: 400px;
      border: 60px solid rgba(255,255,255,0.02);
      border-radius: 50%;
    }

    .footer-logo-img {
      height: 48px;
      object-fit: contain;
      margin-bottom: 1rem;
    }
    .footer-brand-name {
      font-family: 'Outfit', sans-serif;
      font-size: 1.08rem;
      font-weight: 800;
      color: white;
      margin-bottom: 0.75rem;
    }
    .footer-desc { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.65; max-width: 280px; }

    .footer-col-title {
      font-family: 'Outfit', sans-serif;
      font-size: 0.73rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 1.25rem;
    }
    .footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 0.92rem;
      font-weight: 500;
      transition: all var(--dur-fast);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .footer-links a::before { content: '→'; opacity: 0; transform: translateX(-4px); transition: all var(--dur-fast); font-size: 0.8rem; }
    .footer-links a:hover { color: white; transform: translateX(6px); }
    .footer-links a:hover::before { opacity: 1; transform: translateX(0); }

    .footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
      text-decoration: none;
      transition: color var(--dur-fast);
    }
    .footer-contact-item:hover { color: white; }
    .footer-contact-item i { color: rgba(255,255,255,0.4); width: 16px; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 1.5rem 0;
      margin-top: 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    .footer-bottom span, .footer-bottom a { color: rgba(255,255,255,0.4); font-size: 0.82rem; text-decoration: none; transition: color var(--dur-fast); }
    .footer-bottom a:hover { color: rgba(255,255,255,0.8); }

    /* ==========================================
       SCROLL TO TOP
    ========================================== */
    .scroll-top {
      position: fixed;
      bottom: 100px;
      right: 22px;
      width: 48px; height: 48px;
      background: var(--navy);
      color: white;
      border-radius: var(--r-md);
      border: none;
      cursor: pointer;
      display: grid;
      place-items: center;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all var(--dur-base) var(--ease);
      z-index: 100;
      box-shadow: var(--sh-md);
      font-size: 1.1rem;
    }
    .scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
    .scroll-top:hover { background: var(--navy-mid); transform: translateY(-4px); box-shadow: var(--sh-lg); }

    /* ==========================================
       WHATSAPP WIDGET — original preserved
    ========================================== */
    .wa-float {
      position: fixed; right: 18px; bottom: 18px;
      z-index: 2147483647;
      display: flex; flex-direction: column; align-items: flex-end;
    }
    .wa-btn {
      width: 60px; height: 60px; border-radius: 50%; border: none;
      background: linear-gradient(135deg,#25D366,#128C7E);
      color: #fff; display: grid; place-items: center; cursor: pointer;
      box-shadow: 0 10px 30px rgba(37,211,102,.45);
      transition: transform .25s, box-shadow .25s;
    }
    .wa-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 36px rgba(37,211,102,.55); }
    .wa-card {
      position: absolute; right: 0; bottom: 74px;
      width: min(360px,92vw); background: #fff; border-radius: 18px;
      border: 1px solid #e3e6ea; box-shadow: 0 18px 60px rgba(0,0,0,.25);
      overflow: hidden; transform: translateY(10px); opacity: 0;
      transition: .25s ease;
    }
    .wa-card[aria-modal="true"] { transform: none; opacity: 1; }
    .wa-head { display: flex; align-items: center; gap: 12px; padding: 14px; background: linear-gradient(135deg,#25D366,#128C7E); color: #fff; }
    .wa-avatar { width: 40px; height: 40px; background: #fff; border-radius: 10px; display: grid; place-items: center; overflow: hidden; }
    .wa-avatar img { width: 26px; height: 26px; object-fit: contain; }
    .wa-title { font-weight: 800; }
    .wa-status { font-size: .85rem; opacity: .9; }
    .wa-close { margin-left: auto; border: none; background: transparent; color: #fff; font-size: 24px; cursor: pointer; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: .9; }
    .wa-close:hover { opacity: 1; background: rgba(255,255,255,.14); }
    .wa-body { padding: 14px; max-height: 40vh; overflow: auto; background: #f8f9fa; display: flex; flex-direction: column; gap: 8px; }
    .wa-bubble { max-width: 88%; padding: 10px 12px; border-radius: 14px; font-size: .95rem; box-shadow: 0 4px 10px rgba(0,0,0,.08); }
    .wa-bot { background: #fff; border: 1px solid #e3e6ea; align-self: flex-start; }
    .wa-user { background: #eaf7f0; border: 1px solid #cfeedd; align-self: flex-end; }
    .wa-compose { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 10px; border-top: 1px solid #e3e6ea; background: #fff; }
    .wa-compose textarea { resize: none; border-radius: 12px; padding: 10px; border: 1px solid #e3e6ea; font-family: inherit; outline: none; }
    .wa-send { background: #25D366; color: #fff; border: none; border-radius: 12px; padding: 0 16px; cursor: pointer; }
    .wa-send:hover { background: #1fb85a; }
    @media(max-width:480px) { .wa-float { right: 12px; bottom: 12px; } .wa-card { width: calc(100vw - 24px); } }

    /* ==========================================
       SECTION DIVIDERS
    ========================================== */
    .divider-wave {
      line-height: 0;
      overflow: hidden;
    }
    .divider-wave svg { display: block; }

