/* ============================================================
   Ramy Wakem — Financial & Accounting Office
   Arabic RTL · Navy / Gold / Cream · Trustworthy corporate
   ============================================================ */

:root {
  /* Vibrant Blue/Cyan Theme */
  --navy-900: #022b42;
  --navy-850: #033959;
  --navy-800: #044b75;
  --navy-700: #066299;
  --navy-600: #0b80c4;

  /* Vibrant Orange/Gold */
  --gold:        #ff8c00;
  --gold-light:  #ffa733;
  --gold-bright: #ffc266;
  --gold-deep:   #e67300;

  /* Neutrals */
  --cream:  #f0f7f9;
  --paper:  #fafdff;
  --white:  #ffffff;
  --ink:    #011624;
  --muted:  #4f6b7c;
  --line:   rgba(4, 75, 117, 0.12);
  --line-gold: rgba(255, 140, 0, 0.30);

  --maxw: 1240px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(7, 24, 42, 0.06);
  --shadow-md: 0 14px 40px rgba(7, 24, 42, 0.10);
  --shadow-lg: 0 30px 80px rgba(7, 24, 42, 0.18);

  --ff-display: "El Messiri", "Tajawal", system-ui, sans-serif;
  --ff-body: "Tajawal", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.2; font-weight: 600; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }

/* Section rhythm */
section { position: relative; }
.section-pad { padding-block: clamp(72px, 9vw, 130px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body);
  font-weight: 700; font-size: 14px; letter-spacing: 0.5px;
  color: var(--gold-deep);
  text-transform: none;
}
.eyebrow::before {
  content: ""; width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-top: 16px;
  color: var(--navy-900);
  letter-spacing: -0.5px;
}
.section-head p { margin-top: 16px; color: var(--muted); font-size: 18px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-body); font-weight: 700; font-size: 16px;
  padding: 15px 30px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: var(--navy-900);
  box-shadow: 0 12px 30px rgba(201, 162, 75, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(201, 162, 75, 0.45); }
.btn-ghost {
  background: transparent; color: var(--navy-800);
  border-color: var(--line-gold);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,162,75,0.08); }
.btn-light { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.25); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }

/* ============================================================
   TOP BAR + HEADER
   ============================================================ */
.topbar {
  background: var(--navy-900);
  color: rgba(245, 241, 232, 0.85);
  font-size: 14px;
  border-bottom: 1px solid rgba(201,162,75,0.18);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 9px; }
.topbar-tax { display: inline-flex; align-items: center; gap: 10px; }
.topbar-tax b { color: var(--gold-light); letter-spacing: 1px; font-variant-numeric: tabular-nums; }
.topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-right a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar-right a:hover { color: var(--gold-light); }
.topbar-right svg { width: 15px; height: 15px; color: var(--gold); }
.topbar .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 245, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
header.nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(251, 250, 245, 0.94); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 16px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: linear-gradient(140deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center;
  border: 1px solid rgba(201,162,75,0.4);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.brand-mark span {
  font-family: var(--ff-display); font-weight: 700; font-size: 22px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-text b { display: block; font-family: var(--ff-display); font-weight: 700; font-size: 20px; color: var(--navy-900); line-height: 1.15; }
.brand-text small { display: block; font-size: 12.5px; color: var(--muted); letter-spacing: 0.3px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 600; font-size: 15.5px; color: var(--navy-800);
  padding: 9px 15px; border-radius: 10px; transition: color .2s, background .2s; position: relative;
}
.nav-links a:hover { color: var(--gold-deep); background: rgba(201,162,75,0.08); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 46px; height: 46px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy-800); margin: 4px auto; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(33,82,125,0.55), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800) 60%, var(--navy-850));
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(201,162,75,0.07) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5; mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 30px;
  min-height: clamp(560px, 78vh, 760px);
  padding-block: 70px;
  position: relative; z-index: 2;
}
.hero-copy { max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,162,75,0.12); border: 1px solid rgba(201,162,75,0.35);
  color: var(--gold-light); padding: 8px 16px; border-radius: 100px;
  font-size: 14px; font-weight: 600; margin-bottom: 26px;
}
.hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 0 rgba(227,200,135,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(227,200,135,0.5);} 70%{box-shadow:0 0 0 12px rgba(227,200,135,0);} 100%{box-shadow:0 0 0 0 rgba(227,200,135,0);} }

.hero h1 {
  font-size: clamp(38px, 5.6vw, 70px);
  line-height: 1.1; letter-spacing: -1px;
}
.hero h1 .gold {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 50%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { margin-top: 24px; font-size: clamp(17px, 2vw, 20px); color: rgba(245,241,232,0.82); max-width: 540px; }
.hero-actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { margin-top: 40px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; color: rgba(245,241,232,0.7); font-size: 14.5px; }
.hero-trust .ht { display: flex; align-items: center; gap: 9px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--gold-light); }
.hero-trust .sep { width: 1px; height: 22px; background: rgba(255,255,255,0.15); }

/* Coin stage */
.coin-stage { position: relative; height: 100%; min-height: 460px; display: grid; place-items: center; }
.coin-frame-wrap {
  position: relative; width: 100%; max-width: 560px; height: 470px;
  margin-inline: auto; overflow: hidden;
}
.coin-frame {
  position: absolute; left: 50%; top: 50%;
  width: 100%; height: 720px;            /* taller than window; crop hides Sketchfab UI top & bottom */
  transform: translate(-50%, -50%);      /* coin is camera-centered in the frame, so center the crop symmetrically */
  border: 0; background: transparent; display: block;
  opacity: 0; transition: opacity .8s ease; z-index: 2;
}
.coin-frame.ready { opacity: 1; }

.coin-loader { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; pointer-events: none; }
.coin-loader.hide { opacity: 0; transition: opacity .5s ease; }
.coin-loader .disc {
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold) 45%, var(--gold-deep) 80%);
  box-shadow: var(--shadow-lg), inset 0 0 40px rgba(0,0,0,0.25);
  animation: coinFlip 1.7s linear infinite;
}
@keyframes coinFlip { 0% { transform: rotateY(0); } 100% { transform: rotateY(360deg); } }
.coin-glow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.34), transparent 65%);
  filter: blur(24px); z-index: 0; animation: floatGlow 7s ease-in-out infinite;
}
@keyframes floatGlow { 0%,100%{transform:translateY(-8px) scale(1);} 50%{transform:translateY(10px) scale(1.05);} }
.coin-ring {
  position: absolute; border: 1px solid rgba(201,162,75,0.25); border-radius: 50%;
  z-index: 0;
}
.coin-ring.r1 { width: 440px; height: 440px; }
.coin-ring.r2 { width: 560px; height: 560px; border-color: rgba(201,162,75,0.14); }

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1; }
.hero-wave svg { width: 100%; height: 70px; display: block; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats {
  background: var(--paper);
  margin-top: -47px;
  padding-top: 47px;
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); background: var(--white);
}
.stat { padding: 38px 26px; text-align: center; border-inline-start: 1px solid var(--line); position: relative; }
.stat:first-child { border-inline-start: none; }
.stat .num { font-family: var(--ff-body); font-weight: 800; font-size: clamp(36px, 4vw, 52px); color: var(--navy-900); line-height: 1; direction: ltr; unicode-bidi: isolate; }
.stat .num .gold { color: var(--gold-deep); }
.stat .lbl { margin-top: 10px; color: var(--muted); font-size: 15.5px; font-weight: 600; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: linear-gradient(180deg, var(--paper), var(--cream)); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 32px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; top: 0; inset-inline-start: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: inline-start;
  transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--line-gold); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(140deg, var(--navy-700), var(--navy-900));
  border: 1px solid rgba(201,162,75,0.35);
}
.svc-icon svg { width: 30px; height: 30px; color: var(--gold-light); }
.svc-card h3 { font-size: 23px; color: var(--navy-900); margin-bottom: 12px; }
.svc-card p { color: var(--muted); font-size: 16px; }
.svc-card .svc-list { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.svc-card .svc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; color: var(--ink); }
.svc-card .svc-list li svg { width: 18px; height: 18px; color: var(--gold-deep); flex: none; margin-top: 5px; }

/* ============================================================
   ABOUT / WHY
   ============================================================ */
.about { background: var(--navy-900); color: #fff; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about .section-head h2 { color: #fff; }
.about-visual { position: relative; }
.about-frame {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(201,162,75,0.3);
  background: linear-gradient(160deg, var(--navy-700), var(--navy-850));
  aspect-ratio: 4/5; position: relative;
}
.placeholder {
  width: 100%; height: 100%; position: relative; display: grid; place-items: center;
  background-image: repeating-linear-gradient(45deg, rgba(201,162,75,0.06) 0 12px, transparent 12px 24px);
}
.placeholder .ph-label { font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 13px; color: rgba(227,200,135,0.7); letter-spacing: 0.5px; text-align: center; padding: 14px 18px; border: 1px dashed rgba(201,162,75,0.4); border-radius: 10px; background: rgba(7,24,42,0.4); }
.about-badge {
  position: absolute; inset-block-end: -26px; inset-inline-start: -26px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--navy-900); border-radius: 18px; padding: 22px 26px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 2px;
}
.about-badge b { font-family: var(--ff-display); font-size: 34px; line-height: 1; }
.about-badge span { font-size: 14px; font-weight: 700; }

.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
.why-item { display: flex; gap: 16px; }
.why-item .wi-ic { width: 48px; height: 48px; flex: none; border-radius: 13px; display: grid; place-items: center; background: rgba(201,162,75,0.12); border: 1px solid rgba(201,162,75,0.32); }
.why-item .wi-ic svg { width: 24px; height: 24px; color: var(--gold-light); }
.why-item h4 { font-size: 18px; color: var(--white); margin-bottom: 5px; }
.why-item p { font-size: 14.5px; color: rgba(245,241,232,0.66); line-height: 1.6; }
.about p.about-lead { color: rgba(245,241,232,0.8); font-size: 18px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step-num {
  font-family: var(--ff-display); font-weight: 700; font-size: 22px; color: var(--navy-900);
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 22px;
  background: var(--white); border: 1px solid var(--line-gold); box-shadow: var(--shadow-sm);
  position: relative; z-index: 2;
}
.step-num .gold { color: var(--gold-deep); }
.step h3 { font-size: 20px; color: var(--navy-900); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15.5px; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 32px; inset-inline-start: -13px; width: calc(100% - 64px);
  height: 2px; background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
  opacity: .5; z-index: 1;
  transform: translateX(0);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: var(--paper); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 32px; position: relative; box-shadow: var(--shadow-sm);
}
.testi-card .quote-mark { font-family: var(--ff-display); font-size: 80px; line-height: 0.6; color: var(--gold); opacity: .25; }
.testi-card p { font-size: 17px; color: var(--ink); margin-block: 14px 24px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars svg { width: 18px; height: 18px; color: var(--gold); }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; flex: none; background: linear-gradient(140deg, var(--navy-700), var(--navy-900)); color: var(--gold-light); display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; font-size: 19px; }
.testi-author b { display: block; font-size: 16px; color: var(--navy-900); }
.testi-author span { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq-wrap { max-width: 860px; margin-inline: auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item.open { border-color: var(--line-gold); box-shadow: var(--shadow-sm); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; cursor: pointer; font-family: var(--ff-display); font-weight: 600; font-size: 19px; color: var(--navy-900); }
.faq-q .icon { width: 32px; height: 32px; flex: none; border-radius: 50%; display: grid; place-items: center; background: rgba(201,162,75,0.12); transition: transform .3s, background .3s; }
.faq-q .icon svg { width: 18px; height: 18px; color: var(--gold-deep); transition: transform .3s; }
.faq-item.open .faq-q .icon { background: var(--gold); }
.faq-item.open .faq-q .icon svg { transform: rotate(45deg); color: var(--navy-900); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 16px; }

/* ============================================================
   CONTACT + MAP
   ============================================================ */
.contact { background: var(--navy-900); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.contact-info .section-head h2 { color: #fff; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; margin-top: 34px; }
.cc {
  display: flex; align-items: center; gap: 18px; padding: 18px 20px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: border-color .3s, background .3s, transform .3s;
}
.cc:hover { border-color: var(--line-gold); background: rgba(201,162,75,0.07); transform: translateX(-4px); }
.cc .cc-ic { width: 50px; height: 50px; flex: none; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(140deg, var(--gold-light), var(--gold-deep)); }
.cc .cc-ic svg { width: 24px; height: 24px; color: var(--navy-900); }
.cc b { display: block; font-size: 13px; color: var(--gold-light); font-weight: 700; }
.cc span { font-size: 17px; color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; direction: ltr; }
.cc.ltr span { unicode-bidi: plaintext; }

.contact-form {
  background: var(--white); color: var(--ink); border-radius: var(--radius-lg); padding: 38px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: 24px; color: var(--navy-900); margin-bottom: 6px; }
.contact-form .sub { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14.5px; font-weight: 700; color: var(--navy-800); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: 16px; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper);
  transition: border-color .25s, box-shadow .25s, background .25s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,75,0.14); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 12px; text-align: center; }
.form-success { display: none; background: rgba(31,111,84,0.1); border: 1px solid rgba(31,111,84,0.3); color: #1f6f54; padding: 14px 18px; border-radius: 12px; font-weight: 600; font-size: 15px; margin-top: 16px; text-align: center; }

.map-block { background: var(--cream); }
.map-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); position: relative; }
.map-frame iframe { width: 100%; height: 440px; border: 0; display: block; filter: grayscale(0.2) contrast(1.02); }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site {
  background: var(--navy-900); color: rgba(245,241,232,0.7); padding-block: 64px 0;
  border-top: 1px solid rgba(201,162,75,0.18);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-text b { color: #fff; }
.footer-brand p { font-size: 15px; line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 17px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 15px; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-tax { display: inline-flex; flex-direction: column; gap: 4px; padding: 14px 18px; border: 1px solid rgba(201,162,75,0.25); border-radius: 12px; background: rgba(201,162,75,0.06); }
.footer-tax small { font-size: 12px; color: var(--gold-light); font-weight: 700; }
.footer-tax b { color: #fff; letter-spacing: 1.5px; font-variant-numeric: tabular-nums; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-block: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom .made { display: inline-flex; align-items: center; gap: 8px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.12); transition: .25s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social a:hover svg { color: var(--navy-900); }
.footer-social svg { width: 18px; height: 18px; color: rgba(245,241,232,0.8); }

/* ============================================================
   FLOATING WHATSAPP + SCROLL TOP
   ============================================================ */
.wa-float {
  position: fixed; inset-block-end: 26px; inset-inline-start: 26px; z-index: 60;
  display: flex; align-items: center; gap: 0; overflow: hidden;
  height: 62px; padding-inline: 0; border-radius: 100px;
  background: #25d366; color: #fff; box-shadow: 0 12px 34px rgba(37,211,102,0.45);
  transition: transform .3s var(--ease), box-shadow .3s; cursor: pointer; border: none;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); }
.wa-float .wa-ic { width: 62px; height: 62px; flex: none; display: grid; place-items: center; }
.wa-float .wa-ic svg { width: 32px; height: 32px; }
.wa-float .wa-txt { font-weight: 700; font-size: 16px; max-width: 0; opacity: 0; white-space: nowrap; transition: max-width .4s var(--ease), opacity .3s, padding .4s; padding: 0; }
.wa-float:hover .wa-txt { max-width: 180px; opacity: 1; padding-inline-end: 22px; }
.wa-float .ping { position: absolute; inset-block-start: 6px; inset-inline-end: 6px; width: 12px; height: 12px; background: #fff; border-radius: 50%; box-shadow: 0 0 0 0 rgba(255,255,255,0.7); animation: pulse2 2s infinite; }
@keyframes pulse2 { 0%{box-shadow:0 0 0 0 rgba(255,255,255,0.7);} 70%{box-shadow:0 0 0 8px rgba(255,255,255,0);} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);} }

.to-top {
  position: fixed; inset-block-end: 26px; inset-inline-end: 26px; z-index: 60;
  width: 52px; height: 52px; border-radius: 14px; border: 1px solid var(--line-gold);
  background: var(--white); color: var(--navy-800); display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--shadow-md); opacity: 0; transform: translateY(20px); pointer-events: none; transition: .35s var(--ease);
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--gold); border-color: var(--gold); }
.to-top svg { width: 22px; height: 22px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .coin-stage { order: -1; min-height: 380px; }
  .coin-frame-wrap { height: 380px; }
  .coin-frame { height: 560px; }
  .coin-ring.r1 { width: 340px; height: 340px; } .coin-ring.r2 { width: 440px; height: 440px; }
  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .about-visual { max-width: 420px; }
  .services-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .topbar .container { flex-direction: column; gap: 6px; padding-block: 8px; font-size: 12.5px; }
  .topbar-right { gap: 14px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 100%; inset-inline: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 14px 28px; box-shadow: var(--shadow-md);
  }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(odd) { border-inline-start: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .services-grid, .testi-grid, .steps, .contact-grid, .why-list, .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .about-badge { inset-inline-start: 0; }
  .contact-form { padding: 26px; }
  .wa-float .wa-txt { display: none; }
}
