:root {
      --orange: #ff9700;
      --orange-dark: #f06600;
      --gold: #ffd469;
      --ink: #161616;
      --muted: #686868;
      --cream: #fff8ee;
      --line: #eadbc8;
      --card: #ffffff;
      --shadow: 0 18px 45px rgba(32, 20, 8, .14);
      --radius: 8px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    h1, h2, h3, h4, h5, h6, p, input, select, textarea, button, a, .aca-profile-name{font-family: 'Geist', sans-serif!important;}
    body {
      margin: 0;
      font-family: 'Geist', sans-serif!important;
      color: var(--ink);
      background: #fff;
      line-height: 1.5;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    .wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

    .topbar {
      background: #121212;
      color: #fff;
      font-size: 14px;
    }
    .topbar .wrap {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 9px 0;
      flex-wrap: wrap;
    }
    .topbar span { color: #f7d28c; }

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid rgba(0, 0, 0, .08);
      backdrop-filter: blur(10px);
    }
    .nav .wrap {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .logo { display: flex; align-items: center; gap: 12px; }
    .logo img { width: 300px; height: 70px; object-fit: contain; }
    .links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 24px;
      color: #262626;
      font-size: 15px;
      text-transform: capitalize;
      white-space: nowrap;
    }
    .links a:hover, .links a.active { color: var(--orange-dark); }
    .dropdown {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 78px;
    }
    .dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #262626;
      font: inherit;
      background: transparent;
      border: 0;
      padding: 0;
      cursor: pointer;
      text-transform: capitalize;
    }
    .dropdown-toggle::after {
      content: "";
      width: 7px;
      height: 7px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      margin-top: -4px;
    }
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      width: 220px;
      padding: 10px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transition: .18s ease;
    }
    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .dropdown-menu a {
      display: block;
      padding: 10px 12px;
      border-radius: 6px;
      color: #262626;
      white-space: normal;
    }
    .dropdown-menu a:hover {
      color: #fff;
      background: linear-gradient(180deg, var(--orange), var(--orange-dark));
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 22px;
      border: 0;
      border-radius: 6px;
      background: linear-gradient(180deg, var(--orange), var(--orange-dark));
      color: #fff;
      font-weight: 700;
      box-shadow: 0 10px 20px rgba(240, 102, 0, .28);
      cursor: pointer;
    }
    .btn.secondary {
      background: #171717;
      box-shadow: none;
    }

    .hero {
      background: #130b18;
      overflow: hidden;
    }
    .hero-slide {
      display: block;
    }
    .hero-banner-link {
      display: block;
    }
    .hero-banner-image {
      display: block;
      width: 100%;
      height: auto;
    }
    .eyebrow {
      display: inline-block;
      color: var(--gold);
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      font-size: 13px;
      margin-bottom: 12px;
    }
    h1, h2, h3, p { margin-top: 0; }
    h1 {
      font-size: clamp(44px, 6vw, 82px);
      line-height: 1.08;
      margin-bottom: 20px;
      max-width: 900px;
    }
    .hero p {
      font-size: clamp(18px, 2vw, 27px);
      max-width: 760px;
      margin-bottom: 34px;
      font-weight: 700;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .hero-actions .btn { min-width: 190px; min-height: 58px; font-size: 18px; }
    .play-badge {
      height: 58px;
      width: auto;
      border-radius: 6px;
    }

    .quick-strip {
      margin-top: -54px;
      position: relative;
      z-index: 5;
    }
    .quick-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: #fff;
      box-shadow: var(--shadow);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
    }
    .quick-item {
      min-height: 118px;
      padding: 22px;
      display: flex;
      align-items: center;
      gap: 16px;
      border-right: 1px solid var(--line);
    }
    .quick-item:last-child { border-right: 0; }
    .quick-item img { width: 58px; height: 58px; object-fit: contain; }
    .quick-item strong { display: block; font-size: 18px; }
    .quick-item span { color: var(--muted); font-size: 14px; }

    section { padding: 84px 0; }
    .section-head {
      text-align: center;
      width: min(760px, 100%);
      margin: 0 auto 42px;
    }
    .section-head h2 {
      font-size: clamp(30px, 4vw, 46px);
      margin-bottom: 8px;
      font-weight: 800;
    }
    .section-head img {
      width: 180px;
      margin: 0 auto 14px;
    }
    .section-head p { color: var(--muted); font-size: 17px; }

    .about {
      background: linear-gradient(180deg, #fff, var(--cream));
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 46px;
      align-items: center;
    }
    .about-copy h2 {
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.14;
      margin-bottom: 16px;
    }
    .about-copy p { color: #4e4e4e; font-size: 17px; }
    .about-points {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin: 26px 0;
    }
    .about-points div {
      padding: 14px 16px;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 6px;
      font-weight: 700;
    }
    .about-visual {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      min-height: 370px;
      background: #fff8ee;
    }
    .about-visual img {
      width: 100%;
      height: 100%;
      min-height: 370px;
      object-fit: cover;
    }

    .tools-grid,
    .services-grid,
    .astro-grid,
    .testimonial-grid {
      display: grid;
      gap: 22px;
    }
    .tools-grid { grid-template-columns: repeat(5, 1fr); }
    .tool-card {
      text-align: center;
      padding: 26px 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .tool-card img {
      width: 94px;
      height: 94px;
      object-fit: cover;
      border-radius: 50%;
      margin: 0 auto 18px;
      border: 4px solid #fff3d7;
    }
    .tool-card h3 { font-size: 18px; margin-bottom: 6px; }
    .tool-card p { color: var(--muted); font-size: 14px; margin-bottom: 0; }

    .services {
      background:
        linear-gradient(rgba(15, 12, 10, .86), rgba(15, 12, 10, .86)),
        url("../images/bg-footer.jpg") center / cover;
      color: #fff;
    }
    .services .section-head p { color: #f1d7b7; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .service-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: var(--radius);
      padding: 28px;
    }
    .service-card img { width: 74px; height: 74px; object-fit: contain; margin-bottom: 20px; }
    .service-card h3 { font-size: 22px; margin-bottom: 10px; }
    .service-card p { color: #f5dfc4; margin-bottom: 0; }

    .astro-grid { grid-template-columns: repeat(4, 1fr); }
    .astro-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0,0,0,.06);
    }
    .astro-card img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }
    .astro-card div { padding: 18px; }
    .astro-card h3 { font-size: 20px; margin-bottom: 4px; }
    .astro-card p { color: var(--muted); margin-bottom: 16px; font-size: 14px; }
    .rating { color: var(--orange-dark); font-weight: 800; font-size: 14px; }

    .app-band {
      padding: 0;
      background: var(--cream);
    }
    .app-card {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 34px;
      align-items: center;
      background: linear-gradient(120deg, rgba(255, 151, 0, .96), rgba(240, 102, 0, .94));
      color: #fff;
      border-radius: var(--radius);
      padding: 42px;
      box-shadow: var(--shadow);
    }
    .app-card h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 10px; }
    .app-card p { font-size: 18px; max-width: 620px; }
    .app-card .play-badge { height: 54px; }
    .contact-panel {
      background: rgba(0,0,0,.22);
      border: 1px solid rgba(255,255,255,.28);
      border-radius: var(--radius);
      padding: 28px;
    }
    .contact-panel strong { display: block; font-size: 24px; margin-bottom: 8px; }
    .contact-panel span { display: block; font-size: 18px; }

    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
    .quote {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px;
      background: #fff;
      box-shadow: 0 8px 24px rgba(0,0,0,.05);
    }
    .quote img {
      width: 74px;
      height: 74px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 16px;
    }
    .quote p { color: #505050; }
    .quote strong { color: var(--orange-dark); }

    footer {
      background:
        linear-gradient(rgba(0,0,0,.86), rgba(0,0,0,.9)),
        url("../images/bg-footer.jpg") center / cover;
      color: #f4f4f4;
      padding: 58px 0 26px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr 1fr 1fr 1fr;
      gap: 32px;
      margin-bottom: 34px;
    }
    footer img.logo-footer { width: 300px; height: 120px; object-fit: contain; margin-bottom: 18px; }
    footer h3 { color: var(--gold); font-size: 18px; margin-bottom: 14px; }
    footer p, footer li { color: #d8d8d8; font-size: 15px; }
    footer ul { list-style: none; margin: 0; padding: 0; }
    footer li { margin-bottom: 9px; }
    .copyright {
      border-top: 1px solid rgba(255,255,255,.15);
      padding-top: 20px;
      color: #bdbdbd;
      font-size: 14px;
      text-align: center;
    }

    .floating-whatsapp {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 30;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #26d366;
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 900;
      box-shadow: 0 10px 24px rgba(0,0,0,.25);
    }

    @media (max-width: 980px) {
      .links { display: none; }
      .quick-grid, .tools-grid, .services-grid, .astro-grid, .testimonial-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .about-grid, .app-card { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .topbar .wrap { justify-content: center; text-align: center; }
      .nav .wrap { min-height: 66px; }
      .logo img { width: 220px; height: 88px; }
      .quick-strip { margin-top: -28px; }
      .quick-grid, .tools-grid, .services-grid, .astro-grid, .testimonial-grid, .footer-grid, .about-points {
        grid-template-columns: 1fr;
      }
      .quick-item { border-right: 0; border-bottom: 1px solid var(--line); }
      .quick-item:last-child { border-bottom: 0; }
      section { padding: 62px 0; }
      .app-card { padding: 28px; }
      .hero-actions .btn { width: 100%; }
      .play-badge { height: 50px; }
    }
