/* ==========================================================================
   Creative Business Solutions FZE LLC — Main Stylesheet
   Premium UAE corporate consultancy website
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  --white: #ffffff;
  --ink: #151515;
  --ink-soft: #2b2e33;
  --muted: #5c6670;
  --muted-2: #8a929c;

  --cyan: #18A9D5;
  --cyan-dark: #0f85a8;
  --purple: #8263B1;
  --green: #8DC63F;
  --orange: #F7941D;
  --red: #E4572E;

  --line: #e8eaee;
  --bg-soft: #f5f7fa;
  --bg-soft-2: #eef2f6;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 18px rgba(21, 21, 21, 0.06);
  --shadow: 0 18px 46px rgba(21, 21, 21, 0.10);
  --shadow-lg: 0 30px 70px rgba(21, 21, 21, 0.16);

  --font-head: 'Manrope', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --nav-h: 82px;
}


.logo-img {
  width: 190px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .logo-img {
    width: 150px;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; margin: 0; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
:focus-visible { outline: 3px solid rgba(24, 169, 213, 0.5); outline-offset: 2px; border-radius: 4px; }
body.menu-open { overflow: hidden; }

/* ---------- Layout helpers ---------- */
.container { width: min(1220px, 92%); margin: 0 auto; }
.section { padding: clamp(64px, 9vw, 118px) 0; }
.section-alt { background: var(--bg-soft); }
.section-tight { padding: clamp(56px, 7vw, 96px) 0; }

/* ---------- Eyebrow / section headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 16px;
}
.eyebrow .eyebrow-line {
  width: 34px; height: 4px; border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--green), var(--orange));
}
.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
.section-title em { font-style: normal; color: var(--cyan); }
.section-lead { margin-top: 16px; color: var(--muted); font-size: 1.06rem; }
.section-head.center .eyebrow .eyebrow-line { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-primary { background: var(--cyan); color: #fff; box-shadow: 0 12px 26px rgba(24, 169, 213, 0.28); }
.btn-primary:hover { background: var(--cyan-dark); box-shadow: 0 16px 32px rgba(24, 169, 213, 0.34); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--ink); border-color: #d7dbe1; }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan-dark); box-shadow: var(--shadow-sm); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { box-shadow: var(--shadow); }
.btn-ghost-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); }
.btn .wa { width: 18px; height: 18px; flex: none; }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader .logo-mark { width: 74px; height: 74px; animation: prePulse 1.6s ease-in-out infinite; }
.preloader-name {
  font-family: var(--font-head); font-weight: 800; letter-spacing: 0.04em; color: var(--ink);
  font-size: 1rem; text-transform: uppercase;
}
.preloader-bar { width: 150px; height: 4px; border-radius: 4px; background: var(--bg-soft-2); overflow: hidden; }
.preloader-bar span {
  display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--green), var(--orange));
  animation: preBar 1.1s ease-in-out infinite;
  border-radius: 4px;
}
@keyframes prePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.09); } }
@keyframes preBar { 0% { transform: translateX(-120%); } 100% { transform: translateX(400%); } }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { background: rgba(255,255,255,0.94); box-shadow: 0 6px 24px rgba(21,21,21,0.07); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.logo-mark { width: 48px; height: 48px; flex: none; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.12; }
.logo-name { font-family: var(--font-head); font-weight: 800; font-size: 1.08rem; letter-spacing: -0.01em; color: var(--ink); white-space: nowrap; }
.logo-sub { font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; color: var(--cyan-dark); letter-spacing: 0.02em; white-space: nowrap; }
.logo-fze { color: var(--muted-2); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative; display: inline-block; padding: 8px 13px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--ink-soft);
  transition: color .2s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--green), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--ink); }

.nav-cta { padding: 12px 22px; font-size: 0.92rem; }

/* Hamburger */
.hamburger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: var(--bg-soft); border: 1px solid var(--line);
}
.hamburger span { display: block; width: 22px; height: 2.4px; border-radius: 2px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 70px)); padding-bottom: clamp(40px, 5vw, 60px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; }
.blob-1 { width: 420px; height: 420px; background: #d4f1fa; top: -120px; left: -120px; }
.blob-2 { width: 360px; height: 360px; background: #ece5f7; top: 20%; right: -140px; }
.blob-3 { width: 280px; height: 280px; background: #e7f4d2; bottom: -120px; left: 35%; }

.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 40px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 22px;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(141,198,63,0.2); }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.hero-title .grad {
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-text { margin-top: 20px; font-size: 1.1rem; color: var(--muted); max-width: 540px; }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 26px; }
.hero-meta-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); }
.hero-meta-item svg { width: 22px; height: 22px; color: var(--cyan); flex: none; }

.hero-media { position: relative; }
.hero-media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; animation: heroFloat 7s ease-in-out infinite; }
@keyframes heroFloat { 0%,100% { transform: scale(1.03) translateY(0); } 50% { transform: scale(1.03) translateY(-12px); } }

.hero-float-card {
  position: absolute; background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  animation: floatCard 6s ease-in-out infinite;
}
.hero-float-card.one { bottom: 26px; left: -28px; }
.hero-float-card.two { top: 22px; right: -20px; animation-delay: -3s; }
.hero-float-card .ic { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.hero-float-card .ic svg { width: 22px; height: 22px; color: #fff; }
.hero-float-card .lbl { font-size: 0.72rem; color: var(--muted-2); font-weight: 600; }
.hero-float-card .val { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 0.95rem; line-height: 1.2; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* decorative logo-inspired triangle */
.tri { position: absolute; border-radius: 40%; }
.tri-1 { width: 90px; height: 90px; background: rgba(24,169,213,0.12); top: -30px; left: -20px; transform: rotate(15deg); }
.tri-2 { width: 60px; height: 60px; background: rgba(130,99,177,0.14); bottom: -20px; right: -8px; transform: rotate(-12deg); }

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip { background: var(--ink); color: #fff; padding: 30px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 48px; height: 48px; border-radius: 12px; flex: none; display: grid; place-items: center; }
.trust-icon svg { width: 24px; height: 24px; color: #fff; }
.trust-item b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: #fff; }
.trust-item span { font-size: 0.82rem; color: rgba(255,255,255,0.66); }

/* ==========================================================================
   SPLIT / MEDIA layouts
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.split.reverse .split-media { order: 2; }
.media { position: relative; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.media:hover .media-frame img { transform: scale(1.05); }
.media-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,169,213,0) 55%, rgba(21,21,21,0.35));
  pointer-events: none;
}
.media .chip {
  position: absolute; bottom: 22px; left: 22px; background: #fff; border-radius: 12px;
  padding: 12px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.media .chip .num { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--cyan-dark); }
.media .chip .txt { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); line-height: 1.3; }
.media .corner { position: absolute; width: 120px; height: 120px; border-radius: 28px; z-index: -1; }
.media .corner.c1 { background: rgba(24,169,213,0.12); top: -24px; right: -24px; }
.media .corner.c2 { background: rgba(130,99,177,0.12); bottom: -24px; left: -24px; }

/* checklist */
.check-list { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; }
.check-icon { width: 30px; height: 30px; border-radius: 9px; flex: none; display: grid; place-items: center; margin-top: 2px; }
.check-icon svg { width: 17px; height: 17px; color: #fff; }
.check-item b { display: block; font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.check-item p { color: var(--muted); font-size: 0.95rem; }

/* ==========================================================================
   SERVICES CARDS
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 28px; overflow: hidden; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--card-accent, var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .num {
  position: absolute; top: 24px; right: 26px; font-family: var(--font-head); font-weight: 800; font-size: 2.2rem;
  color: rgba(21,21,21,0.06);
}
.service-icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px; }
.service-icon svg { width: 28px; height: 28px; color: #fff; }
.service-card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.96rem; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.card-link svg { width: 18px; height: 18px; color: var(--cyan); transition: transform .25s ease; }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 26px; transition: transform .3s ease, box-shadow .3s ease; }
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.step-num {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  color: var(--cyan-dark); margin-bottom: 16px;
}
.step-num .bar { width: 26px; height: 3px; border-radius: 3px; background: var(--step-accent, var(--cyan)); }
.process-step h3 { font-size: 1.18rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.95rem; }
.process-line { position: absolute; top: 50%; left: 6%; right: 6%; height: 2px; background: repeating-linear-gradient(90deg, var(--cyan) 0 8px, transparent 8px 16px); opacity: 0.35; z-index: -1; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta { position: relative; }
.cta-inner {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #141a24 0%, #1b2b3a 55%, #23203a 100%);
  color: #fff; padding: clamp(40px, 6vw, 72px);
  box-shadow: var(--shadow-lg);
}
.cta-inner::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(24,169,213,0.35), transparent 70%); top: -160px; right: -80px; }
.cta-inner::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(130,99,177,0.32), transparent 70%); bottom: -140px; left: -60px; }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 34px; position: relative; z-index: 1; }
.cta-title { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); max-width: 620px; }
.cta-text { color: rgba(255,255,255,0.82); margin-top: 16px; max-width: 560px; font-size: 1.05rem; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; flex: none; }
.cta .accent-line { width: 64px; height: 5px; border-radius: 3px; background: linear-gradient(90deg, var(--cyan), var(--purple), var(--green), var(--orange)); margin-bottom: 20px; }

/* ==========================================================================
   PAGE BANNER (inner pages)
   ========================================================================== */
.page-banner { position: relative; padding: calc(var(--nav-h) + clamp(40px, 6vw, 66px)) 0 clamp(46px, 6vw, 72px); overflow: hidden; background: var(--bg-soft); }
.page-banner .banner-bg { position: absolute; inset: 0; z-index: 0; }
.page-banner .banner-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.16; }
.page-banner .banner-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.82) 45%, rgba(245,247,250,0.55) 100%); }
.banner-inner { position: relative; z-index: 1; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--cyan-dark); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { color: var(--muted-2); }
.banner-title { font-size: clamp(2rem, 4.6vw, 3.2rem); max-width: 780px; }
.banner-text { margin-top: 16px; font-size: 1.1rem; color: var(--muted); max-width: 640px; }

/* ==========================================================================
   VALUES (about)
   ========================================================================== */
.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 24px; text-align: left; transition: transform .3s ease, box-shadow .3s ease; }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.value-card .v-ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; }
.value-card .v-ic svg { width: 24px; height: 24px; color: #fff; }
.value-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.92rem; }

/* vision / mission */
.vision-card {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.vision-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--cyan), var(--purple), var(--green), var(--orange)); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.mission-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .3s ease, box-shadow .3s ease; }
.mission-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mission-item .m-num { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1rem; }
.mission-item p { color: var(--muted); }
.mission-item b { color: var(--ink); font-family: var(--font-head); font-weight: 700; display: block; }
@media (max-width: 576px) { .mission-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   SERVICE DETAIL (services page)
   ========================================================================== */
.service-detail { border-bottom: 1px solid var(--line); }
.service-detail .split { padding: 0; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin-top: 26px; }
.feature-list li { display: flex; align-items: center; gap: 11px; font-weight: 500; color: var(--ink-soft); font-size: 0.96rem; }
.feature-list li svg { width: 20px; height: 20px; color: var(--green); flex: none; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag { font-size: 0.78rem; font-weight: 600; padding: 7px 14px; border-radius: 30px; background: var(--bg-soft); color: var(--ink-soft); }

/* ==========================================================================
   BANKING PAGE
   ========================================================================== */
.bank-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bank-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform .3s ease, box-shadow .3s ease; }
.bank-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.bank-card .b-ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; }
.bank-card .b-ic svg { width: 26px; height: 26px; color: #fff; }
.bank-card h3 { font-size: 1.16rem; margin-bottom: 11px; }
.bank-card p { color: var(--muted); font-size: 0.94rem; }
.disclaimer {
  margin-top: 40px; background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--orange);
  border-radius: 12px; padding: 18px 22px; font-size: 0.86rem; color: var(--muted); line-height: 1.65;
}
.disclaimer b { color: var(--ink); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px; transition: transform .3s ease, box-shadow .3s ease; }
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-card .c-ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; }
.contact-card .c-ic svg { width: 24px; height: 24px; color: #fff; }
.contact-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.contact-card a, .contact-card p { color: var(--muted); font-size: 0.94rem; word-break: break-word; }
.contact-card a:hover { color: var(--cyan-dark); }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 60px); align-items: flex-start; }
.contact-side .lead { color: var(--muted); margin-bottom: 22px; }
.contact-side .info-list { display: flex; flex-direction: column; gap: 18px; }
.contact-side .info-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-side .info-list .ii { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center; }
.contact-side .info-list .ii svg { width: 20px; height: 20px; color: #fff; }
.contact-side .info-list b { font-family: var(--font-head); color: var(--ink); display: block; }
.contact-side .info-list a, .contact-side .info-list span { color: var(--muted); font-size: 0.95rem; }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--ink); margin-bottom: 8px; }
.form-group label span { color: var(--red); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 11px;
  font-size: 0.98rem; color: var(--ink); background: var(--bg-soft); transition: border-color .2s ease, background .2s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--cyan); background: #fff; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-status { margin-top: 14px; font-size: 0.9rem; font-weight: 600; display: none; }
.form-status.error { display: block; color: var(--red); }
.form-status.success { display: block; color: var(--green); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: #cdd2d8; }
.footer .accent-line { height: 5px; background: linear-gradient(90deg, var(--cyan), var(--purple), var(--green), var(--orange), var(--red)); }
.footer-top { padding: clamp(50px, 6vw, 76px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-brand .logo-mark { width: 58px; height: 58px; }
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-sub { color: var(--cyan); }
.footer-brand .logo-fze { color: rgba(255,255,255,0.5); }
.footer-brand p { margin-top: 20px; font-size: 0.94rem; color: rgba(255,255,255,0.62); max-width: 320px; }
.footer-title { color: #fff; font-size: 1.02rem; font-weight: 700; margin-bottom: 20px; font-family: var(--font-head); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,0.66); font-size: 0.94rem; transition: color .2s ease, padding-left .2s ease; }
.footer-col a:hover { color: var(--cyan); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; color: rgba(255,255,255,0.66); }
.footer-contact li svg { width: 19px; height: 19px; color: var(--cyan); flex: none; margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,0.78); }
.footer-contact a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom .fb-links { display: flex; gap: 22px; }
.footer-bottom .fb-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom .fb-links a:hover { color: #fff; }

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,0.4);
  transition: transform .25s ease;
}
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-float:hover { transform: scale(1.08); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366;
  animation: waPulse 2.4s ease-out infinite;
}
.wa-float .tip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--ink); color: #fff; font-size: 0.8rem; font-weight: 600; padding: 7px 12px; border-radius: 8px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
}
.wa-float:hover .tip { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.7); opacity: 0; } }

.to-top {
  position: fixed; bottom: 96px; right: 26px; z-index: 900;
  width: 46px; height: 46px; border-radius: 12px; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--ink);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--cyan); color: #fff; border-color: var(--cyan); }
.to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal.from-left { transform: translateX(-34px); }
.reveal.from-right { transform: translateX(34px); }
.reveal.from-left.in-view, .reveal.from-right.in-view { transform: none; }
.reveal.zoom { transform: scale(0.94); }
.reveal.zoom.in-view { transform: none; }
.d1 { transition-delay: .06s; } .d2 { transition-delay: .12s; } .d3 { transition-delay: .18s; }
.d4 { transition-delay: .24s; } .d5 { transition-delay: .3s; } .d6 { transition-delay: .36s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  body { font-size: 16px; }
  .hamburger { display: flex; }
  .main-nav {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px 5%; box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  body.menu-open .main-nav { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; padding: 8px 0; }
  .nav-link { display: block; padding: 14px 6px; font-size: 1.05rem; border-bottom: 1px solid var(--bg-soft-2); }
  .nav-link::after { display: none; }
  .nav-link.active { color: var(--cyan-dark); }
  .nav-cta { margin: 16px 0 14px; width: 100%; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; }
  .hero-media-frame { aspect-ratio: 4 / 3.4; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-line { display: none; }
  .bank-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-item { flex-direction: column; align-items: flex-start; gap: 10px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .hero-float-card.one { left: 12px; }
  .hero-float-card.two { right: 12px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .bank-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .feature-list { grid-template-columns: 1fr; }
  .hero-float-card.two { display: none; }
  .hero-meta { flex-direction: column; gap: 14px; }
}

@media (max-width: 430px) {
  .trust-grid { grid-template-columns: 1fr; }
  .logo-name { font-size: 0.98rem; }
  .logo-sub { font-size: 0.72rem; }
  .logo-mark { width: 42px; height: 42px; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 18px; }
  .to-top { right: 18px; bottom: 84px; }
}
