@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500&family=Plus+Jakarta+Sans:wght@300;400;500&display=swap');

:root {
  --bg: #f7fbff;
  --bg-soft: #edf7ff;
  --bg-card: rgba(255,255,255,.72);
  --surface: rgba(255,255,255,.78);
  --surface-blue: rgba(240,248,255,.82);
  --surface-green: rgba(240,252,244,.82);
  --line: rgba(107, 173, 230, 0.16);
  --line-strong: rgba(82, 162, 230, 0.24);
  --text: #495775;
  --text-soft: #6d7b96;
  --title: #2b3e69;
  --blue: #4da5f5;
  --blue-deep: #2e88e5;
  --green: #68c84f;
  --green-deep: #54b940;
  --yellow: #ffd866;
  --hero-wash: linear-gradient(180deg, rgba(239,248,255,.92) 0%, rgba(233,245,255,.84) 42%, rgba(240,249,255,.74) 100%);
  --shadow-sm: 0 10px 24px rgba(85, 145, 204, 0.06);
  --shadow-md: 0 18px 42px rgba(74, 132, 194, 0.10);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 6%, rgba(165, 219, 255, 0.44), transparent 26%),
    radial-gradient(circle at 92% 10%, rgba(255, 234, 170, 0.28), transparent 18%),
    radial-gradient(circle at 78% 36%, rgba(255,255,255,0.42), transparent 20%),
    linear-gradient(180deg, #eef8ff 0%, #edf8ff 34%, #f3fbff 66%, #f8fdff 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(6px);
}
body::before {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 90px;
  background: radial-gradient(circle, rgba(181,224,255,.42) 0%, rgba(181,224,255,0) 72%);
}
body::after {
  width: 360px;
  height: 360px;
  right: -110px;
  top: 360px;
  background: radial-gradient(circle, rgba(255,240,196,.28) 0%, rgba(255,240,196,0) 72%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header,
.section,
.site-footer { width: min(1180px, calc(100% - 28px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 8px;
  z-index: 50;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid rgba(132, 190, 236, 0.24);
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 6px 16px rgba(76, 136, 201, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: fit-content;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  flex: 0 0 auto;
}
.brand-name,
.brand-subtitle { display: block; line-height: 1.04; }
.brand-name {
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--title);
}
.brand-subtitle {
  margin-top: -3px;
  font-size: 14px;
  color: var(--title);
  opacity: .95;
  font-weight: 500;
}
.brand-logo {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(61, 142, 230, 0.08));
}
.footer-logo {
  width: 54px;
  height: 54px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--title);
  opacity: .78;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
  color: var(--blue-deep);
}
.nav-cta {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #fff !important;
  opacity: 1 !important;
  background: linear-gradient(180deg, #59b0ff 0%, #318ef0 100%);
  box-shadow: 0 8px 18px rgba(54, 136, 226, 0.2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(104, 177, 238, 0.24);
  border-radius: 14px;
  background: rgba(240, 248, 255, 0.9);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--title);
  margin: 4px auto;
}

.section { padding: 64px 0; }
.hero { padding-top: 20px; }
.hero-shell {
  position: relative;
  padding: 20px 20px 18px;
  border-radius: 30px;
  border: 1px solid rgba(139, 203, 247, 0.32);
  background: var(--hero-wash);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(81, 149, 219, 0.05);
}
.hero-shell::before,
.hero-shell::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  filter: blur(.2px);
}
.hero-shell::before { width: 180px; height: 54px; top: 18px; left: 40%; box-shadow: 36px 16px 0 10px rgba(255,255,255,.82), 92px 0 0 4px rgba(255,255,255,.74); }
.hero-shell::after { width: 210px; height: 62px; left: -36px; bottom: 80px; box-shadow: 120px 18px 0 8px rgba(255,255,255,.78), 230px 4px 0 0 rgba(255,255,255,.76); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, .96fr);
  gap: 14px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 1; padding: 10px 6px 0; }
.pill,
.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(111, 178, 234, 0.18);
  background: linear-gradient(180deg, rgba(244,250,255,.86) 0%, rgba(234,246,255,.72) 100%);
  box-shadow: 0 6px 14px rgba(72, 135, 204, 0.05);
  color: #5088db;
  font-size: 12.5px;
  font-weight: 500;
}
.hero h1,
.section-heading h2,
.advantage-copy h2,
.contact-copy h2,
.final-cta h2,
.site-footer h3,
.service-card h3,
.product-card h3,
.mini-card h3,
.timeline-step h3,
.price-card h3,
.showcase-card h3,
.faq-list summary {
  margin: 0;
  color: var(--title);
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero h1 {
  margin-top: 14px;
  max-width: 480px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}
.lead {
  max-width: 470px;
  margin: 14px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hero-actions.center { justify-content: center; }
.button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  transition: .22s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: linear-gradient(180deg, #74d65e 0%, #56c24d 100%);
  color: #fff;
  box-shadow: 0 12px 20px rgba(88, 193, 76, 0.22);
}
.button.secondary {
  border-color: rgba(110, 181, 237, 0.4);
  color: #4b82d8;
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 18px rgba(82, 148, 215, 0.07);
}
.trust-note {
  margin-top: 18px;
  max-width: 470px;
  padding-left: 16px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
  position: relative;
}
.trust-note::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4b88e6;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 223, 121, 0.18), transparent 18%),
    radial-gradient(circle at 24% 76%, rgba(255,255,255,0.34), transparent 20%),
    linear-gradient(180deg, rgba(204, 234, 255, 0.24) 0%, rgba(228, 244, 255, 0.12) 48%, rgba(255,255,255,0) 100%);
}
.hero-illustration {
  position: absolute;
  right: -6px;
  bottom: -10px;
  width: min(495px, 104%);
  filter: drop-shadow(0 14px 24px rgba(67, 132, 203, 0.14));
}
.sparkle,
.moon {
  position: absolute;
  z-index: 1;
  color: #f4cd63;
  font-size: 20px;
}
.star-a { top: 80px; left: 62px; }
.star-b { top: 112px; right: 130px; font-size: 16px; }
.star-c { top: 222px; left: 24px; font-size: 15px; }
.moon { top: 56px; right: 62px; font-size: 26px; }
.cloud {
  position: absolute;
  background: rgba(255,255,255,.82);
  border-radius: 999px;
}
.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.82);
}
.cloud-a { width: 90px; height: 28px; top: 46px; left: 22px; }
.cloud-a::before { width: 32px; height: 32px; left: 10px; top: -14px; }
.cloud-a::after { width: 40px; height: 40px; left: 36px; top: -18px; }
.cloud-b { width: 74px; height: 24px; bottom: 36px; left: 40px; }
.cloud-b::before { width: 28px; height: 28px; left: 10px; top: -12px; }
.cloud-b::after { width: 36px; height: 36px; left: 28px; top: -15px; }
.mini-float {
  position: absolute;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-size: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(111, 178, 234, 0.22);
  box-shadow: var(--shadow-sm);
  transform: rotate(-8deg);
}
.mini-float-top { top: 52px; left: 44px; }
.mini-float-book { top: 106px; right: 28px; transform: rotate(9deg); }

.hero-shortcuts {
  margin-top: 14px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}
.shortcut-card {
  min-height: 92px;
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(131, 194, 240, 0.20);
  background: linear-gradient(180deg, rgba(255,255,255,.62) 0%, rgba(255,255,255,.50) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 7px 14px rgba(72, 136, 205, 0.04);
  color: var(--title);
  font-size: 14px;
  font-weight: 500;
}
.shortcut-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--surface-blue);
}
.shortcut-icon img { width: 34px; height: 34px; display: block; }

.section-heading {
  max-width: 740px;
  margin: 0 auto 26px;
  text-align: center;
}
.section-heading h2,
.advantage-copy h2,
.contact-copy h2,
.final-cta h2 { font-size: clamp(24px, 2.7vw, 38px); line-height: 1.18; margin-top: 14px; }
.section-heading p,
.advantage-copy p,
.contact-copy p,
.final-cta p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.78;
}

.problem-grid,
.advantage-grid,
.service-grid,
.product-grid,
.pricing-grid,
.showcase-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}
.problem-grid,
.advantage-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-grid,
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
.showcase-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.footer-grid { grid-template-columns: 1.3fr .8fr .9fr .8fr; }

.mini-card,
.service-card,
.product-card,
.timeline-step,
.price-card,
.showcase-card,
.brief-form,
.contact-note,
.faq-list details {
  background: linear-gradient(180deg, rgba(255,255,255,.74) 0%, rgba(255,255,255,.62) 100%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(125, 190, 238, 0.18);
  border-radius: 24px;
  box-shadow: 0 8px 18px rgba(78, 139, 205, 0.05);
}
.mini-card,
.service-card,
.product-card,
.timeline-step,
.price-card,
.showcase-card { padding: 20px; }
.mini-card span,
.service-card .icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--surface-blue); font-size: 22px; }
.service-card .icon img { width: 36px; height: 36px; display: block; }
.mini-card h3,
.service-card h3,
.product-card h3,
.timeline-step h3,
.price-card h3,
.showcase-card h3 { margin-top: 16px; font-size: 22px; line-height: 1.2; }
.mini-card p,
.service-card p,
.product-card p,
.timeline-step p,
.price-card p,
.showcase-card p,
.site-footer p,
.footer-grid a,
.price-card li,
.product-card li { color: var(--text-soft); font-size: 14px; line-height: 1.75; }

.service-card small,
.service-card a {
  display: block;
  margin-top: 12px;
  font-size: 13px;
}
.service-card small { color: #7b88a4; }
.service-card a { color: var(--blue-deep); font-weight: 500; }

.product-card { overflow: hidden; }
.product-card > span {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 500;
}
.product-art {
  min-height: 170px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 42px;
  background: linear-gradient(180deg, #a8ddff 0%, #e7f7ff 100%);
}
.product-art.prophet { background: linear-gradient(180deg, #ffd89a 0%, #fff1d3 100%); }
.product-art.prayer { background: linear-gradient(180deg, #bfe7ff 0%, #eaf8ff 100%); }
.product-art.hijaiyah { background: linear-gradient(180deg, #d1edff 0%, #f2fbff 100%); }
.product-art.flipbook { background: linear-gradient(180deg, #ffe7bc 0%, #fff6e4 100%); }
.product-art.quiz { background: linear-gradient(180deg, #bdebc8 0%, #eefcf2 100%); }
.product-card ul,
.price-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 20px;
  align-items: start;
}
.advantage-section {
  display: grid;
  gap: 18px;
}
.advantage-copy,
.contact-copy { padding-right: 14px; }
.center-copy { max-width: 860px; margin: 0 auto 10px; text-align: center; padding-right: 0; }
.center-copy .button { margin-top: 18px; }
.advantage-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 6px 4px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(94, 169, 238, .35) transparent;
}
.advantage-slider::-webkit-scrollbar { height: 8px; }
.advantage-slider::-webkit-scrollbar-thumb { background: rgba(94, 169, 238, .35); border-radius: 999px; }
.adv-card {
  min-height: 192px;
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.70) 0%, rgba(247,252,255,.60) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(129, 193, 240, .18);
  box-shadow: 0 8px 18px rgba(78, 139, 205, 0.05);
  scroll-snap-align: start;
}
.adv-card h3 { margin-top: 16px; font-size: 20px; color: var(--title); font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif; font-weight: 500; }
.adv-card p { margin: 10px 0 0; color: var(--text-soft); font-size: 14px; line-height: 1.75; }
.adv-icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 18px; background: linear-gradient(180deg, #eef8ff 0%, #f8fcff 100%); box-shadow: inset 0 0 0 1px rgba(129,193,240,.18); font-size: 24px; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 33px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(77, 165, 245, .35), rgba(77, 165, 245, .1));
}
.timeline-step { position: relative; padding-top: 62px; }
.timeline-step > span {
  position: absolute;
  top: 0;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #60b4ff 0%, #419bf1 100%);
  color: #fff;
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: 21px;
  font-weight: 500;
  box-shadow: 0 12px 18px rgba(77, 165, 245, 0.16);
}

.price-card { position: relative; }
.price-card .price {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 14px;
}
.price-card .price span {
  display: block;
  margin-top: 6px;
  color: var(--blue-deep);
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 500;
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(237,248,255,.94) 0%, rgba(255,255,255,.95) 100%);
  border-color: rgba(92, 170, 238, 0.34);
  transform: translateY(-8px);
}
.price-card .badge {
  position: absolute;
  top: -14px;
  left: 20px;
  min-height: 32px;
  padding-inline: 12px;
  background: linear-gradient(180deg, #4eabff 0%, #388fe7 100%);
  color: white;
  border: 0;
  box-shadow: 0 10px 16px rgba(77, 165, 245, 0.16);
}

.showcase-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 500;
}
.showcase-card div { font-size: 44px; margin-top: 18px; }

.contact-note {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(255,255,255,.8);
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
}
.brief-form {
  padding: 24px;
  display: grid;
  gap: 14px;
}
.brief-form label {
  display: grid;
  gap: 8px;
  color: var(--title);
  font-size: 14px;
  font-weight: 500;
}
.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(113, 180, 237, 0.28);
  background: #fdfefe;
  padding: 0 14px;
  color: var(--text);
  outline: none;
}
.brief-form textarea { min-height: 132px; padding-top: 12px; resize: vertical; }
.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  border-color: rgba(78, 153, 226, 0.5);
  box-shadow: 0 0 0 4px rgba(78, 153, 226, 0.08);
}
.form-status { min-height: 22px; margin: 0; color: var(--blue-deep); font-size: 13px; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 18px 20px; }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding-right: 28px;
  position: relative;
  font-size: 18px;
}
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--blue-deep);
  font-size: 24px;
  line-height: 1;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 12px 0 0; color: var(--text-soft); font-size: 14px; line-height: 1.75; }

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(121, 191, 242, 0.28);
  background: linear-gradient(180deg, rgba(235,247,255,.74) 0%, rgba(243,251,255,.72) 60%, rgba(237,248,255,.70) 100%);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgba(82, 149, 214, 0.05);
}
.cta-kids {
  min-width: 220px;
  min-height: 160px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: rgba(255,255,255,.75);
  font-size: 42px;
}

.site-footer {
  margin-top: 68px;
  margin-bottom: 30px;
  padding: 34px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(61,138,224,.96) 0%, rgba(44,120,206,.94) 100%);
  color: rgba(255,255,255,.88);
}
.footer-brand .brand-name,
.footer-brand .brand-subtitle,
.site-footer h3 { color: #fff; }
.site-footer h3 { font-size: 22px; }
.footer-grid a {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.82);
}
.footer-grid p { margin: 14px 0 0; color: rgba(255,255,255,.8); }
.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.74);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #28d366 0%, #18ba54 100%);
  box-shadow: 0 14px 24px rgba(24, 186, 84, 0.24);
}
.whatsapp-float svg { width: 28px; height: 28px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.hero-shell { animation: cardBreath 8s ease-in-out infinite; }
.mini-float { animation: floatY 5.5s ease-in-out infinite; }
.mini-float-book { animation-delay: 1.2s; }
.cloud-a { animation: swayCloud 10s ease-in-out infinite; }
.cloud-b { animation: swayCloud 12s ease-in-out infinite reverse; }
.sparkle { animation: twinkle 3.8s ease-in-out infinite; }
.star-b { animation-delay: .8s; }
.star-c { animation-delay: 1.6s; }
.shortcut-card, .mini-card, .service-card, .product-card, .price-card, .showcase-card, .faq-list details, .adv-card { transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.shortcut-card:hover, .mini-card:hover, .service-card:hover, .product-card:hover, .price-card:hover, .showcase-card:hover, .faq-list details:hover, .adv-card:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(78, 139, 205, 0.08); border-color: rgba(97, 170, 232, 0.28); }

@keyframes floatY {
  0%,100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-5px) rotate(-6deg); }
}
@keyframes swayCloud {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}
@keyframes twinkle {
  0%,100% { opacity: .85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes cardBreath {
  0%,100% { box-shadow: 0 18px 38px rgba(81, 149, 219, 0.12); }
  50% { box-shadow: 0 16px 28px rgba(81, 149, 219, 0.07); }
}


@media (max-width: 1100px) {
  .hero-grid,
  .advantage-section,
  .contact-section,
  .final-cta { grid-template-columns: 1fr; }
  .service-grid,
  .product-grid,
  .pricing-grid,
  .showcase-grid,
  .problem-grid,
  .advantage-grid,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .timeline::before { left: 10%; right: 10%; }
  .cta-kids { min-height: 120px; }
}

@media (max-width: 860px) {
  .site-header { padding: 12px; }
  .menu-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(132, 190, 236, 0.28);
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .main-nav a { min-height: 42px; display: flex; align-items: center; }
  .nav-cta { justify-content: center; }

  .section { padding: 50px 0; }
  .hero-shell { padding: 16px 12px 12px; border-radius: 22px; }
  .hero-grid { gap: 10px; }
  .hero-visual { min-height: 380px; }
  .hero-illustration { width: min(360px, calc(100% - 8px)); right: 0; left: 0; margin-inline: auto; }
  .mini-float-top { left: 14px; top: 18px; }
  .mini-float-book { right: 14px; top: 72px; }
  .hero-shortcuts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid,
  .product-grid,
  .pricing-grid,
  .showcase-grid,
  .problem-grid,
  .footer-grid,
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .price-card.featured { transform: none; }
}

@media (max-width: 560px) {
  .site-header,
  .section,
  .site-footer { width: min(100% - 16px, 1180px); }
  .hero h1 { font-size: 34px; }
  .brand-logo { width: 44px; height: 44px; }
  .footer-logo { width: 46px; height: 46px; }
  .button { width: 100%; }
  .hero-actions { gap: 10px; }
  .hero-visual { min-height: 320px; }
  .hero-illustration { bottom: -2px; }
  .shortcut-card { min-height: 84px; padding: 12px 8px; font-size: 13px; }
  .mini-card,
  .service-card,
  .product-card,
  .timeline-step,
  .price-card,
  .showcase-card,
  .brief-form,
  .faq-list details,
  .final-cta,
  .site-footer { border-radius: 20px; }
  .faq-list summary { font-size: 17px; }
  .footer-bottom { font-size: 12px; }
  .whatsapp-float { width: 54px; height: 54px; right: 12px; bottom: 12px; }
}

/* --------------------------------------------------------------------------
   Final polish: soft unified cards, premium pricing, mobile-first refinements
   -------------------------------------------------------------------------- */
:root {
  --glass: linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.54) 100%);
  --glass-hover: linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(247,252,255,.68) 100%);
  --glass-line: rgba(126, 193, 244, .18);
  --glass-shadow: 0 10px 22px rgba(73, 139, 205, .055);
  --glass-shadow-hover: 0 14px 28px rgba(73, 139, 205, .085);
}

.site-header {
  min-height: 74px;
  background: linear-gradient(180deg, rgba(255,255,255,.68), rgba(249,253,255,.54));
}

.hero-shell,
.mini-card,
.service-card,
.product-card,
.timeline-step,
.price-card,
.showcase-card,
.brief-form,
.contact-note,
.faq-list details,
.adv-card,
.final-cta {
  background: var(--glass);
  border-color: var(--glass-line);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-card,
.product-card,
.timeline-step,
.price-card,
.showcase-card,
.mini-card,
.adv-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.product-card::before,
.timeline-step::before,
.price-card::before,
.showcase-card::before,
.mini-card::before,
.adv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at 22% 0%, rgba(255,255,255,.7), transparent 34%);
  opacity: .75;
}

.service-card > *,
.product-card > *,
.timeline-step > *,
.price-card > *,
.showcase-card > *,
.mini-card > *,
.adv-card > * {
  position: relative;
  z-index: 1;
}

.shortcut-card:hover,
.mini-card:hover,
.service-card:hover,
.product-card:hover,
.price-card:hover,
.showcase-card:hover,
.faq-list details:hover,
.adv-card:hover {
  background: var(--glass-hover);
  box-shadow: var(--glass-shadow-hover);
}

.icon,
.shortcut-icon,
.adv-icon,
.mini-card span,
.timeline-step > span,
.product-card > span {
  box-shadow: inset 0 0 0 1px rgba(122, 190, 241, .16), 0 8px 16px rgba(74, 137, 205, .06);
}

/* Pricing section */
#paket {
  padding-top: 58px;
}
#paket .section-heading {
  margin-bottom: 34px;
}
.pricing-grid {
  gap: 20px;
  align-items: stretch;
}
.price-card {
  min-height: 100%;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
}
.price-card h3 {
  font-size: 25px;
  line-height: 1.1;
}
.price-card p {
  margin: 10px 0 0;
}
.price-card .price {
  margin-top: 18px;
  padding: 16px 16px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(239,248,255,.82), rgba(255,255,255,.56));
  border: 1px solid rgba(127, 191, 240, .18);
}
.price-card .price span {
  font-size: 34px;
  color: #2f86de;
  letter-spacing: -.02em;
}
.price-card ul {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.price-card li {
  position: relative;
  padding-left: 24px;
}
.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #54b940;
  font-weight: 500;
}
.price-card .button {
  margin-top: auto;
  width: 100%;
  min-height: 46px;
}
.price-card.featured {
  transform: translateY(-10px);
  background:
    radial-gradient(circle at 50% -10%, rgba(87, 173, 255, .18), transparent 34%),
    linear-gradient(180deg, rgba(243,250,255,.88) 0%, rgba(255,255,255,.68) 100%);
  border-color: rgba(88, 171, 244, .28);
  box-shadow: 0 16px 34px rgba(68, 142, 218, .10);
}
.price-card .badge {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 30px;
  white-space: nowrap;
  font-size: 12px;
  background: linear-gradient(180deg, #61b7ff 0%, #338ee8 100%);
}

/* Product visual cards follow the hero palette */
.product-art,
.product-art.prophet,
.product-art.prayer,
.product-art.hijaiyah,
.product-art.flipbook,
.product-art.quiz {
  min-height: 150px;
  border: 1px solid rgba(255,255,255,.44);
  box-shadow: inset 0 0 0 1px rgba(122, 190, 241, .12);
  background:
    radial-gradient(circle at 22% 16%, rgba(255,255,255,.78), transparent 28%),
    linear-gradient(180deg, rgba(177,223,255,.72) 0%, rgba(236,248,255,.72) 100%);
}
.product-art.prophet,
.product-art.flipbook {
  background:
    radial-gradient(circle at 22% 16%, rgba(255,255,255,.72), transparent 28%),
    linear-gradient(180deg, rgba(255,223,158,.62) 0%, rgba(255,247,228,.76) 100%);
}
.product-art.quiz {
  background:
    radial-gradient(circle at 22% 16%, rgba(255,255,255,.72), transparent 28%),
    linear-gradient(180deg, rgba(193,238,205,.64) 0%, rgba(240,253,244,.72) 100%);
}

/* Forms and FAQ */
.brief-form input,
.brief-form select,
.brief-form textarea {
  background: rgba(255,255,255,.68);
  border-color: rgba(113, 180, 237, .20);
}
.faq-list details {
  padding: 16px 18px;
}
.faq-list summary {
  font-size: 17px;
}

/* Mobile polish */
@media (max-width: 1100px) {
  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 64px;
    top: 6px;
    margin-top: 6px;
    border-radius: 18px;
  }
  .main-nav {
    background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(243,250,255,.90));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .hero-copy {
    text-align: center;
    padding: 6px 4px 0;
  }
  .pill,
  .eyebrow,
  .badge {
    margin-inline: auto;
  }
  .hero h1,
  .lead,
  .trust-note {
    margin-left: auto;
    margin-right: auto;
  }
  .trust-note {
    padding-left: 0;
  }
  .trust-note::before {
    display: none;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 4px;
    min-height: 360px;
  }
  .hero-illustration {
    width: min(390px, 102%);
  }
  .advantage-slider {
    grid-auto-columns: minmax(230px, 78vw);
    margin-inline: -4px;
    padding-bottom: 12px;
  }
  .contact-section,
  .final-cta {
    text-align: center;
  }
  .contact-copy {
    padding-right: 0;
  }
  .pricing-grid {
    gap: 16px;
  }
  .price-card {
    padding: 22px 20px 20px;
  }
  .price-card .badge {
    position: static;
    transform: none;
    margin: -4px auto 14px;
    width: fit-content;
  }
}

@media (max-width: 560px) {
  body::before,
  body::after {
    opacity: .64;
  }
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 14px, 1180px);
  }
  .section {
    padding: 42px 0;
  }
  .hero {
    padding-top: 14px;
  }
  .hero-shell {
    padding: 14px 10px 10px;
    border-radius: 22px;
  }
  .hero h1 {
    font-size: 31px;
    line-height: 1.14;
  }
  .lead {
    font-size: 14px;
    line-height: 1.72;
  }
  .button {
    min-height: 44px;
    font-size: 14px;
  }
  .hero-visual {
    min-height: 300px;
    border-radius: 20px;
  }
  .hero-illustration {
    width: min(340px, 108%);
  }
  .mini-float {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 23px;
  }
  .mini-float-top {
    left: 8px;
    top: 16px;
  }
  .mini-float-book {
    right: 8px;
    top: 58px;
  }
  .hero-shortcuts {
    gap: 10px;
  }
  .shortcut-icon {
    width: 42px;
    height: 42px;
  }
  .shortcut-icon img {
    width: 30px;
    height: 30px;
  }
  .section-heading {
    margin-bottom: 20px;
  }
  .section-heading h2,
  .advantage-copy h2,
  .contact-copy h2,
  .final-cta h2 {
    font-size: 27px;
  }
  .section-heading p,
  .advantage-copy p,
  .contact-copy p,
  .final-cta p {
    font-size: 14px;
    line-height: 1.68;
  }
  .mini-card,
  .service-card,
  .product-card,
  .timeline-step,
  .price-card,
  .showcase-card,
  .adv-card {
    padding: 18px;
  }
  .mini-card h3,
  .service-card h3,
  .product-card h3,
  .timeline-step h3,
  .price-card h3,
  .showcase-card h3,
  .adv-card h3 {
    font-size: 20px;
  }
  .product-art {
    min-height: 124px;
    font-size: 34px;
  }
  .price-card .price {
    padding: 14px;
  }
  .price-card .price span {
    font-size: 30px;
  }
  .brief-form {
    padding: 18px;
  }
  .final-cta {
    padding: 24px 18px;
  }
  .cta-kids {
    min-width: 100%;
    min-height: 94px;
    font-size: 32px;
  }
  .site-footer {
    padding: 26px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.footer-brand { width: fit-content; }

/* ===== FINAL HERO BLEND PATCH ===== */
.hero {
  position: relative;
}

.hero-shell {
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 18%, rgba(182, 226, 255, 0.52), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(255, 236, 171, 0.22), transparent 16%),
    linear-gradient(180deg, rgba(239, 248, 255, 0.88) 0%, rgba(233, 245, 255, 0.76) 40%, rgba(238, 248, 255, 0.68) 100%) !important;
  border-color: rgba(132, 196, 241, 0.16) !important;
  box-shadow: 0 12px 28px rgba(93, 150, 210, 0.05) !important;
}

.hero-shell::before,
.hero-shell::after {
  opacity: 0.82;
}

.hero-grid {
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 490px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.52), transparent 18%),
    radial-gradient(circle at 76% 20%, rgba(255, 232, 160, 0.24), transparent 16%),
    linear-gradient(180deg, rgba(212,238,255,0.34) 0%, rgba(232,246,255,0.14) 50%, rgba(255,255,255,0) 100%) !important;
}

.hero-visual::before,
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-visual::before {
  background:
    radial-gradient(circle at 50% 100%, rgba(246,252,255,0.98) 0%, rgba(246,252,255,0.92) 12%, rgba(246,252,255,0) 38%),
    radial-gradient(circle at 0% 65%, rgba(246,252,255,0.80) 0%, rgba(246,252,255,0.0) 28%),
    radial-gradient(circle at 100% 64%, rgba(246,252,255,0.72) 0%, rgba(246,252,255,0) 26%);
  animation: heroMist 8s ease-in-out infinite;
}

.hero-visual::after {
  background:
    linear-gradient(180deg, rgba(246,251,255,0.28) 0%, rgba(246,251,255,0.05) 22%, rgba(246,251,255,0) 40%),
    linear-gradient(90deg, rgba(246,251,255,0.42) 0%, rgba(246,251,255,0.0) 16%, rgba(246,251,255,0.0) 84%, rgba(246,251,255,0.34) 100%);
  mix-blend-mode: screen;
}

.hero-illustration {
  z-index: 1;
  right: -16px;
  bottom: -18px;
  width: min(520px, 108%);
  opacity: 0.98;
  filter: drop-shadow(0 14px 26px rgba(83, 146, 210, 0.10));
  -webkit-mask-image: radial-gradient(circle at 50% 56%, rgba(0,0,0,1) 48%, rgba(0,0,0,0.94) 64%, rgba(0,0,0,0.70) 78%, rgba(0,0,0,0.16) 92%, transparent 100%);
  mask-image: radial-gradient(circle at 50% 56%, rgba(0,0,0,1) 48%, rgba(0,0,0,0.94) 64%, rgba(0,0,0,0.70) 78%, rgba(0,0,0,0.16) 92%, transparent 100%);
  animation: heroFloat 7.5s ease-in-out infinite;
}

.trust-note {
  max-width: 480px;
  color: rgba(88, 104, 132, 0.92);
  text-wrap: balance;
}

.hero-shortcuts {
  position: relative;
  z-index: 3;
}

.shortcut-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.44) 100%) !important;
  border-color: rgba(128, 191, 235, 0.14) !important;
  box-shadow: 0 8px 18px rgba(76, 136, 204, 0.04) !important;
}

.shortcut-card:hover {
  transform: translateY(-2px);
}

.problem-section,
#layanan,
.product-section,
.advantage-section,
.workflow-section,
#paket,
.showcase-section,
.contact-section,
.faq-section,
.final-cta {
  position: relative;
}

.problem-section::before,
#layanan::before,
.product-section::before,
.advantage-section::before,
.workflow-section::before,
#paket::before,
.showcase-section::before,
.contact-section::before,
.faq-section::before,
.final-cta::before {
  content: '';
  position: absolute;
  inset: 8px 0 auto;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(236,247,255,0.24) 0%, rgba(236,247,255,0) 100%);
  z-index: -1;
}

.service-card,
.product-card,
.mini-card,
.timeline-step,
.price-card,
.showcase-card,
.brief-form,
.contact-note,
.faq-list details,
.adv-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.66) 0%, rgba(252,254,255,0.54) 100%) !important;
  border-color: rgba(128, 191, 235, 0.14) !important;
  box-shadow: 0 8px 18px rgba(76, 136, 204, 0.04) !important;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(248,252,255,0.78) 0%, rgba(242,249,255,0.62) 100%) !important;
  border-color: rgba(110, 182, 239, 0.20) !important;
  box-shadow: 0 10px 22px rgba(76, 136, 204, 0.05) !important;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes heroMist {
  0%, 100% { opacity: 0.92; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

@media (max-width: 860px) {
  .hero-shell {
    padding: 16px 12px 14px !important;
  }

  .hero-grid {
    gap: 12px !important;
  }

  .hero-copy {
    text-align: center;
  }

  .pill {
    margin-inline: auto;
  }

  .hero h1,
  .lead,
  .trust-note {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 360px !important;
    border-radius: 24px;
  }

  .hero-visual::before {
    background:
      radial-gradient(circle at 50% 100%, rgba(246,252,255,0.98) 0%, rgba(246,252,255,0.94) 16%, rgba(246,252,255,0) 42%),
      radial-gradient(circle at 0% 68%, rgba(246,252,255,0.68) 0%, rgba(246,252,255,0.0) 24%),
      radial-gradient(circle at 100% 68%, rgba(246,252,255,0.64) 0%, rgba(246,252,255,0) 24%);
  }

  .hero-illustration {
    right: 0 !important;
    left: 0 !important;
    bottom: -12px !important;
    width: min(362px, 106%) !important;
    margin-inline: auto;
    -webkit-mask-image: radial-gradient(circle at 50% 56%, rgba(0,0,0,1) 44%, rgba(0,0,0,0.94) 60%, rgba(0,0,0,0.68) 76%, rgba(0,0,0,0.12) 92%, transparent 100%);
    mask-image: radial-gradient(circle at 50% 56%, rgba(0,0,0,1) 44%, rgba(0,0,0,0.94) 60%, rgba(0,0,0,0.68) 76%, rgba(0,0,0,0.12) 92%, transparent 100%);
  }

  .hero-shortcuts {
    margin-top: 12px !important;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 14px;
  }

  .hero-shell {
    padding: 14px 10px 12px !important;
    border-radius: 20px !important;
  }

  .hero h1 {
    font-size: 30px !important;
    line-height: 1.18 !important;
  }

  .lead {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .trust-note {
    font-size: 12px !important;
    line-height: 1.65 !important;
  }

  .hero-visual {
    min-height: 338px !important;
    border-radius: 22px !important;
  }

  .hero-illustration {
    width: min(350px, 108%) !important;
    bottom: -8px !important;
  }

  .mini-float {
    width: 58px !important;
    height: 58px !important;
    border-radius: 16px !important;
  }

  .mini-float-top { left: 10px !important; top: 12px !important; }
  .mini-float-book { right: 10px !important; top: 58px !important; }

  .hero-shortcuts {
    gap: 10px !important;
  }

  .shortcut-card {
    min-height: 82px !important;
    padding: 12px 8px 10px !important;
    border-radius: 18px !important;
  }

  .shortcut-icon {
    width: 42px !important;
    height: 42px !important;
  }

  .shortcut-icon img {
    width: 30px !important;
    height: 30px !important;
  }
}

/* --------------------------------------------------------------------------
   Final premium patch: custom hero sky, premium mobile navbar,
   micro interactions for shortcut + service cards
   -------------------------------------------------------------------------- */

body.nav-open {
  overflow: hidden;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(226, 241, 255, 0.26);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.hero-shell {
  background:
    radial-gradient(circle at 10% 10%, rgba(186, 227, 255, 0.62), transparent 20%),
    radial-gradient(circle at 88% 12%, rgba(255, 237, 174, 0.28), transparent 14%),
    radial-gradient(circle at 60% 18%, rgba(255, 255, 255, 0.44), transparent 18%),
    linear-gradient(180deg, rgba(239, 248, 255, 0.96) 0%, rgba(232, 245, 255, 0.88) 36%, rgba(237, 248, 255, 0.82) 100%) !important;
}

.hero-shell::before {
  top: 20px;
  left: auto;
  right: 140px;
  width: 164px;
  height: 46px;
  opacity: .76;
  box-shadow:
    38px 13px 0 8px rgba(255,255,255,.74),
    82px -3px 0 0 rgba(255,255,255,.54),
    120px 16px 0 10px rgba(255,255,255,.68);
}

.hero-shell::after {
  left: 48px;
  bottom: 42px;
  width: 140px;
  height: 40px;
  opacity: .62;
  box-shadow:
    54px 12px 0 8px rgba(255,255,255,.62),
    102px -6px 0 2px rgba(255,255,255,.58);
}

.hero-visual {
  background:
    radial-gradient(circle at 14% 22%, rgba(255,255,255,0.58), transparent 18%),
    radial-gradient(circle at 80% 14%, rgba(255, 233, 154, 0.20), transparent 14%),
    radial-gradient(circle at 68% 50%, rgba(196, 232, 255, 0.20), transparent 22%),
    linear-gradient(180deg, rgba(194, 229, 255, 0.26) 0%, rgba(219, 241, 255, 0.14) 46%, rgba(255,255,255,0) 100%) !important;
}

.hero-visual::before {
  background:
    radial-gradient(circle at 50% 102%, rgba(245, 252, 255, 0.98) 0%, rgba(245, 252, 255, 0.94) 12%, rgba(245, 252, 255, 0) 36%),
    radial-gradient(circle at 0% 64%, rgba(246,252,255,0.74) 0%, rgba(246,252,255,0.0) 26%),
    radial-gradient(circle at 100% 64%, rgba(246,252,255,0.68) 0%, rgba(246,252,255,0) 26%),
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 34%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  z-index: 0;
  opacity: .75;
  animation: orbPulse 10s ease-in-out infinite;
}

.orb-a {
  width: 126px;
  height: 126px;
  top: 18px;
  right: 32px;
  background: radial-gradient(circle, rgba(255,236,169,.46) 0%, rgba(255,236,169,0) 68%);
}

.orb-b {
  width: 110px;
  height: 110px;
  left: 16px;
  bottom: 68px;
  background: radial-gradient(circle, rgba(207,234,255,.52) 0%, rgba(207,234,255,0) 72%);
  animation-delay: 1.8s;
}

.orb-c {
  width: 84px;
  height: 84px;
  right: 118px;
  bottom: 72px;
  background: radial-gradient(circle, rgba(255,255,255,.46) 0%, rgba(255,255,255,0) 70%);
  animation-delay: 3.2s;
}

.cloud-c,
.cloud-d,
.cloud-e {
  position: absolute;
  background: rgba(255,255,255,.72);
  border-radius: 999px;
  z-index: 0;
}

.cloud-c::before,
.cloud-c::after,
.cloud-d::before,
.cloud-d::after,
.cloud-e::before,
.cloud-e::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.cloud-c {
  width: 92px;
  height: 24px;
  right: 34px;
  top: 172px;
  opacity: .52;
  animation: swayCloud 13s ease-in-out infinite reverse;
}

.cloud-c::before { width: 28px; height: 28px; left: 14px; top: -10px; }
.cloud-c::after { width: 36px; height: 36px; left: 36px; top: -16px; }

.cloud-d {
  width: 86px;
  height: 22px;
  left: 80px;
  bottom: 132px;
  opacity: .48;
  animation: swayCloud 15s ease-in-out infinite;
}

.cloud-d::before { width: 26px; height: 26px; left: 16px; top: -10px; }
.cloud-d::after { width: 30px; height: 30px; left: 40px; top: -12px; }

.cloud-e {
  width: 64px;
  height: 18px;
  left: 52%;
  top: 36px;
  opacity: .38;
  animation: swayCloud 14s ease-in-out infinite reverse;
}

.cloud-e::before { width: 22px; height: 22px; left: 10px; top: -8px; }
.cloud-e::after { width: 26px; height: 26px; left: 28px; top: -11px; }

.hero-illustration {
  z-index: 1;
}

.mini-float {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 20px rgba(89, 148, 209, 0.08), inset 0 0 0 1px rgba(255,255,255,.42);
}

.shortcut-card {
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease, background .26s ease;
}

.shortcut-card::before,
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shortcut-card::before {
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,.42) 42%, transparent 64%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}

.shortcut-card::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(88,183,255,.0) 0%, rgba(88,183,255,.72) 50%, rgba(88,183,255,.0) 100%);
  transform: scaleX(.28);
  opacity: 0;
  transition: opacity .26s ease, transform .26s ease;
}

.shortcut-card:hover::before {
  transform: translateX(120%);
}

.shortcut-card:hover::after,
.shortcut-card:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

.shortcut-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 28px rgba(72, 136, 205, 0.10) !important;
}

.shortcut-card:hover .shortcut-icon,
.shortcut-card:focus-within .shortcut-icon {
  transform: translateY(-2px) scale(1.04);
  background: linear-gradient(180deg, rgba(242,249,255,.96) 0%, rgba(225,242,255,.84) 100%);
}

.shortcut-icon {
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.service-card {
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease, background .26s ease;
}

.service-card::after {
  inset: auto 18px 18px auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89,180,255,.16) 0%, rgba(89,180,255,0) 68%);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .26s ease, transform .26s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 30px rgba(74, 137, 205, .09) !important;
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
  transform: translateX(0);
}

.service-card:hover .icon,
.service-card:focus-within .icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow: inset 0 0 0 1px rgba(122, 190, 241, .18), 0 10px 18px rgba(74, 137, 205, .10);
}

.service-card .icon,
.service-card a,
.service-card small {
  transition: transform .22s ease, color .22s ease, opacity .22s ease, box-shadow .22s ease;
}

.service-card:hover a,
.service-card:focus-within a {
  color: #2f88e7;
  transform: translateX(4px);
}

.service-card:hover small,
.service-card:focus-within small {
  color: #5f7ca6;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: .68; }
  50% { transform: scale(1.08); opacity: .9; }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
    padding: 10px 12px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(245,251,255,.66));
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(237,246,255,.76));
    box-shadow: 0 10px 18px rgba(75, 137, 205, .08);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  }

  .menu-toggle:hover,
  .menu-toggle.is-open {
    transform: translateY(-1px);
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(231,244,255,.88));
    box-shadow: 0 12px 22px rgba(75, 137, 205, .12);
  }

  .menu-toggle span {
    width: 18px;
    margin: 0;
    transition: transform .24s ease, opacity .24s ease;
  }

  .menu-toggle span + span {
    margin-top: 4px;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 82px;
    left: 12px;
    right: 12px;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(125, 191, 238, .22);
    background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,251,255,.90));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(74, 137, 205, .12);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
    z-index: 60;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .main-nav a {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.56);
    border: 1px solid rgba(124, 190, 238, .12);
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(239,248,255,.82);
  }

  .nav-cta {
    margin-top: 4px;
    min-height: 48px;
  }

  .hero-visual {
    min-height: 380px !important;
  }

  .cloud-c { right: 16px; top: 140px; }
  .cloud-d { left: 18px; bottom: 104px; }
  .cloud-e { left: 48%; top: 24px; }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    top: 6px;
    margin-top: 6px;
    padding: 9px 10px;
    border-radius: 20px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .main-nav {
    top: 76px;
    left: 8px;
    right: 8px;
    padding: 12px;
    border-radius: 22px;
  }

  .main-nav a {
    font-size: 13px;
    min-height: 44px;
  }

  .hero-visual {
    min-height: 346px !important;
  }

  .hero-orb.orb-a {
    width: 96px;
    height: 96px;
    top: 8px;
    right: 16px;
  }

  .orb-b {
    width: 84px;
    height: 84px;
    left: 0;
    bottom: 48px;
  }

  .orb-c {
    width: 66px;
    height: 66px;
    right: 86px;
    bottom: 58px;
  }

  .cloud-c { right: 8px; top: 128px; transform: scale(.88); }
  .cloud-d { left: 8px; bottom: 92px; transform: scale(.84); }
  .cloud-e { left: 54%; top: 18px; transform: scale(.78); }

  .shortcut-card {
    min-height: 88px !important;
  }

  .service-card:hover,
  .shortcut-card:hover {
    transform: translateY(-2px) !important;
  }
}

/* --------------------------------------------------------------------------
   Patch: pricing badge overlap + custom Game Islami icon
   -------------------------------------------------------------------------- */

#paket {
  padding-top: 70px !important;
}

#paket .section-heading {
  margin-bottom: 28px !important;
}

#paket .pricing-grid {
  padding-top: 22px;
  align-items: stretch;
}

.price-card {
  overflow: visible !important;
}

.price-card.featured {
  transform: none !important;
  margin-top: 0 !important;
  padding-top: 62px !important;
}

.price-card .badge {
  top: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 4;
  box-shadow: 0 10px 20px rgba(52, 137, 230, 0.16);
}

.shortcut-icon img[src*="premium"],
.icon img[src*="premium"] {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(55, 96, 160, 0.08));
}

.shortcut-icon:has(img[src*="premium"]),
.icon:has(img[src*="premium"]) {
  background: linear-gradient(180deg, rgba(245,249,255,.96) 0%, rgba(233,243,255,.82) 100%);
}

@media (max-width: 860px) {
  #paket {
    padding-top: 58px !important;
  }

  #paket .pricing-grid {
    padding-top: 14px;
  }

  .price-card.featured {
    padding-top: 58px !important;
  }

  .price-card .badge {
    top: 14px !important;
    font-size: 11.5px;
    padding-inline: 12px;
  }
}

@media (max-width: 560px) {
  #paket .section-heading {
    margin-bottom: 22px !important;
  }

  .price-card.featured {
    padding-top: 54px !important;
  }

  .price-card .badge {
    top: 12px !important;
    min-height: 28px;
  }

  .shortcut-icon img[src*="premium"],
  .icon img[src*="premium"] {
    width: 34px;
    height: 34px;
  }
}

/* --------------------------------------------------------------------------
   Product image patch: lighter webp visuals for first 3 product cards
   -------------------------------------------------------------------------- */
.product-art.image-art {
  padding: 0 !important;
  overflow: hidden;
  border-radius: 20px;
  min-height: 170px;
  background: linear-gradient(180deg, rgba(234,245,255,.82) 0%, rgba(248,252,255,.92) 100%) !important;
}

.product-art.image-art img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease, filter .3s ease;
}

.product-card:hover .product-art.image-art img,
.product-card:focus-within .product-art.image-art img {
  transform: scale(1.03);
  filter: saturate(1.02);
}

.product-art.image-art::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 24%, rgba(255,255,255,0) 72%, rgba(255,255,255,.12) 100%),
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 26%);
}

@media (max-width: 560px) {
  .product-art.image-art,
  .product-art.image-art img {
    min-height: 136px;
  }
}
