:root {
  --ole-navy: #0b1c4e;
  --ole-navy-2: #081538;
  --ole-navy-3: #0c225c;
  --ole-blue: #2563eb;
  --ole-blue-500: #3b82f6;
  --ole-gold: #FFC94A;
  --ole-gold-soft: #FFD980;
  --ole-gold-deep: #E7A92A;

  --racik-primary: #FFC94A;
  --racik-primary-glow: rgba(255, 201, 74, 0.75);
  --racik-primary-soft: rgba(255, 201, 74, 0.14);
  --racik-bg: #081538;
  --racik-bg-2: #0b1c4e;
  --racik-bg-3: #0c225c;
  --racik-surface: linear-gradient(160deg, #163180 0%, #0b1c4e 50%, #081538 100%);
  --racik-card: linear-gradient(160deg, rgba(37, 99, 235, 0.14) 0%, rgba(11, 28, 78, 0.98) 45%, #081538 100%);
  --racik-border: rgba(255, 201, 74, 0.34);
  --racik-border-strong: rgba(255, 201, 74, 0.72);
  --racik-text: #F3F6FF;
  --racik-text-muted: #B5C2E8;
  --racik-gold: #FFC94A;
  --racik-red: #ff5470;
  --radius: 18px;
  --radius-lg: 24px;
  --pad-x: clamp(1rem, 3.5vw, 1.75rem);
  --safe-bottom: max(12px, env(safe-area-inset-bottom, 0px));
  --cta-clearance: max(6rem, calc(var(--safe-bottom) + 4.5rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 500;
  color: var(--racik-text);
  background: var(--racik-bg);
  background-image:
    radial-gradient(900px 500px at 10% -5%, rgba(37, 99, 235, 0.28), transparent 55%),
    radial-gradient(800px 460px at 100% 8%, rgba(255, 201, 74, 0.20), transparent 52%),
    radial-gradient(900px 520px at 50% 110%, rgba(37, 99, 235, 0.20), transparent 58%),
    linear-gradient(180deg, #081538 0%, #0b1c4e 40%, #081538 80%, #06102a 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-top: max(0, env(safe-area-inset-top));
  padding-left: max(0, env(safe-area-inset-left));
  padding-right: max(0, env(safe-area-inset-right));
  padding-bottom: calc(var(--cta-clearance) + max(0, env(safe-area-inset-bottom)));
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .75rem;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  word-break: break-word;
  overflow-wrap: anywhere;
}

p { margin: 0 0 1rem; color: var(--racik-text); }
a { color: var(--ole-gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: #FFE0A0; }
img { max-width: 100%; height: auto; display: block; }

.gradient-text {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFE3A0 35%, #FFC94A 65%, #E7A92A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 18px rgba(255, 201, 74, 0.32));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    radial-gradient(600px 180px at 50% -10%, rgba(255, 201, 74, 0.22), transparent 65%),
    linear-gradient(180deg, rgba(8, 21, 56, 0.98) 0%, rgba(11, 28, 78, 0.99) 100%);
  border-bottom: 2.5px solid var(--ole-gold);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.82),
    0 0 28px rgba(255, 201, 74, 0.25),
    inset 0 0 0 1px rgba(255, 201, 74, 0.18);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .75rem var(--pad-x);
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  flex-shrink: 0;
  order: 1;
}
.brand img {
  width: 160px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.7)) drop-shadow(0 0 12px rgba(255, 201, 74, 0.5));
  transition: transform .22s ease, filter .22s ease;
}
.brand:hover img { transform: scale(1.05); filter: drop-shadow(0 6px 20px rgba(0,0,0,0.7)) drop-shadow(0 0 22px rgba(255, 201, 74, 0.8)); }
.brand span {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .02em;
  display: none;
}

.main-nav {
  order: 3;
  flex: 1 1 100%;
  width: 100%;
  margin-top: .35rem;
  padding-top: .35rem;
  border-top: 1px solid rgba(255, 201, 74, 0.22);
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: .25rem 1rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-height: 0;
}
.main-nav ul::-webkit-scrollbar { display: none; }
.main-nav li { flex-shrink: 0; }
.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: .5rem .2rem;
  font-weight: 800;
  font-size: .9rem;
  color: var(--racik-text);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  text-shadow: 0 2px 5px rgba(0,0,0,0.9);
  transition: color .2s ease, border-color .2s ease, text-shadow .2s ease, transform .2s ease;
}
.main-nav a:hover {
  color: var(--ole-gold);
  border-bottom-color: var(--ole-gold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 14px rgba(255, 201, 74, 0.65);
  transform: translateY(-1px);
}

.nav-cta {
  display: flex;
  gap: .5rem;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
  order: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .7rem 1.1rem;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .22s ease, filter .22s ease;
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn:active { transform: translateY(0) scale(.97); }

.btn-primary {
  color: #1a1200;
  background: linear-gradient(160deg, #FFE7A8 0%, #FFC94A 45%, #E7A92A 100%);
  background-size: 200% 100%;
  border: 2.5px solid #FFF0C9;
  box-shadow:
    0 14px 40px rgba(255, 201, 74, 0.42),
    0 0 0 3px rgba(255, 201, 74, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -3px 0 rgba(120, 78, 10, 0.3);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: racik-sheen 2.8s linear infinite;
}

.btn-outline {
  color: var(--ole-gold);
  background: linear-gradient(160deg, rgba(11, 28, 78, 0.95) 0%, rgba(8, 21, 56, 0.98) 100%);
  border: 2.5px solid var(--ole-gold);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.72),
    0 0 0 2.5px rgba(255, 201, 74, 0.16),
    inset 0 1px 0 rgba(255, 201, 74, 0.18),
    inset 0 0 0 1px rgba(255, 201, 74, 0.1);
  text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 0 1px rgba(255,201,74,0.35);
}

.burger {
  display: none;
}

@keyframes racik-sheen {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes racik-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes racik-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes racik-spark {
  0%, 100% { filter: brightness(1) drop-shadow(0 1.5px 3px rgba(0,0,0,.42)) drop-shadow(0 0 2px rgba(255, 201, 74, .55)); }
  50% { filter: brightness(1.3) drop-shadow(0 1.5px 3px rgba(0,0,0,.45)) drop-shadow(0 0 10px rgba(255, 201, 74, .9)); }
}
@keyframes racik-ping {
  0% { box-shadow: 0 0 0 0 rgba(255, 201, 74, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255, 201, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 201, 74, 0); }
}
@keyframes racik-bounce {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-8px); }
  60% { transform: translateY(0); }
  75% { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.breadcrumb {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(8, 21, 56, 0.92));
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255, 201, 74, 0.18);
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--racik-text-muted);
  overflow: hidden;
}
.breadcrumb-inner a {
  color: var(--ole-gold);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
}
.breadcrumb-inner .sep { color: var(--ole-gold); font-weight: 800; flex-shrink: 0; }
.breadcrumb-inner .current {
  color: var(--racik-text);
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

main { max-width: 1200px; margin: 1.25rem auto; padding: 0 var(--pad-x); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  animation: racik-rise .55s ease both;
}
@media (max-width: 899px) {
  .hero { grid-template-columns: 1fr; }
}

.hero-card {
  position: relative;
  padding: 1.4rem 1.2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--racik-card);
  border: 2.2px solid var(--racik-border);
  box-shadow:
    0 34px 68px rgba(0, 0, 0, 0.78),
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 0 0 1px rgba(37, 99, 235, 0.18) inset;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  border-radius: inherit;
}
.hero-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 201, 74, 0.22), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin: 0 0 .45rem;
  color: var(--ole-gold);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ole-gold);
  box-shadow: 0 0 12px rgba(255, 201, 74, 0.9);
  animation: racik-ping 1.8s ease-out infinite;
}

.hero h1 {
  margin: 0 0 .55rem;
  font-size: clamp(1.8rem, 4.2vw, 2.5rem);
  letter-spacing: -0.015em;
}
.hero .hero-sub {
  margin: 0 0 .9rem;
  color: #d1dbf5;
  font-size: .96rem;
  line-height: 1.62;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1.1rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .36rem .72rem;
  border-radius: 999px;
  background: linear-gradient(155deg, rgba(37, 99, 235, 0.22) 0%, rgba(11, 28, 78, 0.82) 55%, rgba(8, 21, 56, 0.95) 100%);
  border: 1.8px solid rgba(255, 201, 74, 0.46);
  color: var(--racik-text);
  font-weight: 800;
  font-size: .74rem;
  box-shadow: 0 5px 14px rgba(0,0,0,0.52), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}
.trust-chip.gold {
  background: linear-gradient(155deg, #FFF6C8 0%, #FFC94A 45%, #C6A100 100%);
  border: 1.8px solid #E8C400;
  color: #3D2F00;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  box-shadow: 0 5px 14px rgba(255, 201, 74, 0.3), 0 1px 0 rgba(255,255,255,0.5) inset;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin: 0 0 1rem;
}
@media (max-width: 520px) {
  .cta-row { grid-template-columns: 1fr; }
}
.cta-row .btn { min-height: 56px; font-size: .96rem; }

.hero-media {
  position: relative;
  padding: 0;
  animation: racik-rise .65s ease .08s both;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 12% 10% 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 201, 74, 0.26), transparent 62%);
  filter: blur(28px);
  pointer-events: none;
}
.hero-media-wrap {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  border: 2.5px solid var(--racik-border-strong);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.78),
    0 0 0 3px rgba(255, 201, 74, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.hero-media-wrap img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}
.hero-media-square {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 32px;
  aspect-ratio: 1 / 1;
}
.hero-media-square img {
  aspect-ratio: 1 / 1;
  height: 100%;
}

.section-title {
  margin: 2.4rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.4vw, 2.05rem);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.section-title .chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .46rem .95rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #FFF6C8 0%, #FFE3A0 22%, #FFC94A 50%, #FFE3A0 80%, #FFF6C8 100%);
  background-size: 200% 100%;
  color: #3D2F00;
  border: 2px solid #FFEAB6;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .04em;
  box-shadow:
    0 8px 18px rgba(255, 201, 74, 0.45),
    0 0 0 2.5px rgba(255, 201, 74, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: racik-sheen 2.4s linear infinite;
}

.content-card {
  border-radius: var(--radius-lg);
  background: var(--racik-card);
  border: 2px solid rgba(255, 201, 74, 0.32);
  padding: 1.3rem 1.2rem;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.72),
    0 0 0 1.5px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(255, 201, 74, 0.08);
  animation: racik-rise .8s ease both;
}
.content-card h2 {
  margin-bottom: .85rem;
  font-size: clamp(1.45rem, 3vw, 1.8rem);
}
.content-card p {
  color: #dbe3fa;
  font-size: .95rem;
  line-height: 1.72;
}
.content-card p:last-child { margin-bottom: 0; }
.content-card .card-cta { margin-top: 1rem; }
.content-card.with-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
}
@media (max-width: 799px) {
  .content-card.with-image { grid-template-columns: 1fr; }
}
.content-card .card-img {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 201, 74, 0.45);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255,255,255,0.1);
}
.content-card .card-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.content-card .card-img figcaption {
  padding: .5rem .7rem;
  font-size: .78rem;
  color: var(--racik-text-muted);
  background: rgba(0,0,0,0.28);
  text-align: center;
  font-weight: 600;
  border-top: 1px solid rgba(255, 201, 74, 0.2);
}

.faq {
  margin-top: .35rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.faq-item {
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.10) 0%, rgba(11, 28, 78, 0.95) 100%);
  border: 1.8px solid rgba(255, 201, 74, 0.28);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  font: 800 .92rem/1.45 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  text-align: left;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s ease;
}
.faq-q:hover { background: rgba(255, 201, 74, 0.06); }
.faq-q .chev {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ole-gold);
  background: rgba(255, 201, 74, 0.1);
  border: 1.5px solid rgba(255, 201, 74, 0.35);
  transition: transform .22s ease, background .22s ease;
}
.faq-item.open .faq-q .chev { transform: rotate(45deg); background: rgba(255, 201, 74, 0.22); }
.faq-a {
  max-height: 9999px;
  overflow: hidden;
  transition: max-height .35s ease;
}
html.faq-ready .faq-a { max-height: 0; }
html.faq-ready .faq-item.open .faq-a { max-height: 9999px; }
.faq-a-inner {
  padding: 0 1.1rem 1.05rem;
  color: #d3ddf8;
  font-size: .92rem;
  line-height: 1.72;
}
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner .btn { margin-top: .6rem; }

.site-footer {
  margin-top: 3rem;
  padding: 2rem 0 1.5rem;
  background:
    radial-gradient(900px 320px at 50% 110%, rgba(255, 201, 74, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(8, 21, 56, 0.96) 0%, #06102a 100%);
  border-top: 2.5px solid rgba(255, 201, 74, 0.5);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.75);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.footer-col h4 {
  margin: 0 0 .6rem;
  font-size: .9rem;
  color: var(--ole-gold);
  letter-spacing: .03em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 0 0 .3rem; }
.footer-col a {
  color: var(--racik-text-muted);
  font-size: .86rem;
  font-weight: 600;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--ole-gold); }
.footer-brand {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.footer-brand img {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.65)) drop-shadow(0 0 12px rgba(255, 201, 74, 0.45));
}
.copyright {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 201, 74, 0.16);
  text-align: center;
  color: #9fb0dc;
  font-size: .82rem;
  font-weight: 600;
}
.copyright strong { color: var(--ole-gold); font-weight: 800; }

.fab {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
@media (max-width: 639px) {
  .fab { right: .8rem; bottom: 5.4rem; gap: .4rem; }
}
.fab .fab-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 64px; height: 64px;
  border-radius: 22px;
  background: linear-gradient(145deg, #163180 0%, #0b1c4e 45%, #FFC94A 100%);
  border: 3px solid #FFF0C9;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.78),
    0 0 0 5px rgba(255, 201, 74, 0.2),
    0 0 22px rgba(255, 201, 74, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -3px 0 rgba(0,0,0,0.25);
  cursor: pointer;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
  animation: racik-rise .6s ease .3s both, racik-bounce 2.6s ease-in-out 1.1s infinite;
}
.fab .fab-item:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.85),
    0 0 0 6px rgba(255, 201, 74, 0.28),
    0 0 30px rgba(255, 201, 74, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -3px 0 rgba(0,0,0,0.22);
}
.fab .fab-item svg {
  width: 32px; height: 32px;
  color: #fff;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.45));
}
.fab .fab-item.secondary {
  background: linear-gradient(145deg, rgba(11, 28, 78, 0.98) 0%, #0b1c4e 50%, #081538 100%);
  border-color: var(--racik-border-strong);
  width: 58px; height: 58px;
  border-radius: 20px;
  animation-delay: 1.4s;
}
.fab .fab-item.secondary svg { color: var(--ole-gold); }
.fab .fab-item::after {
  content: "";
  position: absolute;
  top: -2px; right: -2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFEAB6, #FFC94A 70%);
  border: 2px solid #081538;
  box-shadow: 0 0 0 3px rgba(255, 201, 74, 0.35);
  animation: racik-ping 1.8s ease-out infinite;
}

.sticky-bar {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 9998;
  padding: .55rem .8rem calc(.55rem + var(--safe-bottom));
  background:
    radial-gradient(800px 200px at 50% 110%, rgba(255, 201, 74, 0.24), transparent 60%),
    linear-gradient(180deg, rgba(8, 21, 56, 0.96) 0%, #06102a 100%);
  border-top: 2.5px solid var(--ole-gold);
  box-shadow:
    0 -18px 54px rgba(0, 0, 0, 0.85),
    0 0 28px rgba(255, 201, 74, 0.3);
  display: none;
}
@media (max-width: 899px) {
  .sticky-bar { display: block; }
}
.sticky-bar-inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.sticky-bar-inner .btn { min-height: 54px; font-size: .92rem; }

.answer-box {
  margin: 1.8rem auto 1rem;
  padding: 1.25rem 1.3rem;
  background:
    radial-gradient(520px 200px at 96% -10%, rgba(37, 99, 235, 0.22), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fafbff 30%, #ffffff 70%, #f5f2e8 100%);
  border: 2px solid rgba(255, 201, 74, 0.55);
  border-left: 6px solid #FFC94A;
  border-radius: 16px;
  color: #1a1200;
  font-weight: 600;
  box-shadow: 0 18px 42px rgba(120, 86, 10, 0.14), 0 2px 0 rgba(255,255,255,0.95) inset, 0 0 0 1px rgba(255,255,255,0.6) inset;
  animation: racik-rise .75s ease .12s both;
  position: relative;
  overflow: hidden;
}
.answer-box::before {
  content: "";
  position: absolute;
  top: -48px; right: -48px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255, 201, 74, 0.2), transparent 70%);
  pointer-events: none;
}
.answer-box h2 {
  margin: 0 0 .5rem;
  color: #8a6600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.answer-box p { margin: 0; color: #1c2238; font-weight: 600; line-height: 1.7; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-top: .35rem;
  animation: racik-rise .8s ease .16s both;
}
@media (max-width: 639px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature-item {
  padding: 1rem 1rem;
  border-radius: 18px;
  background:
    radial-gradient(520px 260px at 50% -10%, rgba(37, 99, 235, 0.3), transparent 55%),
    radial-gradient(420px 200px at 104% 10%, rgba(255, 201, 74, 0.20), transparent 56%),
    linear-gradient(160deg, rgba(37, 99, 235, 0.22) 0%, #0b1c4e 20%, #081538 55%, #0c225c 100%);
  border: 2px solid rgba(255, 201, 74, 0.42);
  border-left: 6px solid var(--ole-gold);
  box-shadow:
    0 18px 38px rgba(0,0,0,.72),
    0 0 0 2px rgba(255, 201, 74, .16),
    inset 0 1px 0 rgba(255, 255, 255, .12),
    inset 0 0 0 1px rgba(37, 99, 235, .12);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(255, 201, 74, 0.2), inset 0 1px 0 rgba(255, 201, 74, 0.18);
  border-color: rgba(255, 201, 74, 0.65);
}
.feature-item h4 {
  margin: 0 0 .25rem;
  font-size: .98rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.feature-item p { margin: 0; color: #c7d1ef; font-size: .86rem; line-height: 1.6; }
.feature-item .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  color: var(--ole-gold);
  animation: racik-spark 2.4s infinite;
}

@media (min-width: 900px) {
  .main-nav {
    order: 2;
    flex: 1 1 auto;
    width: auto;
    margin: 0;
    padding: 0;
    border-top: none;
    display: flex;
    justify-content: center;
  }
  .nav-cta { order: 3; }
  .brand span { display: inline; }
}

/* ====== HEADER MOBILE FIX: RAPI, TIDAK JELEK DI HP ====== */
@media (max-width: 899px) {
  .header-inner {
    padding: .55rem var(--pad-x);
    gap: .4rem .55rem;
  }
  .brand img {
    width: 140px;
    max-height: 44px;
  }
  .main-nav {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    margin-top: .25rem;
    padding-top: .25rem;
    border-top: 1px solid rgba(255, 201, 74, 0.22);
  }
  .main-nav a {
    padding: .45rem .15rem;
    font-size: .82rem;
  }
  .main-nav ul {
    gap: .2rem .85rem;
  }
  .nav-cta {
    order: 2;
    margin-left: auto;
  }
  .nav-cta .btn {
    padding: .5rem .9rem !important;
    font-size: .82rem !important;
    min-height: 42px !important;
    line-height: 1;
    gap: .35rem !important;
  }
  .nav-cta .btn svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --pad-x: 1rem;
  }
  .brand img {
    width: 120px;
    max-height: 40px;
  }
  .main-nav a {
    font-size: .76rem;
    padding: .42rem .12rem;
  }
  .main-nav ul {
    gap: .2rem .7rem;
  }
  .nav-cta .btn {
    padding: .44rem .7rem !important;
    font-size: .76rem !important;
    min-height: 38px !important;
  }
  .nav-cta .btn svg {
    width: 14px !important;
    height: 14px !important;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 105px;
    max-height: 36px;
  }
  .main-nav a {
    font-size: .72rem;
    padding: .4rem .1rem;
  }
  .main-nav ul {
    gap: .18rem .6rem;
  }
  .nav-cta .btn {
    padding: .4rem .62rem !important;
    font-size: .72rem !important;
    min-height: 36px !important;
  }
}

.install-app-banner {
  position: sticky;
  top: 0;
  z-index: 9997;
  margin: 0;
  padding: .55rem .9rem calc(.55rem + var(--safe-top));
  background:
    radial-gradient(700px 120px at 50% -10%, rgba(255, 201, 74, 0.28), transparent 60%),
    linear-gradient(180deg, rgba(8, 21, 56, 0.98) 0%, #06102a 100%);
  border-bottom: 2px solid var(--ole-gold);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.8),
    0 0 0 3px rgba(255, 201, 74, 0.16);
  animation: racik-rise .5s ease both;
}
.install-app-banner.is-hidden { display: none !important; }
.install-app-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .85rem 1rem;
  align-items: center;
}
.install-app-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #020402;
  border: 2px solid rgba(255, 201, 74, 0.5);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7), 0 0 14px rgba(255, 201, 74, 0.35);
}
.install-app-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.install-app-text {
  min-width: 0;
  line-height: 1.35;
}
.install-app-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  color: #ffffff;
  font-size: .98rem;
  letter-spacing: -0.005em;
}
.install-app-desc {
  color: var(--racik-muted);
  font-size: .83rem;
  margin-top: .1rem;
}
.install-app-actions {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.install-app-dismiss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  color: var(--racik-muted);
  border-radius: 999px;
  border: 1.5px solid rgba(181, 194, 232, 0.25);
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.install-app-dismiss:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 201, 74, 0.4);
  transform: translateY(-1px);
}
.install-app-btn {
  min-height: 44px !important;
  padding: .6rem 1rem !important;
  font-size: .88rem !important;
  gap: .4rem !important;
}
.install-app-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
  filter: grayscale(.25);
  animation: none;
}
@media (max-width: 640px) {
  .install-app-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .install-app-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
    width: 100%;
  }
  .install-app-btn { flex: 1 1 auto; }
}

