@charset "UTF-8";
/*
  Bedane — Dark + Gold redesign overlay
  Loaded AFTER master.css to restyle the marketing site
  Theme: charcoal/ink background, molten-gold accents, glassmorphism
*/
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink-900: #0b0b10;
  --ink-850: #101019;
  --ink-800: #14141f;
  --ink-700: #1a1a28;
  --ink-600: #232336;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --gold-400: #ffd35c;
  --gold-500: #f5b324;
  --gold-600: #e09a16;
  --gold-grad: linear-gradient(135deg, #ffe07a 0%, #f5b324 45%, #e08c0f 100%);
  --gold-glow: 0 18px 50px rgba(245, 179, 36, 0.35);

  --text-100: #f6f6fb;
  --text-300: #c7c9d6;
  --text-500: #8f93a8;

  --card-bg: rgba(255, 255, 255, 0.035);
  --card-bg-hover: rgba(255, 255, 255, 0.06);
  --radius: 18px;
  --font-head: "Sora", "Roboto", sans-serif;
  --font-body: "Space Grotesk", "Roboto", sans-serif;
}

/* ---------- Base / typography ---------- */
html, body {
  background: var(--ink-900);
}
body {
  font-family: var(--font-body);
  color: var(--text-300);
  font-size: 18px;
  line-height: 1.7;
  background:
    radial-gradient(1100px 700px at 85% -10%, rgba(245, 179, 36, 0.14), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(245, 179, 36, 0.06), transparent 55%),
    var(--ink-900);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--text-100);
  letter-spacing: -0.01em;
}

a { color: var(--text-300); }
a:hover { color: var(--gold-400); }

::selection { background: rgba(245, 179, 36, 0.3); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink-850); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-600), var(--gold-500));
  border-radius: 8px;
  border: 3px solid var(--ink-850);
}

/* Preloader recolor */
.mesh-loader { background: var(--ink-900); }
.mesh-loader .circle { background: var(--gold-500); }

/* ---------- Section backgrounds ---------- */
.primary_bg {
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(245, 179, 36, 0.08), transparent 60%),
    var(--ink-850);
}
.third2_bg {
  background:
    radial-gradient(800px 500px at 80% 20%, rgba(245, 179, 36, 0.12), transparent 60%),
    var(--ink-800) !important;
}
.feature_area, .about_area, .counter_area, .faq_area, .apps_area {
  background: var(--ink-900);
  position: relative;
  z-index: 2;
}

/* ---------- Headings ---------- */
.heading h1 {
  color: var(--text-100);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.heading p { color: var(--text-500); }
.heading.hbm h1 {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white p {
  color: var(--text-100);
}
.content_box h6 { color: var(--text-100); font-weight: 700; }
p { color: var(--text-300); }

/* ---------- Header ---------- */
.header_area { transition: all 0.35s ease; }
.main_menu ul li a {
  color: var(--text-300);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  position: relative;
}
.main_menu ul li a:hover { color: var(--gold-400); }
.main_menu ul li a:after {
  content: "";
  position: absolute;
  left: 13px;
  bottom: 30px;
  width: 0;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.main_menu ul li a:hover:after { width: calc(100% - 26px); }

.header_area.sticky {
  background: rgba(11, 11, 16, 0.72) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.header_area.sticky .main_menu ul li a { padding-top: 28px; padding-bottom: 28px; }
.header_area.sticky .main_menu ul li a:after { bottom: 18px; }

/* Buttons */
a.action_btn, a.header_btn {
  background: var(--gold-grad);
  color: var(--ink-900);
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 28px;
  box-shadow: var(--gold-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
a.action_btn:hover, a.header_btn:hover {
  color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(245, 179, 36, 0.5);
}
a.btn2 {
  background: var(--gold-grad);
  color: var(--ink-900);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  border-radius: 999px;
  padding: 17px 44px;
  box-shadow: var(--gold-glow);
  overflow: hidden;
}
a.btn2:after { background: #fff; }
a.btn2:hover {
  color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(245, 179, 36, 0.5);
}

/* ---------- Hero ---------- */
.welcome_area {
  background:
    radial-gradient(1000px 700px at 78% 28%, rgba(245, 179, 36, 0.16), transparent 62%),
    linear-gradient(180deg, #0e0e16 0%, #0b0b10 100%) !important;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.welcome_area:before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: 4%;
  top: 12%;
  background: radial-gradient(circle, rgba(245, 179, 36, 0.22), transparent 68%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.title { position: relative; z-index: 3; }
.title h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55);
}
.title h1 .word:last-child, .title h1 br + * { color: var(--gold-400); }
.title h1 .hero_accent { color: var(--gold-400); text-shadow: 0 2px 30px rgba(245, 179, 36, 0.35); }
.title h6 {
  color: #e9ebf3;
  font-weight: 400;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}
.apps_img, .mobile_img {
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
  position: relative;
  z-index: 3;
}

/* Hero carousel */
.hero_carousel .hero_slide {
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.hero_carousel .apps { display: flex; justify-content: center; }
.hero_carousel .owl-stage-outer { overflow: hidden; }
/* Push each slide's content inward (right) so its glow sits away from the slide's
   left edge — the boundary where the incoming next slide would otherwise bleed. */
.hero_carousel .title { padding-left: 50px; }

/* Minimal phone outline frame — light/grey design style */
.phone_frame {
  position: relative;
  width: 300px;
  max-width: 78%;
  aspect-ratio: 1170 / 2532;
  margin: 0 auto;
  padding: 54px 11px 12px;
  border-radius: 46px;
  background: linear-gradient(160deg, #f4f5f8, #d9dbe3);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.9),
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 50px 90px rgba(0, 0, 0, 0.55);
  box-sizing: border-box;
  overflow: hidden;
}
.phone_frame .apps_img,
.owl-carousel .owl-item .phone_frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px 8px 35px 35px;
  display: block;
  filter: none;
  max-width: 100%;
}
/* smaller variant for the Sneakpeak carousel */
.phone_frame_sm { width: 230px; padding: 44px 9px 10px; border-radius: 38px; }
.phone_frame_sm .phone_island { top: 16px; width: 64px; height: 18px; }
.owl-carousel .owl-item .phone_frame_sm > img { border-radius: 6px 6px 28px 28px; }
.screen_carousel .single_screen { display: flex; justify-content: center; }
.phone_island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 24px;
  background: #1a1a22;
  border-radius: 14px;
  z-index: 4;
}
/* side buttons */
.phone_frame:before,
.phone_frame:after {
  content: "";
  position: absolute;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: rgba(0, 0, 0, 0.12);
}
.phone_frame:before { left: -3px; top: 150px; height: 46px; }
.phone_frame:after { right: -3px; top: 130px; height: 56px; border-radius: 0 3px 3px 0; }

.hero_carousel .owl-dots { text-align: left; margin-top: 30px; position: relative; z-index: 3; }
.hero_carousel .owl-dots .owl-dot {
  width: 30px; height: 5px; border-radius: 3px; display: inline-block;
  margin-right: 8px; background: rgba(255, 255, 255, 0.25); transition: all 0.3s;
}
.hero_carousel .owl-dots .owl-dot.active { width: 46px; background: var(--gold-grad); }

/* ---------- Core feature cards ---------- */
.single_core_feature {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px 38px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.single_core_feature:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 50% -20%, rgba(245, 179, 36, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.single_core_feature:hover {
  background: var(--card-bg-hover) !important;
  border-color: rgba(245, 179, 36, 0.45);
  transform: translateY(-8px);
}
.single_core_feature:hover:before { opacity: 1; }
.single_core_feature .content_box { position: relative; z-index: 2; }

.icon_box {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: var(--gold-grad);
  box-shadow: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  transition: transform 0.4s ease;
}
.single_core_feature:hover .icon_box { transform: rotate(-6deg) scale(1.06); }
.icon_box svg path[fill="#fff"] { fill: var(--ink-900); }
.icon_box svg path[stroke="#fff"] { stroke: var(--ink-900); }

/* ---------- About / steps ---------- */
.single_about { position: relative; padding: 12px 10px; }
.single_about_icon {
  position: relative;
  width: 120px;
  height: 120px;
  max-width: none;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 0 34px rgba(245, 179, 36, 0.1), 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.single_about_icon:before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 179, 36, 0.16), transparent 70%);
}
.single_about:hover .single_about_icon {
  transform: translateY(-6px);
  border-color: rgba(245, 179, 36, 0.5);
}
/* recolor the blue template icons to gold */
.single_about_icon img {
  position: relative;
  z-index: 2;
  max-width: 54px;
  filter: brightness(0) saturate(100%) invert(78%) sepia(54%) saturate(900%) hue-rotate(348deg) brightness(101%) contrast(96%);
}
/* step number badge */
.single_about_icon:after {
  counter-increment: about-step;
  content: counter(about-step);
  position: absolute;
  right: 6px;
  top: 6px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--ink-900);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gold-glow);
  z-index: 3;
}
.about_area .row.justify-content-center { counter-reset: about-step; }
.single_about .content_box h6 { font-size: 20px; }
/* gold connector line replacing the blue template arrow */
.single_about.about_line:after,
.single_about.about_line.about_line2:after {
  background: none !important;
  height: 2px;
  width: 60%;
  top: 60px;
  left: 70%;
  border-top: 2px dashed rgba(245, 179, 36, 0.5);
  filter: none;
  opacity: 1;
}
.single_about.about_line.about_line2:after { transform: none; left: 70%; top: 60px; }

/* ---------- More feature ---------- */
.single_more_feature {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.single_more_feature:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at 20% -20%, rgba(245, 179, 36, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.single_more_feature:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 179, 36, 0.45);
  background: var(--card-bg-hover);
}
.single_more_feature:hover:before { opacity: 1; }
.single_more_feature .more_feature_content { position: relative; z-index: 2; }
.single_more_feature .more_feature_content h6 { margin-top: 22px; font-size: 20px; }

/* Icon turned into a glowing gold box (overrides absolute positioning) */
.single_more_feature .more_feature_icon {
  position: relative;
  left: auto;
  top: auto;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: var(--gold-grad);
  box-shadow: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.single_more_feature:hover .more_feature_icon { transform: rotate(-6deg) scale(1.06); }
.single_more_feature .more_feature_icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(0);
}

/* ---------- Counter ---------- */
.single_counter {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 26px;
  color: var(--text-100);
  font-family: var(--font-head);
  font-weight: 700;
}
.single_counter span span:last-child { color: var(--gold-400); }
.counter_label { margin: 6px 0 0; font-size: 14px; color: var(--text-500); font-family: var(--font-body); }

/* ---------- Screen carousel ---------- */
.screen_carousel .owl-dots .owl-dot { background: var(--ink-600); }
.screen_carousel .owl-dots .owl-dot.active { background: var(--gold-500); }
.single_screen img { filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55)); }

/* ---------- Testimonials ---------- */
.single_testimonial {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  height: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.single_testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 179, 36, 0.4);
}
.single_testimonial p {
  color: var(--text-300);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 17px;
  line-height: 1.75;
}
.testi_author a { color: var(--text-100); font-family: var(--font-head); }
.testi_author_img {
  border: 2px solid rgba(245, 179, 36, 0.5);
}
.rating li a { color: var(--gold-400); }

/* ---------- FAQ accordion ---------- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  overflow: hidden;
}
.card-header { background: none; }
button.btn.btn-link.btn-block.text-left {
  color: var(--text-100);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
}
button.btn.btn-link:hover { color: var(--gold-400); }
.card-body { color: var(--text-500); font-size: 17px; line-height: 1.7; }
.faq_area button.btn.btn-link:after { color: var(--gold-400); }
.faq_area button.btn.btn-link[aria-expanded=true] { color: var(--gold-400); }

/* ---------- Apps / download ---------- */
.qrcode {
  border-radius: 18px;
  padding: 12px;
  background: #fff;
  box-shadow: var(--gold-glow);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-850);
  border-top: 1px solid var(--line);
}
p.footer_pera { color: var(--text-500); }
.single_footer h3 { color: var(--text-100); }
.single_footer ul li a { color: var(--text-500); }
.single_footer ul li a:hover { color: var(--gold-400); }
.social1 ul li a {
  border: 1px solid var(--line-strong);
  color: var(--text-300);
  background: var(--card-bg);
}
.social1 ul li a:hover {
  border-color: transparent;
  background: var(--gold-grad);
  color: var(--ink-900);
  transform: translateY(-3px);
}
.copyright {
  background: var(--ink-900);
  border-top: 1px solid var(--line);
}
.copyright p { color: var(--text-500); }

/* ---------- Responsive ---------- */
@media screen and (max-width: 767px) {
  .title h1 { font-size: 38px; }
  body { font-size: 16px; }
  .single_core_feature { padding: 36px 26px; }
}

/* ---------- Contrast & spacing fixes ---------- */
/* Brand: icon-only logo.png + text wordmark */
.logo .brand, .footer_logo .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo .brand img { height: 44px; width: auto; }
.footer_logo .brand img { height: 40px; width: auto; }
.brand_name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1;
}
.logo .brand:hover .brand_name,
.footer_logo .brand:hover .brand_name { color: var(--gold-400); }

/* Header nav: force clearly-light links with subtle shadow over hero image */
.main_menu ul li a {
  color: #eef0f7 !important;
  font-weight: 600;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.main_menu ul li a:hover { color: var(--gold-400) !important; }

/* Footer: breathing room from section above + brighter copy */
.footer {
  margin-top: 60px;
  padding-top: 90px;
  border-top: 1px solid var(--line);
}
.footer_logo { margin-bottom: 26px; }
p.footer_pera { color: var(--text-300); max-width: 560px; }
.copyright { margin-top: 0; }
