
    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --ink:       #0a0b0f;
      --ink-soft:  #1c1e27;
      --surface:   #f4f3ef;
      --white:     #ffffff;
      --accent:    #e8430a;
      --accent2:   #ff6b35;
      --gold:      #d4a843;
      --muted:     #6b6f7e;
      --border:    rgba(10,11,15,.10);

      --font-head: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;

      --max: 1160px;
      --rad: 16px;
      --rad-sm: 8px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--surface);
      color: var(--ink);
      line-height: 1.65;
      font-size: 16px;
      overflow-x: hidden;
      padding-bottom: 80px; /* space for dual btn bar */
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
    h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 800; }
    h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
    h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }

    .label {
      display: inline-block;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 30px;
      border-radius: 50px;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: .95rem;
      cursor: pointer;
      transition: transform .2s, box-shadow .2s, background .2s;
      border: none;
    }
    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 8px 32px rgba(232,67,10,.35);
    }
    .btn-primary:hover { background: var(--accent2); box-shadow: 0 12px 40px rgba(232,67,10,.45); }

    .btn-outline {
      background: transparent;
      color: var(--ink);
      border: 2px solid var(--ink);
    }
    .btn-outline:hover { background: var(--ink); color: var(--white); }

    .btn-white {
      background: var(--white);
      color: var(--ink);
      box-shadow: 0 4px 20px rgba(0,0,0,.15);
    }
    .btn-white:hover { box-shadow: 0 8px 32px rgba(0,0,0,.22); }

    /* ===== NAVBAR ===== */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 900;
      background: rgba(244,243,239,.92);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }
    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      max-width: var(--max);
      margin: 0 auto;
    }
    .nav__logo {
      font-family: var(--font-head);
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: -.02em;
    }
    .nav__logo span { color: var(--accent); }

    .nav__links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav__links a {
      font-size: .88rem;
      font-weight: 500;
      color: var(--ink-soft);
      transition: color .2s;
    }
    .nav__links a:hover { color: var(--accent); }
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .nav__social-link {
      color: rgba(10,11,15,.4);
      transition: color .2s;
      display: flex;
      align-items: center;
    }
    .nav__social-link:hover { color: var(--accent); }

    /* Backdrop-filter fallback */
    @supports not (backdrop-filter: blur(1px)) {
      .service-item { background: rgba(20,22,32,.95); }
      .nav { background: rgba(244,243,239,.98); }
    }

    /* Light sections subtle texture */
    .section:not(.section--dark):not(.section--accent):not(.section--alt) {
      background-image: radial-gradient(rgba(10,11,15,.03) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .section--alt {
      background-image: radial-gradient(rgba(10,11,15,.04) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      background: var(--ink);
      color: var(--white);
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 120px 0 80px;
    }

    /* Grain overlay */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: .4;
      pointer-events: none;
    }

    /* Accent blob */
    .hero::after {
      content: '';
      position: absolute;
      top: -160px; right: -120px;
      width: 700px; height: 700px;
      background: radial-gradient(ellipse, rgba(232,67,10,.22) 0%, transparent 70%);
      pointer-events: none;
    }

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

    .hero__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: .78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.7);
      margin-bottom: 28px;
    }
    .hero__eyebrow .dot {
      width: 6px; height: 6px;
      background: #4ade80;
      border-radius: 50%;
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .5; transform: scale(.7); }
    }

    .hero h1 { margin-bottom: 24px; max-width: 820px; }
    .hero h1 em { font-style: normal; color: var(--accent); }

    .hero__sub {
      font-size: clamp(1rem, 2.2vw, 1.2rem);
      color: rgba(255,255,255,.65);
      max-width: 560px;
      margin-bottom: 44px;
      line-height: 1.7;
    }

    .hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

    .hero__stats {
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,.1);
    }
    .stat__number {
      font-family: var(--font-head);
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--white);
    }
    .stat__number span { color: var(--accent); }
    .stat__label {
      font-size: .82rem;
      color: rgba(255,255,255,.5);
      letter-spacing: .04em;
    }

    /* Scroll indicator */
    .hero__scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.3);
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .hero__scroll .arrow {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
      animation: scrollDown 1.8s infinite;
    }
    @keyframes scrollDown {
      0% { opacity: 0; transform: translateY(-10px); }
      50% { opacity: 1; }
      100% { opacity: 0; transform: translateY(10px); }
    }

    /* ===== SECTION COMMONS ===== */
    .section { padding: 100px 0; }
    .section--dark { background: var(--ink); color: var(--white); }
    .section--accent { background: var(--accent); color: var(--white); }
    .section--alt { background: #eeecea; }

    .section__head { margin-bottom: 64px; }
    .section__head.center { text-align: center; }

    /* ===== BENEFICII ===== */
    .benefits__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .benefit-card {
      background: var(--white);
      border-radius: var(--rad);
      padding: 36px 32px;
      border: 1px solid var(--border);
      transition: box-shadow .25s, transform .25s;
    }
    .benefit-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.09); transform: translateY(-4px); }

    .benefit-card__icon {
      width: 52px; height: 52px;
      background: var(--ink);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
    }
    .benefit-card h3 { margin-bottom: 10px; }
    .benefit-card p { color: var(--muted); font-size: .92rem; line-height: 1.6; }

    /* ===== SERVICII ===== */
    .services__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 16px;
      background: transparent;
      border-radius: var(--rad);
      overflow: visible;
    }
    .service-item {
      background: rgba(255,255,255,.05);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--rad);
      padding: 44px 36px;
      transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
      position: relative;
      overflow: hidden;
    }
    .service-item:hover {
      background: rgba(255,255,255,.09);
      border-color: rgba(232,67,10,.45);
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(232,67,10,.15);
    }
    .service-item::after {
      content: attr(data-num);
      position: absolute;
      top: -10px;
      right: 24px;
      font-family: var(--font-head);
      font-size: 5rem;
      font-weight: 800;
      color: rgba(255,255,255,.04);
      line-height: 1;
      pointer-events: none;
    }
    .service-item__tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(232,67,10,.18);
      color: var(--accent2);
      border-radius: 50px;
      padding: 4px 12px;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .service-item h3 { color: var(--white); margin-bottom: 14px; }
    .service-item p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.65; margin-bottom: 24px; }
    .service-item__result {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #4ade80;
      font-size: .82rem;
      font-weight: 500;
    }

    /* ===== PROIECTE ===== */
    .projects__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 28px;
    }
    .project-card {
      border-radius: var(--rad);
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--border);
      transition: box-shadow .25s, transform .25s;
    }
    .project-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.12); transform: translateY(-6px); }

    .project-card__header {
      padding: 48px 40px 40px;
      position: relative;
    }
    .project-card__header--jobs { background: linear-gradient(135deg, #0f172a, #1e3a5f); }
    .project-card__header--pixera { background: linear-gradient(135deg, #1a0a00, #4a1a00); }

    .project-card__logo {
      font-family: var(--font-head);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 10px;
    }
    .project-card__logo span { color: var(--accent); }

    .project-card__badge {
      display: inline-block;
      background: rgba(255,255,255,.12);
      color: rgba(255,255,255,.8);
      font-size: .72rem;
      padding: 4px 12px;
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,.15);
      letter-spacing: .06em;
    }

    .project-card__body { padding: 32px 40px 36px; }
    .project-card__body h3 { margin-bottom: 12px; }
    .project-card__body p { color: var(--muted); font-size: .9rem; line-height: 1.65; margin-bottom: 24px; }

    .project-card__features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 28px;
    }
    .project-card__features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .88rem;
      color: var(--ink-soft);
    }
    .project-card__features li::before {
      content: '✓';
      width: 20px; height: 20px;
      background: rgba(232,67,10,.1);
      color: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .7rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ===== DE CE NOI ===== */
    .why__layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .why__list { list-style: none; display: flex; flex-direction: column; gap: 28px; }
    .why__item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .why__item-icon {
      width: 44px; height: 44px;
      background: var(--accent);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .why__item-text h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--white); }
    .why__item-text p { font-size: .88rem; color: rgba(255,255,255,.55); }

    .why__visual {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--rad);
      padding: 40px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .why__metric {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px;
      background: rgba(255,255,255,.06);
      border-radius: var(--rad-sm);
    }
    .why__metric-label { font-size: .88rem; color: rgba(255,255,255,.6); }
    .why__metric-value {
      font-family: var(--font-head);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--white);
    }
    .why__metric-value .up { color: #4ade80; font-size: .78rem; margin-left: 6px; }

    @media (max-width: 860px) {
      .why__layout { grid-template-columns: 1fr; gap: 48px; }
    }

    /* ===== TESTIMONIALE ===== */
    .testimonials__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }
    .testi-card {
      background: var(--white);
      border-radius: var(--rad);
      padding: 36px 32px;
      border: 1px solid var(--border);
      position: relative;
    }
    .testi-card__quote {
      font-size: 3rem;
      line-height: 1;
      color: var(--accent);
      font-family: var(--font-head);
      font-weight: 800;
      margin-bottom: 16px;
    }
    .testi-card p {
      font-size: .92rem;
      color: var(--ink-soft);
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .testi-card__author { display: flex; align-items: center; gap: 14px; }
    .testi-card__avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: .9rem;
      color: var(--white);
    }
    .testi-card__name { font-weight: 600; font-size: .92rem; }
    .testi-card__role { font-size: .78rem; color: var(--muted); }
    .testi-card__stars { color: var(--gold); font-size: .85rem; margin-bottom: 4px; }

    /* ===== FAQ ===== */
    .faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--rad-sm);
      overflow: hidden;
    }
    .faq-item__question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 28px;
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 1rem;
      color: var(--ink);
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      gap: 16px;
      transition: color .2s;
    }
    .faq-item__question:hover { color: var(--accent); }
    .faq-item__icon {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--surface);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
      flex-shrink: 0;
      transition: transform .3s, background .2s;
    }
    .faq-item.open .faq-item__icon { transform: rotate(45deg); background: var(--accent); color: var(--white); }
    .faq-item__answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .3s;
    }
    .faq-item.open .faq-item__answer { max-height: 600px; }
    .faq-item__answer p {
      padding: 0 28px 24px;
      font-size: .92rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ===== CTA BAND ===== */
    .cta-band {
      background: var(--accent);
      padding: 80px 0;
      text-align: center;
    }
    .cta-band h2 { color: var(--white); margin-bottom: 16px; }
    .cta-band p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
    .cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ===== FOOTER ===== */
    .footer {
      background: #07080c;
      color: rgba(255,255,255,.55);
      padding: 80px 0 40px;
    }
    .footer__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }
    .footer__brand .logo {
      font-family: var(--font-head);
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 14px;
    }
    .footer__brand .logo span { color: var(--accent); }
    .footer__brand p { font-size: .88rem; line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
    .footer__contact { display: flex; flex-direction: column; gap: 8px; }
    .footer__contact a {
      color: rgba(255,255,255,.55);
      font-size: .88rem;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color .2s;
    }
    .footer__contact a:hover { color: var(--white); }

    .footer__col h4 {
      font-family: var(--font-head);
      font-size: .85rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer__col ul a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color .2s; }
    .footer__col ul a:hover { color: var(--white); }

    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,.07);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: .82rem;
    }
    .footer__bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
    .footer__bottom a:hover { color: var(--white); }

    /* ── Google Skillshop Certifications ── */
    .footer__certs {
      border-top: 1px solid rgba(255,255,255,.07);
      padding: 28px 0 24px;
      margin-bottom: 28px;
    }
    .footer__certs-label {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255,255,255,.25);
      margin-bottom: 14px;
      font-family: var(--font-head);
    }
    .footer__certs-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    .cert-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 50px;
      padding: 7px 15px 7px 8px;
      text-decoration: none;
      transition: background .22s, border-color .22s, transform .22s, box-shadow .22s;
    }
    .cert-badge:hover {
      background: rgba(232,67,10,.12);
      border-color: rgba(232,67,10,.35);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(232,67,10,.15);
    }
    .cert-badge__icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .cert-badge__icon svg { width: 14px; height: 14px; }
    .cert-badge__text {
      display: flex;
      flex-direction: column;
      line-height: 1.25;
    }
    .cert-badge__name {
      font-family: var(--font-head);
      font-size: .76rem;
      font-weight: 700;
      color: rgba(255,255,255,.85);
      white-space: nowrap;
    }
    .cert-badge__meta {
      font-size: .63rem;
      color: rgba(255,255,255,.3);
      white-space: nowrap;
    }
    .cert-badge__check {
      color: #4ade80;
      font-size: .65rem;
      font-weight: 700;
      margin-left: 3px;
    }

    @media (max-width: 860px) {
      .footer__grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 520px) {
      .footer__grid { grid-template-columns: 1fr; }
    }

    /* ===== DUAL BTN BAR ===== */
    .dual-btn-bar {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      display: flex;
      align-items: center;
      background: #111;
      border-radius: 100px;
      box-shadow: 0 8px 40px rgba(0,0,0,.38), 0 2px 8px rgba(0,0,0,.2);
      overflow: hidden;
      height: 54px;
      min-width: 300px;
      max-width: 420px;
      width: calc(100vw - 32px);
    }
    .dual-btn-call,
    .dual-btn-wa {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 20px;
      height: 100%;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: .88rem;
      white-space: nowrap;
      transition: background .2s, opacity .2s;
      text-decoration: none;
      flex: 1;
      justify-content: center;
    }
    .dual-btn-call {
      background: var(--accent);
      color: #fff;
      border-radius: 100px 0 0 100px;
    }
    .dual-btn-call:hover { background: var(--accent2); }
    .dual-btn-call svg {
      width: 15px; height: 15px;
      fill: #fff;
      flex-shrink: 0;
    }
    .dual-btn-wa {
      background: #25D366;
      color: #fff;
      border-radius: 0 100px 100px 0;
    }
    .dual-btn-wa:hover { background: #1fba59; }
    .dual-btn-wa svg {
      width: 16px; height: 16px;
      fill: #fff;
      flex-shrink: 0;
    }
    .dual-btn-middle {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 10px;
      height: 100%;
      background: #111;
      flex-shrink: 0;
    }
    .dual-btn-domain {
      font-family: var(--font-head);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: -.01em;
      white-space: nowrap;
    }
    .dual-btn-domain .px { color: #fff; }
    .dual-btn-domain .dot-ro { color: var(--accent); }

    @media (max-width: 380px) {
      .dual-btn-bar { min-width: unset; width: calc(100vw - 24px); }
      .dual-btn-call, .dual-btn-wa { font-size: .75rem; padding: 0 10px; gap: 5px; }
      .dual-btn-call svg, .dual-btn-wa svg { width: 13px; height: 13px; }
    }

    /* ===== UTILITIES ===== */
    .mt-4 { margin-top: 16px; }
    .mt-8 { margin-top: 32px; }
    .text-center { text-align: center; }
    .text-muted { color: var(--muted); }

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

    .hero .container > * {
      animation: fadeUp .8s both;
    }
    .hero .container > *:nth-child(1) { animation-delay: .1s; }
    .hero .container > *:nth-child(2) { animation-delay: .25s; }
    .hero .container > *:nth-child(3) { animation-delay: .4s; }
    .hero .container > *:nth-child(4) { animation-delay: .55s; }
    .hero .container > *:nth-child(5) { animation-delay: .7s; }

    /* ===== RESPONSIVE ===== */

    /* ── Global overflow fix ── */
    html, body {
      overflow-x: hidden;
      max-width: 100%;
    }
    * { max-width: 100%; }
    img, svg { max-width: 100%; }

    .container {
      width: 100%;
      padding: 0 20px;
    }

    /* Social top bar */
    .social-top-bar {
      background: #111;
      border-bottom: 1px solid rgba(232,67,10,0.15);
      padding: 0.5rem 2rem;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 1.2rem;
    }
    .social-top-bar a {
      color: rgba(255,255,255,0.45);
      transition: color 0.2s;
      text-decoration: none;
      display: flex;
      align-items: center;
    }
    .social-top-bar a:hover { color: #e8430a; }

    /* Final CTA buttons */
    .final-cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn {
      white-space: nowrap;
      max-width: 100%;
    }

    /* ── Tablet (≤ 960px) ── */
    @media (max-width: 960px) {
      .why__layout { grid-template-columns: 1fr; gap: 40px; }
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .hero__stats { gap: 24px; flex-wrap: wrap; }
      .stat__number { font-size: 1.8rem; }
    }

    /* ── Mobile (≤ 640px) ── */
    @media (max-width: 640px) {

      /* Sections */
      .section { padding: 56px 0; }
      .section__head { margin-bottom: 36px; }
      .container { padding: 0 16px; }

      /* Navbar */
      .nav__inner { padding: 12px 16px; }
      .nav__logo { font-size: 1.2rem; }
      .nav__links { display: none; }
      .nav__social { gap: 14px; }
      .nav__social svg { width: 15px; height: 15px; }

      /* Hero */
      .hero { padding: 96px 0 90px; min-height: auto; }
      .hero__eyebrow { font-size: .66rem; padding: 5px 12px; white-space: normal; text-align: center; }
      .hero h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); word-break: break-word; hyphens: auto; }
      .hero__sub { font-size: .9rem; }
      .hero__stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .stat__number { font-size: 1.5rem; }
      .stat__label { font-size: .72rem; }

      /* Headings */
      h2 { font-size: clamp(1.4rem, 5.5vw, 1.8rem); word-break: break-word; }
      h3 { font-size: 1rem; }

      /* Benefits */
      .benefits__grid { grid-template-columns: 1fr; gap: 14px; }
      .benefit-card { padding: 24px 20px; }
      .benefit-card__icon { width: 44px; height: 44px; font-size: 1.2rem; }

      /* Services */
      .services__grid { grid-template-columns: 1fr; gap: 12px; }
      .service-item { padding: 32px 22px; }
      .service-item::after { display: none; }
      .service-item:hover { transform: none; }

      /* Projects */
      .projects__grid { grid-template-columns: 1fr; gap: 16px; }
      .project-card__header { padding: 32px 24px 24px; }
      .project-card__body { padding: 22px 24px 24px; }
      .project-card__logo { font-size: 1.4rem; }

      /* Why */
      .why__layout { grid-template-columns: 1fr; gap: 32px; }
      .why__visual { padding: 24px 18px; gap: 12px; }
      .why__metric { padding: 12px 14px; flex-wrap: wrap; gap: 4px; }
      .why__metric-label { font-size: .78rem; }
      .why__metric-value { font-size: .95rem; }
      .why__item { gap: 14px; }
      .why__item-icon { width: 38px; height: 38px; font-size: .95rem; flex-shrink: 0; }

      /* Testimonials */
      .testimonials__grid { grid-template-columns: 1fr; gap: 14px; }
      .testi-card { padding: 24px 20px; }
      .testi-card p { font-size: .88rem; }

      /* FAQ */
      .faq-item__question { padding: 16px 18px; font-size: .88rem; gap: 10px; }
      .faq-item__icon { width: 24px; height: 24px; flex-shrink: 0; }
      .faq-item__answer p { padding: 0 18px 18px; font-size: .88rem; }

      /* CTA band */
      .cta-band { padding: 52px 0; }
      .cta-band h2 { font-size: 1.5rem; }
      .cta-band p { font-size: .92rem; }
      .cta-band__btns { flex-direction: column; align-items: stretch; gap: 10px; }
      .cta-band__btns .btn { width: 100%; justify-content: center; }

      /* Final CTA dark section */
      .final-cta-btns { flex-direction: column; align-items: stretch; }
      .final-cta-btns .btn { width: 100%; justify-content: center; }

      /* Footer */
      .footer { padding: 48px 0 28px; }
      .footer__grid { grid-template-columns: 1fr; gap: 28px; }
      .footer__brand p { max-width: 100%; }
      .footer__bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
      }
      .footer__bottom div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
      }

      /* Dual btn bar */
      .dual-btn-bar {
        width: calc(100vw - 20px);
        min-width: unset;
        height: 50px;
        bottom: 14px;
      }
      .dual-btn-call,
      .dual-btn-wa { font-size: .8rem; padding: 0 14px; gap: 6px; }
      .dual-btn-call svg,
      .dual-btn-wa svg { width: 14px; height: 14px; }
      .dual-btn-domain { font-size: .72rem; }
      .dual-btn-middle { padding: 0 8px; }
    }

    /* ── Small phones (≤ 390px) ── */
    @media (max-width: 390px) {
      .hero h1 { font-size: 1.65rem; }
      .hero__eyebrow { display: none; }
      .dual-btn-call, .dual-btn-wa { padding: 0 12px; font-size: .76rem; gap: 5px; }
      .nav__social { gap: 10px; }
      /* Hide social icons on smallest screens to keep navbar clean */
    }

    @media (max-width: 340px) {
      .nav__social { display: none; }
    }
    .scroll-line {
      position: fixed;
      bottom: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      transition: width .08s linear;
      z-index: 9999;
    }
  

/* WordPress/Elementor compatibility */
html, body { margin:0 !important; padding:0 !important; overflow-x:hidden; }
body.pwi-theme, .elementor-page { background:#0a0b0f; }
.pwi-page-wrapper .elementor-widget-html, .pwi-page-wrapper .elementor-widget-container { margin:0 !important; padding:0 !important; }
.pwi-page-wrapper .elementor-section, .pwi-page-wrapper .elementor-column, .pwi-page-wrapper .elementor-widget-wrap { padding:0 !important; margin:0 !important; }
.pwi-page-wrapper .elementor-widget:not(:last-child){margin-bottom:0!important;}
.admin-bar .nav { top:32px; }
@media(max-width:782px){ .admin-bar .nav{top:46px;} }
.elementor-editor-active .dual-btn-bar{display:none!important;}
.elementor-editor-active .nav{position:relative!important;top:auto!important;}
.elementor-editor-active .hero{padding-top:120px!important;}
.pwi-edit-note{background:#fff3cd;color:#111;padding:12px 18px;font-family:Arial,sans-serif;font-size:14px;border-left:4px solid #e8430a}
