*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: "Heebo", sans-serif;
    color: #3d3d4e;
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* ===== SECTION HEADERS ===== */
  
  .section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #e8590c;
    background: rgba(232, 89, 12, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
  
  .section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #1b1b2f;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  
  .section-desc {
    font-size: 1.15rem;
    color: #6b6b80;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  /* ===== BUTTONS ===== */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Heebo", sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
  }
  
  .btn--small {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
  
  .btn--large {
    padding: 16px 36px;
    font-size: 1.05rem;
  }
  
  .btn--primary {
    background: linear-gradient(135deg, #d9480f, #e8590c);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(217, 72, 15, 0.35);
  }
  
  .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(217, 72, 15, 0.45);
  }
  
  .btn--outline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
  }
  
  .btn--outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
  }
  
  .btn--white {
    background: #ffffff;
    color: #1b1b2f;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  .btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  }
  
  .btn--whatsapp {
    background: #25d366;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    gap: 12px;
  }
  
  .btn--whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45);
  }
  
  .btn--whatsapp svg {
    flex-shrink: 0;
  }
  
  .btn--whatsapp-nav {
    background: #25d366;
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.88rem;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
  }
  
  .btn--whatsapp-nav:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  
  /* ===== ANIMATIONS ===== */
  
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
  .animate-on-scroll:nth-child(2) { transition-delay: 0.12s; }
  .animate-on-scroll:nth-child(3) { transition-delay: 0.24s; }
  .animate-on-scroll:nth-child(4) { transition-delay: 0.36s; }
  
  /* ===== NAVBAR ===== */
  
  .navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .navbar--scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
  
  .navbar--scrolled .navbar__links a {
    color: #3d3d4e;
  }
  
  .navbar--scrolled .navbar__links a:hover {
    color: #e8590c;
  }
  
  .navbar--scrolled .navbar__toggle span {
    background: #1b1b2f;
  }
  
  .navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar__logo {
    display: flex;
    align-items: center;
  }
  
  .navbar__logo-img {
    height: 128px;
    width: auto;
    transition: height 0.3s ease;
  }
  
  .navbar--scrolled .navbar__logo-img {
    height: 80px;
  }
  
  .navbar__links {
    display: flex;
    gap: 32px;
  }
  
  .navbar__links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
  }
  
  .navbar__links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: #ff922b;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .navbar__links a:hover {
    color: #ffffff;
  }
  
  .navbar__links a:hover::after {
    width: 100%;
  }
  
  .navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  
  .navbar__toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
  }
  
  .navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .navbar__toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* ===== HERO ===== */
  
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    overflow: hidden;
  }
  
  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
  }
  
  .hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 15, 30, 0.92) 0%, rgba(27, 27, 47, 0.82) 40%, rgba(50, 30, 15, 0.75) 100%);
  }
  
  .hero__bg::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    /* background: linear-gradient(to top, #ff922b, transparent); */
    z-index: 1;
  }
  
  .hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
  }
  
  .hero__title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  
  .hero__title span {
    display: block;
    font-size: 0.65em;
    font-weight: 600;
    background: linear-gradient(135deg, #ff922b, #e8590c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
  }
  
  .hero__subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  .hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero__wa-btn {
    font-size: 1.15rem;
    padding: 18px 44px;
    animation: pulse-green 2.5s infinite;
  }
  
  @keyframes pulse-green {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.6); }
  }
  
  /* ===== STATS BAR ===== */
  
  .stats {
    background: #1b1b2f;
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
  }
  
  .stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  
  .stats__item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
  }
  
  .stats__item:last-child {
    border-left: none;
  }
  
  .stats__item:hover {
    background: rgba(232, 89, 12, 0.06);
  }
  
  .stats__icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: linear-gradient(135deg, #e8590c, #ff922b);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .stats__icon svg {
    width: 26px;
    height: 26px;
    stroke: #ffffff;
  }
  
  .stats__text strong {
    display: block;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
  }
  
  .stats__text span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
  }
  
  /* ===== RECOMMENDATIONS ===== */
  
  .recommendations {
    padding: 100px 0;
    background: linear-gradient(170deg, #1b1b2f 0%, #2a2a45 100%);
    position: relative;
    overflow: hidden;
  }
  
  .recommendations::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 15% 30%, rgba(232, 89, 12, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 85% 70%, rgba(255, 146, 43, 0.08) 0%, transparent 50%);
  }
  
  .recommendations::after {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(232, 89, 12, 0.1);
    border-radius: 50%;
  }
  
  .recommendations .section-tag {
    color: #ff922b;
    background: rgba(255, 146, 43, 0.12);
  }
  
  .recommendations .section-title {
    color: #ffffff;
  }
  
  .recommendations .section-header,
  .recommendations .recommendations__grid {
    position: relative;
    z-index: 1;
  }
  
  .recommendations__grid {
    columns: 3;
    column-gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .recommendation-card {
    display: block;
    break-inside: avoid;
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
  }
  
  .recommendation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }
  
  .recommendation-card__img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* ===== LIGHTBOX ===== */
  
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 24px;
  }
  
  .lightbox.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
  }
  
  .lightbox.active .lightbox__img {
    transform: scale(1);
  }
  
  .lightbox__close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    line-height: 1;
  }
  
  .lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  
  /* ===== SERVICES ===== */
  
  .services {
    padding: 100px 0;
    background: #ffffff;
  }
  
  .services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  
  .service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #ededf2;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(232, 89, 12, 0.2);
  }
  
  .service-card--featured {
    background: linear-gradient(160deg, #1b1b2f, #2a2a45);
    color: #ffffff;
    border-color: transparent;
  }
  
  .service-card--featured .service-card__title {
    color: #ffffff;
  }
  
  .service-card--featured .service-card__desc {
    color: rgba(255, 255, 255, 0.75);
  }
  
  .service-card--featured .service-card__icon {
    background: linear-gradient(135deg, #e8590c, #ff922b);
  }
  
  .service-card--featured .service-card__icon svg {
    stroke: #ffffff;
  }
  
  .service-card--featured .service-card__link {
    color: #ff922b;
  }
  
  .service-card--featured .service-card__link:hover {
    color: #ffffff;
  }
  
  .service-card--featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(27, 27, 47, 0.45);
  }
  
  .service-card__badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(135deg, #e8590c, #ff922b);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
  }
  
  .service-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(232, 89, 12, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  
  .service-card__icon svg {
    width: 30px;
    height: 30px;
    stroke: #e8590c;
  }
  
  .service-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b1b2f;
    margin-bottom: 12px;
  }
  
  .service-card__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #6b6b80;
  }
  
  .service-card__link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #e8590c;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .service-card__link:hover {
    color: #d9480f;
  }
  
  /* ===== ABOUT ===== */
  
  .about {
    padding: 100px 0;
    background: #f7f7fb;
  }
  
  .about__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .about__content .section-title {
    text-align: right;
  }
  
  .about__text {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 16px;
    color: #3d3d4e;
  }
  
  .about__pillars {
    display: flex;
    gap: 32px;
    margin-top: 36px;
  }
  
  .about__pillar {
    flex: 1;
    text-align: center;
  }
  
  .about__pillar-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #e8590c;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  
  .about__pillar-bar {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e8590c, #ff922b);
    border-radius: 3px;
    margin: 0 auto 16px;
  }
  
  .about__pillar strong {
    display: block;
    color: #1b1b2f;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
  }
  
  .about__pillar span {
    font-size: 0.9rem;
    color: #6b6b80;
    line-height: 1.6;
  }
  
  .about__image-box {
    background: linear-gradient(160deg, #1b1b2f, #2a2a45);
    border-radius: 20px;
    padding: 48px 36px;
    text-align: center;
    color: #ffffff;
    border: 1px solid rgba(232, 89, 12, 0.15);
  }
  
  .about__report-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8590c, #ff922b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
  }
  
  .about__report-icon svg {
    width: 40px;
    height: 40px;
    stroke: #ffffff;
  }
  
  .about__image-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
  }
  
  .about__image-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
  }
  
  /* ===== CTA ===== */
  
  .cta {
    padding: 80px 0;
    background: linear-gradient(160deg, #1b1b2f 0%, #2a2a45 50%, #3a2a1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(232, 89, 12, 0.12) 0%, transparent 60%);
  }
  
  .cta__inner {
    max-width: 700px;
    position: relative;
  }
  
  .cta__title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
  }
  
  .cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
  }
  
  .cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* ===== CONTACT ===== */
  
  .contact {
    padding: 100px 0;
    background: #ffffff;
  }
  
  .contact__center {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .contact__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
  }
  
  .contact__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 28px;
    transition: color 0.3s ease;
  }
  
  a.contact__item:hover {
    color: #e8590c;
  }
  
  .contact__item svg {
    width: 28px;
    height: 28px;
    stroke: #e8590c;
    flex-shrink: 0;
  }
  
  .contact__item strong {
    display: block;
    color: #1b1b2f;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
  }
  
  .contact__item span {
    font-size: 0.95rem;
    color: #6b6b80;
  }
  
  .contact__divider {
    width: 1px;
    height: 48px;
    background: #ddd;
    flex-shrink: 0;
  }
  
  /* ===== FOOTER ===== */
  
  .footer {
    background: #12121f;
    padding-top: 60px;
  }
  
  .footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .footer__brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 360px;
  }
  
  .footer__logo-img {
    height: 56px;
    width: auto;
    filter: brightness(0) invert(1);
  }
  
  .footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer__links h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
  }
  
  .footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .footer__links a:hover {
    color: #ff922b;
  }
  
  .footer__bottom {
    padding: 20px 0;
  }
  
  .footer__bottom p {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.25);
  }
  
  /* ===== FLOATING WHATSAPP ===== */
  
  .floating-wa {
    position: fixed;
    bottom: 28px;
    left: 28px;
    height: 64px;
    background: #25d366;
    border-radius: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    color: #ffffff;
    font-family: "Heebo", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: padding 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
  }
  
  .floating-wa__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
  }
  
  .floating-wa__text {
    display: inline-block;
    max-width: 120px;
    opacity: 1;
    transition: max-width 0.4s ease, opacity 0.3s ease;
    overflow: hidden;
  }
  
  .floating-wa.collapsed .floating-wa__text {
    max-width: 0;
    opacity: 0;
  }
  
  .floating-wa.collapsed {
    padding: 0 16px;
  }
  
  .floating-wa:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
  }
  
  @keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 6px 44px rgba(37, 211, 102, 0.75); }
  }
  
  .floating-wa {
    animation: wa-pulse 2.5s ease-in-out infinite;
  }
  
  /* ===== RESPONSIVE ===== */
  
  @media (max-width: 992px) {
    .stats__inner {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .stats__item {
      border-left: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
  
    .stats__item:nth-child(odd) {
      border-left: 1px solid rgba(255, 255, 255, 0.06);
    }
  
    .services__grid {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin: 0 auto;
    }
  
    .about__grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .about__pillars {
      gap: 20px;
    }
  
    .contact__row {
      flex-direction: column;
      gap: 16px;
    }
  
    .contact__divider {
      width: 60px;
      height: 1px;
    }
  
    .footer__inner {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer__inner .footer__brand p {
      margin: 16px auto 0;
    }
  
    .footer__logo-img {
      margin: 0 auto;
    }
  }
  
  @media (max-width: 768px) {
    .navbar__links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: #1b1b2f;
      flex-direction: column;
      padding: 100px 32px 32px;
      gap: 24px;
      transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 16px 60px rgba(0, 0, 0, 0.16);
    }
  
    .navbar__links.active {
      right: 0;
    }
  
    .navbar__links a {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.1rem;
    }
  
    .navbar__links a:hover {
      color: #ffffff;
    }
  
    .navbar__cta {
      display: none;
    }
  
    .navbar__toggle {
      display: flex;
    }
  
    .navbar__logo-img {
      height: 90px;
    }
  
    .navbar--scrolled .navbar__logo-img {
      height: 64px;
    }
  
    .hero {
      padding: 100px 0 60px;
      min-height: 90vh;
    }
  
    .hero__title {
      font-size: clamp(2rem, 8vw, 2.8rem);
    }
  
    .hero__actions {
      flex-direction: column;
      align-items: center;
    }
  
    .hero__wa-btn {
      width: 100%;
      max-width: 360px;
    }
  
    .stats__inner {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .stats__item {
      flex-direction: column;
      text-align: center;
      gap: 12px;
      padding: 28px 16px;
      border-left: none !important;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
  
    .stats__item:nth-child(odd) {
      border-left: 1px solid rgba(255, 255, 255, 0.06) !important;
    }
  
    .stats__item:nth-last-child(-n+2) {
      border-bottom: none;
    }
  
    .stats {
      margin-top: -20px;
    }
  
    .stats__icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
    }
  
    .stats__text strong {
      font-size: 1.05rem;
    }
  
    .stats__text span {
      font-size: 0.88rem;
    }
  
    .recommendations__grid {
      columns: 2;
      column-gap: 12px;
    }
  
    .recommendation-card {
      margin-bottom: 12px;
    }
  
    .cta__buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .btn--whatsapp {
      width: 100%;
      max-width: 340px;
    }
  
    .floating-wa {
      bottom: 20px;
      left: 20px;
      height: 56px;
      font-size: 0.92rem;
      padding: 0 14px;
    }
  
    .floating-wa__icon {
      width: 28px;
      height: 28px;
    }
  }
  