
    :root{
      --bg: #0b0b0d;
      --surface: rgba(255,255,255,0.06);
      --surface-2: rgba(255,255,255,0.10);
      --card: rgba(255,255,255,0.08);
      --stroke: rgba(255,255,255,0.12);

      --text: rgba(255,255,255,0.92);
      --muted: rgba(255,255,255,0.72);

      --accent: #682f2f;
      --accent-2: #d36a6a;
      --black: #000;

      --radius-xl: 22px;
      --radius-lg: 18px;
      --radius-md: 14px;

      --shadow-lg: 0 18px 60px rgba(0,0,0,0.45);
      --shadow-md: 0 14px 34px rgba(0,0,0,0.25);

      --container: 1150px;
    }

    *{ box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      color: #111;
      background: radial-gradient(1200px 700px at 15% 10%, rgba(104,47,47,0.20), transparent 55%),
                  radial-gradient(900px 600px at 85% 20%, rgba(255,255,255,0.06), transparent 60%),
                  linear-gradient(180deg, #0a0a0c 0%, #0c0c10 50%, #09090b 100%);
      overflow-x: hidden;
    }

    /* Accessibility focus */
    a, button, [role="button"] { outline: none; }
    a:focus-visible, button:focus-visible {
      box-shadow: 0 0 0 4px rgba(211,106,106,0.30);
      border-radius: 10px;
    }

    /* Smooth entrance animations */
    @media (prefers-reduced-motion: reduce){
      * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    }

    h1, h2, h3, .title, .btn {
      font-weight: 800;
      letter-spacing: 0.3px;
    }

    /* Utility container */
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Subtle floating background orbs */
    .orb {
      position: absolute;
      border-radius: 999px;
      filter: blur(40px);
      opacity: 0.65;
      pointer-events: none;
      mix-blend-mode: screen;
      animation: floaty 10s ease-in-out infinite;
    }
    .orb.one { width: 320px; height: 320px; left: -120px; top: 90px; background: rgba(104,47,47,0.55); }
    .orb.two { width: 260px; height: 260px; right: -100px; top: 180px; background: rgba(255,255,255,0.10); animation-duration: 12s; }
    .orb.three { width: 260px; height: 260px; left: 10%; bottom: -140px; background: rgba(211,106,106,0.25); animation-duration: 14s; }

    @keyframes floaty{
      0%,100%{ transform: translateY(0) translateX(0) scale(1); }
      50%{ transform: translateY(-18px) translateX(10px) scale(1.05); }
    }

    /* =========================
       HEADER (sticky + glass)
       ========================= */
    header {
      position: sticky;
      top: 0;
      z-index: 999;
      padding: 14px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;

      background: rgba(10,10,12,0.55);
      border-bottom: 1px solid rgba(255,255,255,0.10);
      backdrop-filter: blur(12px);
    }

    header h2 {
      margin: 0;
      color: #fff;
      font-size: 18px;
      letter-spacing: 0.7px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    header h2::before{
      content: "";
      width: 10px; height: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent-2), var(--accent));
      box-shadow: 0 0 0 6px rgba(104,47,47,0.18);
    }

    nav {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      align-items: center;
    }

    nav a {
      color: rgba(255,255,255,0.90);
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      padding: 10px 10px;
      border-radius: 10px;
      transition: transform .2s ease, background .2s ease, color .2s ease;
    }

    nav a:hover {
      background: rgba(255,255,255,0.08);
      transform: translateY(-1px);
      color: #fff;
    }

    /* Hamburger */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 22px;
      cursor: pointer;
      border-radius: 10px;
      padding: 6px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
    }

    .menu-toggle span {
      display: block;
      height: 3px;
      background: #fff;
      border-radius: 10px;
      transition: all 0.3s;
      transform-origin: left center;
    }

    @media (max-width: 880px) {
      header { padding: 14px 16px; }
      nav {
        position: fixed;
        top: 0;
        right: -290px;
        width: 260px;
        height: 100%;
        background: rgba(10,10,12,0.86);
        border-left: 1px solid rgba(255,255,255,0.10);
        backdrop-filter: blur(14px);
        flex-direction: column;
        gap: 14px;
        padding: 86px 18px 18px;
        transition: right 0.3s ease;
        z-index: 1000;
      }
      nav a { font-size: 16px; width: 100%; }
      nav.active { right: 0; }
      .menu-toggle { display: flex; }
    }

    /* =========================
       BUTTONS (premium)
       ========================= */
    .btn {
      padding: 12px 20px;
      background: linear-gradient(135deg, var(--accent), #000);
      color: #fff;
      font-weight: 800;
      border-radius: 14px;
      text-decoration: none;
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.28);
      border: 1px solid rgba(255,255,255,0.10);
      position: relative;
      overflow: hidden;
      will-change: transform;
    }

    .btn::after{
      content:"";
      position:absolute;
      inset:-40%;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 40%);
      transform: translateX(-30%);
      opacity: 0;
      transition: opacity .25s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.02);
      box-shadow: 0 16px 30px rgba(0,0,0,0.35);
    }
    .btn:hover::after{ opacity: 1; }

    .btn.secondary {
      background: rgba(255,255,255,0.08);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow: none;
    }
    .btn.secondary:hover{
      background: rgba(255,255,255,0.12);
      box-shadow: 0 12px 24px rgba(0,0,0,0.25);
    }

    /* small helper */
    .btn.sm { padding: 10px 14px; border-radius: 12px; font-size: 13px; }

    /* =========================
       HERO (new premium look)
       ========================= */
    .cobra-hero {
      position: relative;
      padding: 92px 0 46px;
      color: #fff;
    }

    .cobra-hero-wrap {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 34px;
      align-items: center;
    }

    .cobra-hero-left { min-width: 0; }
    .cobra-hero-right { min-width: 0; position: relative; }

    .cobra-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      color: rgba(255,255,255,0.92);
      font-weight: 800;
      letter-spacing: 0.35px;
      margin-bottom: 16px;
      backdrop-filter: blur(10px);
      transform: translateY(10px);
      opacity: 0;
      animation: fadeUp .7s ease forwards;
    }

    .cobra-hero h1 {
      font-size: 58px;
      line-height: 1.02;
      margin: 0 0 14px;
      color: #fff;
      letter-spacing: 0.2px;
      transform: translateY(12px);
      opacity: 0;
      animation: fadeUp .8s ease .08s forwards;
    }

    .cobra-hero p {
      font-size: 16px;
      line-height: 1.85;
      color: rgba(255,255,255,0.80);
      margin: 0 0 14px;
      transform: translateY(12px);
      opacity: 0;
      animation: fadeUp .85s ease .12s forwards;
    }

    .hero-actions{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 18px;
      transform: translateY(10px);
      opacity: 0;
      animation: fadeUp .9s ease .18s forwards;
    }

    .cobra-links {
      font-size: 13px;
      color: rgba(255,255,255,0.72);
      line-height: 1.8;
      margin-top: 16px;
      transform: translateY(10px);
      opacity: 0;
      animation: fadeUp .9s ease .22s forwards;
    }

    .cobra-links a {
      color: #fff;
      text-decoration: none;
      border-bottom: 1px dashed rgba(211,106,106,0.65);
      transition: 0.25s;
    }
    .cobra-links a:hover { color: var(--accent-2); border-bottom-color: var(--accent-2); }

    @keyframes fadeUp{
      to { transform: translateY(0); opacity: 1; }
    }

    /* hero right card */
    .cobra-hero-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.06));
      border-radius: var(--radius-xl);
      padding: 22px;
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: var(--shadow-lg);
      backdrop-filter: blur(12px);
      transform: translateY(14px);
      opacity: 0;
      animation: fadeUp .9s ease .18s forwards;
      position: relative;
      overflow: hidden;
    }

    .cobra-hero-card::before{
      content:"";
      position:absolute;
      inset:-1px;
      background:
        radial-gradient(600px 220px at 20% 10%, rgba(211,106,106,0.22), transparent 55%),
        radial-gradient(600px 220px at 80% 0%, rgba(255,255,255,0.12), transparent 60%);
      pointer-events:none;
      opacity: 0.9;
    }

    .cobra-hero-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .cobra-hero-card-top h3 {
      margin: 0;
      color: #fff;
      font-size: 16px;
      letter-spacing: 0.3px;
    }

    .cobra-pulse {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent-2);
      box-shadow: 0 0 0 0 rgba(211,106,106,0.55);
      animation: pulse 1.6s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(211,106,106,0.55); }
      70% { box-shadow: 0 0 0 14px rgba(211,106,106,0); }
      100% { box-shadow: 0 0 0 0 rgba(211,106,106,0); }
    }

    .cobra-mini-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
      margin-top: 14px;
      position: relative;
      z-index: 1;
    }

    .cobra-mini {
      border-radius: var(--radius-lg);
      padding: 14px 14px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.07);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }
    .cobra-mini:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      background: rgba(255,255,255,0.10);
    }

    .cobra-mini i {
      font-size: 22px;
      color: var(--accent-2);
      margin-bottom: 8px;
    }

    .cobra-mini h4 {
      margin: 0 0 6px;
      color: #fff;
      font-size: 14px;
      font-weight: 800;
    }

    .cobra-mini p {
      margin: 0;
      font-size: 12.5px;
      line-height: 1.6;
      color: rgba(255,255,255,0.76);
    }

    @media (max-width: 980px) {
      .cobra-hero-wrap { grid-template-columns: 1fr; }
      .cobra-hero h1 { font-size: 48px; }
    }
    @media (max-width: 520px) {
      .cobra-mini-grid { grid-template-columns: 1fr; }
      .cobra-hero h1 { font-size: 42px; }
    }

    /* =========================
       SECTION SHELL
       ========================= */
    section { position: relative; }

    .section-head{
      text-align:center;
      padding: 10px 0 28px;
    }
    .section-head h2{
      margin:0 0 10px;
      color:#fff;
      font-size: 30px;
    }
    .section-head p{
      margin: 0 auto;
      max-width: 920px;
      color: rgba(255,255,255,0.74);
      line-height: 1.85;
      font-size: 15px;
    }

    /* =========================
       FEATURE STRIP (upgraded)
       ========================= */
    .cobra-strip {
      padding: 54px 0;
    }

    .cobra-strip-wrap {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
    }

    .cobra-strip-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-xl);
      padding: 18px 16px;
      backdrop-filter: blur(10px);
      transition: transform .25s ease, background .25s ease;
      opacity: 0;
      transform: translateY(12px);
    }
    .cobra-strip-card.is-inview{
      opacity: 1;
      transform: translateY(0);
      transition: transform .5s ease, opacity .5s ease, background .25s ease;
    }
    .cobra-strip-card:hover {
      transform: translateY(-6px);
      background: rgba(255,255,255,0.10);
    }

    .cobra-strip-card i {
      font-size: 26px;
      margin-bottom: 10px;
      color: var(--accent-2);
    }

    .cobra-strip-card h3 {
      color: #fff;
      margin: 0 0 8px;
      font-size: 16px;
      font-weight: 900;
    }

    .cobra-strip-card p {
      margin: 0;
      color: rgba(255,255,255,0.76);
      line-height: 1.7;
      font-size: 13.5px;
    }

    /* =========================
       PRODUCT / PANEL sections
       ========================= */
    .product-showcase {
      padding: 58px 0;
    }

    .product-container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: center;
    }

    .product-image img {
      width: 100%;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: var(--shadow-md);
      transition: transform 0.35s ease;
    }
    .product-image img:hover { transform: scale(1.03); }

    .product-info h2 {
      font-size: 30px;
      margin: 0 0 10px;
      color: #fff;
    }

    .product-info p {
      font-size: 15px;
      line-height: 1.85;
      margin: 0 0 16px;
      color: rgba(255,255,255,0.76);
    }

    .product-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

    @media (max-width: 900px) {
      .product-container { grid-template-columns: 1fr; text-align: left; }
    }

    /* =========================
       PREMIUM "STATS" SECTION (NEW)
       ========================= */
    .stats {
      padding: 34px 0 6px;
    }

    .stats-grid{
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 12px;
    }

    .stat{
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-xl);
      padding: 16px 14px;
      backdrop-filter: blur(10px);
      transition: transform .25s ease, background .25s ease;
      opacity: 0;
      transform: translateY(10px);
    }

    .stat.is-inview{ opacity:1; transform: translateY(0); transition: transform .5s ease, opacity .5s ease; }

    .stat:hover{ transform: translateY(-6px); background: rgba(255,255,255,0.10); }

    .stat .k{
      font-size: 22px;
      font-weight: 900;
      color: #fff;
      letter-spacing: .2px;
    }
    .stat .t{
      font-size: 12.5px;
      color: rgba(255,255,255,0.72);
      margin-top: 6px;
      line-height: 1.5;
    }

    @media(max-width: 900px){
      .stats-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
    }
    @media(max-width: 480px){
      .stats-grid{ grid-template-columns: 1fr; }
    }

    /* =========================
       PRICING (upgraded)
       ========================= */
    .pricing-section{
      padding: 58px 0;
    }

    .pricing-container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
      display:flex;
      flex-wrap:wrap;
      gap:16px;
      justify-content:center;
    }

    .pricing-card {
      background: rgba(255,255,255,0.06);
      border-radius: var(--radius-xl);
      padding: 28px 22px;
      text-align: left;
      flex: 1 1 260px;
      max-width: 340px;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 14px 34px rgba(0,0,0,0.24);
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(12px);
      backdrop-filter: blur(12px);
    }

    .pricing-card.is-inview{
      opacity: 1;
      transform: translateY(0);
      transition: transform .55s ease, opacity .55s ease, box-shadow .3s ease, background .3s ease;
    }

    .pricing-card:hover {
      transform: translateY(-8px);
      background: rgba(255,255,255,0.10);
      box-shadow: 0 18px 45px rgba(0,0,0,0.30);
    }

    .pricing-card.popular {
      border-color: rgba(211,106,106,0.35);
    }

    .pricing-card.popular::before {
      content: "Most Popular";
      position: absolute;
      top: 14px;
      right: 14px;
      background: linear-gradient(135deg, var(--accent), #000);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: 0 10px 22px rgba(0,0,0,0.25);
    }

    .pricing-card h3 {
      font-size: 18px;
      color: #fff;
      margin: 0 0 10px;
      font-weight: 900;
    }

    .pricing-card .price {
      font-size: 34px;
      font-weight: 900;
      color: #fff;
      margin: 0 0 12px;
      letter-spacing: 0.2px;
    }

    .pricing-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 18px;
      color: rgba(255,255,255,0.78);
    }

    .pricing-card ul li {
      margin: 10px 0;
      font-size: 14px;
      line-height: 1.6;
      display:flex;
      gap:10px;
      align-items:flex-start;
    }

    .pricing-card ul li::before{
      content:"✓";
      color: var(--accent-2);
      font-weight: 900;
      line-height: 1.2;
      margin-top: 2px;
    }

    /* =========================
       TESTIMONIALS (NEW)
       ========================= */
    .testimonials{
      padding: 54px 0;
    }

    .t-grid{
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
    }

    .t-card{
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-xl);
      padding: 18px 16px;
      backdrop-filter: blur(10px);
      transition: transform .25s ease, background .25s ease;
      opacity: 0;
      transform: translateY(12px);
    }

    .t-card.is-inview{ opacity:1; transform: translateY(0); transition: transform .55s ease, opacity .55s ease; }

    .t-card:hover{ transform: translateY(-6px); background: rgba(255,255,255,0.10); }

    .t-top{
      display:flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }

    .t-name{
      color:#fff;
      font-weight: 900;
      font-size: 14px;
    }

    .t-stars{
      color: rgba(255,255,255,0.85);
      font-size: 12px;
      letter-spacing: 1px;
      white-space: nowrap;
    }

    .t-text{
      margin:0;
      color: rgba(255,255,255,0.76);
      line-height: 1.75;
      font-size: 13.5px;
    }

    @media(max-width: 980px){
      .t-grid{ grid-template-columns: 1fr; }
    }

    /* =========================
       FAQ (upgraded accordion)
       ========================= */
    .faq-section{
      padding: 58px 0;
    }

    .faq-container{
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .faq-item {
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.06);
      border-radius: var(--radius-xl);
      padding: 16px 16px;
      cursor: pointer;
      margin-bottom: 12px;
      transition: background .25s ease, transform .25s ease;
      backdrop-filter: blur(10px);
    }

    .faq-item:hover { transform: translateY(-3px); background: rgba(255,255,255,0.10); }

    .faq-question {
      font-weight: 900;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      font-size: 15px;
    }

    .faq-question .arrow {
      display: inline-flex;
      width: 34px;
      height: 34px;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      transition: transform .25s ease;
      font-size: 14px;
      flex: 0 0 auto;
    }

    .faq-item.active .arrow { transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height .35s ease, opacity .25s ease, margin-top .25s ease;
      color: rgba(255,255,255,0.76);
      line-height: 1.75;
      font-size: 14px;
      margin-top: 0;
    }

    .faq-item.active .faq-answer {
      max-height: 260px;
      opacity: 1;
      margin-top: 10px;
    }

    /* =========================
       FOOTER (premium)
       ========================= */
    footer {
      margin-top: 40px;
      background: rgba(0,0,0,0.35);
      border-top: 1px solid rgba(255,255,255,0.10);
      backdrop-filter: blur(10px);
      color: rgba(255,255,255,0.82);
      padding: 52px 0 18px;
    }

    .footer-wrapper {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 26px;
    }

    .footer-section h3 {
      font-size: 15px;
      font-weight: 900;
      margin: 0 0 12px;
      color: #fff;
    }

    .footer-section p,
    .footer-section a {
      font-size: 13.5px;
      color: rgba(255,255,255,0.72);
      line-height: 1.75;
      text-decoration: none;
      transition: 0.2s ease;
    }

    .footer-section a:hover { color: #fff; }

    .footer-section ul{ padding-left: 16px; margin: 10px 0 0; }
    .footer-section li{ margin: 8px 0; }

    .socials a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      margin-right: 10px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: #fff;
      font-size: 16px;
      transition: transform .2s ease, background .2s ease;
    }

    .socials a:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.14);
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      margin-top: 26px;
      padding-top: 14px;
      font-size: 12.5px;
      color: rgba(255,255,255,0.60);
    }

    /* =========================
       LINKS inside content
       ========================= */
    .inlink {
      color: #fff;
      text-decoration: none;
      border-bottom: 1px dashed rgba(211,106,106,0.65);
      transition: 0.25s;
    }
    .inlink:hover {
      color: var(--accent-2);
      border-bottom-color: var(--accent-2);
    }

    /* =========================
       FLOATING WHATSAPP CTA (NEW)
       ========================= */
    .floating-cta{
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 9999;
      display:flex;
      gap: 10px;
      align-items:center;
    }

    .fab-btn{
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display:flex;
      align-items:center;
      justify-content:center;
      background: linear-gradient(135deg, #1c7c4a, #0b3f24);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 16px 30px rgba(0,0,0,0.35);
      color:#fff;
      text-decoration:none;
      transition: transform .2s ease, filter .2s ease;
    }
    .fab-btn:hover{ transform: translateY(-2px); filter: brightness(1.05); }

    .fab-pill{
      display:none;
      padding: 10px 12px;
      border-radius: 16px;
      background: rgba(10,10,12,0.70);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      color: rgba(255,255,255,0.85);
      font-size: 13px;
      white-space: nowrap;
    }

    @media(min-width: 900px){
      .fab-pill{ display:block; }
    }

    /* =========================
       Reveal helper (JS toggles)
       ========================= */
    .reveal { opacity: 0; transform: translateY(12px); }
    .reveal.is-inview { opacity: 1; transform: translateY(0); transition: transform .55s ease, opacity .55s ease; }


  /* ✅ Mobile nav fix: proper drawer + overlay + animation */
  .site-header{
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 14px 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;

    background: rgba(10,10,12,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
  }

  .brand{
    margin:0;
    color:#fff;
    font-size:18px;
    display:flex;
    align-items:center;
    gap:10px;
    letter-spacing:.6px;
  }
  .brand::before{
    content:"";
    width:10px;height:10px;border-radius:999px;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    box-shadow: 0 0 0 6px rgba(104,47,47,0.18);
  }

  .nav-menu{
    display:flex;
    align-items:center;
    gap: 10px;
  }
  .nav-menu a{
    color: rgba(255,255,255,0.90);
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    padding:10px 10px;
    border-radius:12px;
    transition: transform .2s ease, background .2s ease, color .2s ease;
  }
  .nav-menu a:hover{
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
    color:#fff;
  }
  .nav-menu .nav-cta{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .menu-toggle{
    display:none; /* desktop hidden */
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    cursor:pointer;
    padding: 10px;
    align-items:center;
    justify-content:center;
    gap: 6px;
    flex-direction: column;
  }
  .menu-toggle span{
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background:#fff;
    transition: transform .25s ease, opacity .25s ease;
    transform-origin: center;
  }

  /* overlay */
  .nav-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 998;
  }

  /* ✅ Mobile mode */
  @media (max-width: 880px){
    .menu-toggle{ display:flex; }

    .nav-menu{
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: min(86vw, 320px);
      padding: 86px 16px 16px;

      background: rgba(10,10,12,0.92);
      border-left: 1px solid rgba(255,255,255,0.10);
      backdrop-filter: blur(14px);

      display:flex;
      flex-direction: column;
      align-items: stretch;
      gap: 10px;

      transform: translateX(110%);
      transition: transform .28s ease;
      z-index: 999;
    }

    .nav-menu a{
      width: 100%;
      font-size: 16px;
      padding: 14px 12px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 16px;
    }

    /* open state */
    body.nav-open .nav-menu{ transform: translateX(0); }
    body.nav-open .nav-overlay{ opacity: 1; pointer-events: auto; }

    /* burger -> X */
    body.nav-open .menu-toggle span:nth-child(1){ transform: translateY(9px) rotate(45deg); }
    body.nav-open .menu-toggle span:nth-child(2){ opacity: 0; }
    body.nav-open .menu-toggle span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }
  }
