:root {
  --gh-white: #ffffff;
  --gh-soft: #f7f8fa;
  --gh-ink: #101826;
  --gh-ink-2: #202b3c;
  --gh-muted: #6c7480;
  --gh-line: #e8ebef;
  --gh-gold: #c99043;
  --gh-gold-2: #d7a65f;
  --gh-gold-soft: #f7ead7;
  --gh-green: #168a5b;
  --gh-shadow: 0 24px 80px rgba(16, 24, 38, .09);
  --gh-radius-lg: 32px;
  --gh-radius-md: 22px;
  --gh-transition: 220ms cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--gh-white);
  color: var(--gh-ink);
  font-family: "IBM Plex Sans Arabic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gh-gold-soft); color: var(--gh-ink); }

.gh-container { max-width: 1240px; }
.section-space { padding: 112px 0; }
.icon { width: 21px; height: 21px; fill: currentColor; flex: 0 0 auto; }

.skip-link {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 9999;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--gh-ink);
  color: #fff;
  padding: 10px 14px;
  transition: transform var(--gh-transition);
}
.skip-link:focus { transform: translateY(0); }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition: background var(--gh-transition), border-color var(--gh-transition), box-shadow var(--gh-transition), padding var(--gh-transition);
}
.site-header.is-scrolled {
  padding: 4px 0;
  border-color: rgba(16, 24, 38, .07);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 40px rgba(16,24,38,.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.navbar { padding: 0; min-height: 68px; }
.brand img { width: 172px; height: auto; object-fit: contain; }
.navbar-nav .nav-link {
  position: relative;
  padding: 12px 16px !important;
  color: #424a57;
  font-weight: 600;
  font-size: .95rem;
  transition: color var(--gh-transition);
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  right: 16px;
  left: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 99px;
  background: var(--gh-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--gh-transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible,
.navbar-nav .nav-link.active { color: var(--gh-ink); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus-visible::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.btn-nav-contact {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(16,24,38,.12);
  border-radius: 13px;
  color: var(--gh-ink);
  font-weight: 700;
  background: #fff;
  box-shadow: 0 8px 26px rgba(16,24,38,.05);
}
.btn-nav-contact:hover { color: #fff; background: var(--gh-ink); border-color: var(--gh-ink); transform: translateY(-1px); }
.menu-button { width: 48px; height: 44px; border: 1px solid var(--gh-line); border-radius: 13px; padding: 10px; box-shadow: none !important; }
.menu-button span { display: block; width: 22px; height: 2px; margin: 4px auto; border-radius: 4px; background: var(--gh-ink); transition: var(--gh-transition); }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 830px;
  padding-top: 184px;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at 8% 25%, rgba(201,144,67,.075), transparent 26%),
    radial-gradient(circle at 86% 34%, rgba(16,24,38,.045), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fff 72%, #fafbfc 100%);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(16,24,38,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(16,24,38,.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 75%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 75%);
}
.hero-orbit { position: absolute; border: 1px solid rgba(201,144,67,.13); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 580px; height: 580px; left: -350px; top: 120px; }
.hero-orbit-two { width: 350px; height: 350px; right: -230px; bottom: 30px; }
.hero-copy { max-width: 640px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(201,144,67,.28);
  border-radius: 999px;
  color: #7d5b2d;
  background: rgba(247,234,215,.46);
  font-weight: 600;
  font-size: .88rem;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gh-gold); box-shadow: 0 0 0 5px rgba(201,144,67,.12); }
.hero-title {
  margin: 0;
  max-width: 650px;
  font-size: clamp(3rem, 5.4vw, 5.55rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 700;
}
.hero-title span { display: block; color: var(--gh-gold); }
.hero-lead { max-width: 600px; margin: 28px 0 0; color: var(--gh-muted); font-size: clamp(1.08rem, 1.55vw, 1.28rem); line-height: 1.95; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.btn-primary-gh, .btn-secondary-gh {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 23px;
  border-radius: 15px;
  font-weight: 700;
  transition: transform var(--gh-transition), box-shadow var(--gh-transition), background var(--gh-transition), color var(--gh-transition), border-color var(--gh-transition);
}
.btn-primary-gh { border: 1px solid var(--gh-ink); color: #fff; background: var(--gh-ink); box-shadow: 0 16px 35px rgba(16,24,38,.18); }
.btn-primary-gh:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 22px 46px rgba(16,24,38,.23); }
.btn-secondary-gh { border: 1px solid rgba(16,24,38,.13); color: var(--gh-ink); background: rgba(255,255,255,.74); }
.btn-secondary-gh:hover { border-color: var(--gh-gold); color: var(--gh-ink); transform: translateY(-3px); box-shadow: 0 16px 35px rgba(16,24,38,.08); }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 42px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: #f5f6f8; color: var(--gh-ink); }
.trust-icon svg { width: 20px; height: 20px; fill: currentColor; }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { font-size: .94rem; }
.trust-item small { margin-top: 1px; color: var(--gh-muted); font-size: .78rem; }
.trust-divider { width: 1px; height: 34px; background: var(--gh-line); }

.hero-visual { position: relative; min-height: 510px; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
.visual-glow { position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(201,144,67,.19), rgba(201,144,67,.03) 45%, transparent 70%); filter: blur(4px); }
.commerce-card { position: relative; z-index: 3; }
.main-commerce-card {
  width: min(100%, 520px);
  min-height: 390px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(16,24,38,.09);
  border-radius: 31px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 38px 110px rgba(16,24,38,.15), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.main-commerce-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(130deg, rgba(255,255,255,.8), transparent 28%, transparent 70%, rgba(201,144,67,.07)); }
.commerce-head { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 25px; border-bottom: 1px solid var(--gh-line); }
.commerce-kicker { color: var(--gh-gold); font-size: .8rem; font-weight: 700; }
.commerce-head h2 { margin: 6px 0 0; font-size: clamp(1.45rem, 2.6vw, 2rem); letter-spacing: -.02em; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; border-radius: 999px; padding: 8px 10px; background: #eff9f4; color: #18754f; font-size: .72rem; font-weight: 700; }
.status-pill span { width: 7px; height: 7px; border-radius: 50%; background: #20a56f; box-shadow: 0 0 0 4px rgba(32,165,111,.12); }
.product-preview { position: relative; z-index: 1; display: grid; gap: 13px; padding: 25px 0; }
.mini-product { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--gh-line); border-radius: 18px; background: rgba(249,250,251,.85); transition: transform var(--gh-transition), border-color var(--gh-transition), box-shadow var(--gh-transition); }
.mini-product:hover { transform: translateX(-5px); border-color: rgba(201,144,67,.38); box-shadow: 0 14px 32px rgba(16,24,38,.07); }
.mini-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; }
.mini-icon svg { width: 23px; height: 23px; fill: currentColor; }
.phone-icon { color: var(--gh-ink); background: #edf0f4; }
.card-icon { color: #8a622c; background: var(--gh-gold-soft); }
.mini-product strong, .mini-product small { display: block; }
.mini-product strong { font-size: 1rem; }
.mini-product small { color: var(--gh-muted); font-size: .81rem; }
.mini-arrow { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 10px; color: var(--gh-ink); background: #fff; }
.mini-arrow svg { width: 17px; height: 17px; fill: currentColor; }
.commerce-footer { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.secure-line { display: flex; align-items: center; gap: 9px; color: var(--gh-muted); font-size: .79rem; }
.secure-line svg { width: 17px; height: 17px; fill: var(--gh-gold); }
.demo-label { color: #9aa0aa; font-size: .68rem; }
.floating-chip { position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px; min-width: 188px; padding: 13px 15px; border: 1px solid rgba(16,24,38,.08); border-radius: 17px; background: rgba(255,255,255,.94); box-shadow: 0 18px 50px rgba(16,24,38,.12); backdrop-filter: blur(12px); }
.floating-chip strong, .floating-chip small { display: block; }
.floating-chip strong { font-size: .82rem; }
.floating-chip small { color: var(--gh-muted); font-size: .7rem; }
.chip-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--gh-gold); background: var(--gh-gold-soft); }
.chip-icon svg { width: 19px; height: 19px; fill: currentColor; }
.chip-one { top: 26px; left: -28px; }
.chip-two { right: -20px; bottom: 22px; }
.speed-mark { position: absolute; z-index: 1; left: -24px; bottom: 70px; display: grid; gap: 9px; transform: rotate(-4deg); }
.speed-mark span { display: block; height: 3px; border-radius: 99px; background: linear-gradient(90deg, transparent, var(--gh-gold)); }
.speed-mark span:nth-child(1) { width: 90px; }.speed-mark span:nth-child(2) { width: 68px; }.speed-mark span:nth-child(3) { width: 112px; }.speed-mark span:nth-child(4) { width: 55px; }

.signal-strip { position: relative; z-index: 5; margin-top: -42px; }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid rgba(16,24,38,.08); border-radius: 24px; background: #fff; box-shadow: 0 22px 60px rgba(16,24,38,.08); }
.signal-item { position: relative; padding: 24px 28px; }
.signal-item:not(:last-child)::after { content: ""; position: absolute; top: 24px; bottom: 24px; left: 0; width: 1px; background: var(--gh-line); }
.signal-item > span { display: block; margin-bottom: 5px; color: var(--gh-gold); font-family: "Manrope", sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.signal-item strong, .signal-item small { display: block; }
.signal-item strong { font-size: .98rem; }
.signal-item small { margin-top: 2px; color: var(--gh-muted); font-size: .78rem; }

.section-heading { max-width: 720px; }
.section-label { display: inline-flex; align-items: center; gap: 10px; color: var(--gh-gold); font-size: .85rem; font-weight: 700; }
.section-label::before { content: ""; width: 30px; height: 2px; border-radius: 99px; background: currentColor; }
.section-label.light { color: var(--gh-gold-2); }
.section-heading h2, .about-copy h2, .contact-intro h2 { margin: 13px 0 0; font-size: clamp(2.15rem, 4.2vw, 3.9rem); line-height: 1.22; letter-spacing: -.045em; }
.section-heading p, .about-copy > p, .contact-intro > p { margin: 20px 0 0; color: var(--gh-muted); font-size: 1.08rem; line-height: 1.9; }

.service-card { position: relative; min-height: 355px; height: 100%; overflow: hidden; padding: 30px; border: 1px solid var(--gh-line); border-radius: var(--gh-radius-md); background: #fff; transition: transform var(--gh-transition), border-color var(--gh-transition), box-shadow var(--gh-transition); }
.service-card::before { content: ""; position: absolute; inset: auto -35% -55% auto; width: 210px; height: 210px; border-radius: 50%; background: radial-gradient(circle, rgba(201,144,67,.12), transparent 68%); transition: transform .5s ease; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(201,144,67,.35); box-shadow: var(--gh-shadow); }
.service-card:hover::before { transform: scale(1.3); }
.service-card.featured { border-color: rgba(201,144,67,.34); background: linear-gradient(145deg, #fff, #fdf9f3); }
.featured-badge { position: absolute; top: 0; left: 0; padding: 7px 13px; border-radius: 0 0 13px 0; color: #fff; background: var(--gh-gold); font-size: .72rem; font-weight: 700; }
.service-number { color: #c1c5cb; font-family: "Manrope", sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .16em; }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-top: 26px; border-radius: 18px; color: var(--gh-ink); background: #f3f5f7; }
.featured .service-icon { color: #815a28; background: var(--gh-gold-soft); }
.service-icon svg { width: 28px; height: 28px; fill: currentColor; }
.service-card h3 { margin: 23px 0 0; font-size: 1.38rem; }
.service-card p { margin: 12px 0 0; color: var(--gh-muted); font-size: .95rem; line-height: 1.85; }
.service-link { position: absolute; right: 30px; bottom: 28px; display: inline-flex; align-items: center; gap: 7px; color: var(--gh-ink); font-weight: 700; font-size: .89rem; }
.service-link svg { width: 17px; height: 17px; fill: currentColor; transition: transform var(--gh-transition); }
.service-link:hover { color: var(--gh-gold); }
.service-link:hover svg { transform: translateX(-4px); }

.experience-section { overflow: hidden; background: #f8f9fa; }
.feature-list { display: grid; gap: 11px; }
.feature-row { display: grid; grid-template-columns: auto 1fr; gap: 17px; padding: 19px 20px; border: 1px solid transparent; border-radius: 17px; transition: background var(--gh-transition), border-color var(--gh-transition), transform var(--gh-transition); }
.feature-row:hover { transform: translateX(-5px); border-color: var(--gh-line); background: #fff; }
.feature-index { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--gh-gold); background: var(--gh-gold-soft); font-family: "Manrope", sans-serif; font-size: .72rem; font-weight: 700; }
.feature-row h3 { margin: 0; font-size: 1.08rem; }
.feature-row p { margin: 5px 0 0; color: var(--gh-muted); font-size: .9rem; }
.finance-panel { position: relative; min-height: 490px; overflow: hidden; padding: 32px; border-radius: 32px; color: #fff; background: linear-gradient(145deg, #101826 0%, #182337 62%, #0f1725 100%); box-shadow: 0 35px 90px rgba(16,24,38,.24); }
.finance-panel::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 52px 52px; }
.finance-top, .finance-balance, .finance-wave, .finance-metrics { position: relative; z-index: 2; }
.finance-top { display: flex; align-items: center; gap: 13px; }
.finance-logo { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; color: var(--gh-gold-2); background: rgba(255,255,255,.07); font-family: "Manrope", sans-serif; font-weight: 700; }
.finance-top div { flex: 1; }
.finance-top div span, .finance-top div strong { display: block; }
.finance-top div span { color: var(--gh-gold-2); font-family: "Manrope", sans-serif; font-size: .7rem; letter-spacing: .18em; }
.finance-top div strong { margin-top: 1px; font-size: .9rem; }
.finance-tag { color: rgba(255,255,255,.52); font-family: "Manrope", sans-serif; font-size: .66rem; letter-spacing: .08em; }
.finance-balance { margin-top: 68px; }
.finance-balance > span { color: rgba(255,255,255,.54); font-size: .83rem; }
.finance-balance strong { display: block; margin-top: 7px; font-size: clamp(2rem, 4.8vw, 3.6rem); line-height: 1.2; }
.finance-balance strong em { color: var(--gh-gold-2); font-style: normal; }
.finance-balance small { color: rgba(255,255,255,.45); }
.finance-wave { height: 142px; margin: 16px -32px 0; }
.finance-wave svg { width: 100%; height: 100%; }
.finance-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.finance-metrics div { padding: 13px 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.04); }
.finance-metrics span, .finance-metrics strong { display: block; }
.finance-metrics span { color: rgba(255,255,255,.45); font-size: .7rem; }
.finance-metrics strong { margin-top: 4px; font-size: .93rem; }
.gold-corner { position: absolute; top: -90px; left: -90px; width: 220px; height: 220px; border-radius: 50%; background: rgba(201,144,67,.16); filter: blur(10px); }

.about-shell { position: relative; overflow: hidden; padding: 58px; border: 1px solid var(--gh-line); border-radius: var(--gh-radius-lg); background: #fff; box-shadow: 0 24px 75px rgba(16,24,38,.06); }
.about-shell::after { content: "GHUDUN"; position: absolute; left: 30px; bottom: -43px; color: rgba(16,24,38,.025); font-family: "Manrope", sans-serif; font-size: 8rem; font-weight: 700; letter-spacing: .04em; }
.about-copy { position: relative; z-index: 2; }
.about-copy h2 span { display: block; margin-top: 4px; color: var(--gh-gold); font-family: "Manrope", sans-serif; font-size: .34em; letter-spacing: .22em; }
.about-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin-top: 34px; }
.about-details > div { padding: 16px 18px; border-radius: 15px; background: #f7f8fa; }
.about-details span, .about-details strong, .about-details a { display: block; }
.about-details > div > span { color: var(--gh-muted); font-size: .75rem; }
.about-details strong, .about-details a { margin-top: 4px; color: var(--gh-ink); font-size: .92rem; font-weight: 700; }
.about-details a:hover { color: var(--gh-gold); }
.about-monogram { position: relative; z-index: 2; width: min(100%, 365px); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; gap: 16px; margin-inline: auto; overflow: hidden; border-radius: 50%; color: #fff; background: var(--gh-ink); box-shadow: 0 25px 70px rgba(16,24,38,.19); }
.about-monogram > strong { font-family: "Manrope", sans-serif; font-size: 7rem; line-height: 1; }
.about-monogram > div span, .about-monogram > div small { display: block; font-family: "Manrope", sans-serif; }
.about-monogram > div span { color: var(--gh-gold-2); font-size: 1.08rem; font-weight: 700; letter-spacing: .18em; }
.about-monogram > div small { margin-top: 4px; color: rgba(255,255,255,.5); font-size: .6rem; letter-spacing: .11em; }
.monogram-ring { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(215,166,95,.32); stroke-width: 1; stroke-dasharray: 6 8; animation: spin 24s linear infinite; }
.monogram-speed { position: absolute; right: 18%; top: 35%; width: 76px; height: 3px; border-radius: 99px; background: linear-gradient(90deg, transparent, var(--gh-gold-2)); box-shadow: 0 13px 0 rgba(215,166,95,.66), 0 26px 0 rgba(215,166,95,.34); }
@keyframes spin { to { transform: rotate(360deg); } }

.contact-section { padding-top: 72px; }
.contact-shell { position: relative; overflow: hidden; padding: 60px; border-radius: 35px; color: #fff; background: linear-gradient(135deg, #101826, #172338 67%, #111a29); box-shadow: 0 34px 90px rgba(16,24,38,.18); }
.contact-shell::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(90deg, transparent, #000); -webkit-mask-image: linear-gradient(90deg, transparent, #000); }
.contact-glow { position: absolute; width: 430px; height: 430px; right: -200px; top: -200px; border-radius: 50%; background: rgba(201,144,67,.19); filter: blur(20px); }
.contact-intro h2 { color: #fff; }
.contact-intro > p { color: rgba(255,255,255,.6); }
.contact-location { display: flex; align-items: center; gap: 10px; margin-top: 30px; color: rgba(255,255,255,.72); font-size: .9rem; }
.contact-location svg { width: 20px; height: 20px; fill: var(--gh-gold-2); }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-card { position: relative; min-height: 310px; padding: 25px; border: 1px solid rgba(255,255,255,.1); border-radius: 23px; background: rgba(255,255,255,.07); backdrop-filter: blur(13px); -webkit-backdrop-filter: blur(13px); }
.contact-card.accent { border-color: rgba(215,166,95,.27); background: linear-gradient(145deg, rgba(215,166,95,.13), rgba(255,255,255,.06)); }
.contact-card-head { display: grid; grid-template-columns: auto 1fr; gap: 12px; }
.contact-type { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--gh-gold-2); background: rgba(215,166,95,.12); font-family: "Manrope", sans-serif; font-size: .66rem; font-weight: 700; }
.contact-card h3 { margin: 0; font-size: 1.12rem; }
.contact-card p { margin: 4px 0 0; color: rgba(255,255,255,.48); font-size: .78rem; line-height: 1.65; }
.contact-phone { display: block; margin-top: 33px; color: #fff; font-family: "Manrope", sans-serif; font-size: clamp(1.2rem, 2.3vw, 1.65rem); letter-spacing: -.02em; text-align: right; }
.contact-actions { position: absolute; right: 25px; left: 25px; bottom: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.contact-actions .btn { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 13px; font-weight: 700; font-size: .85rem; }
.contact-actions svg { width: 18px; height: 18px; fill: currentColor; }
.contact-call { border: 1px solid rgba(255,255,255,.14); color: #fff; background: rgba(255,255,255,.06); }
.contact-call:hover { border-color: #fff; color: var(--gh-ink); background: #fff; }
.contact-whatsapp { border: 1px solid var(--gh-green); color: #fff; background: var(--gh-green); }
.contact-whatsapp:hover { color: #fff; background: #107349; border-color: #107349; }

.location-map-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
  gap: 22px;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}
.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 10px 10px 2px;
}
.map-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(215,166,95,.28);
  border-radius: 999px;
  color: var(--gh-gold-2);
  background: rgba(215,166,95,.1);
  font-size: .75rem;
  font-weight: 700;
}
.map-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gh-gold-2);
  box-shadow: 0 0 0 5px rgba(215,166,95,.12);
}
.map-copy h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.25vw, 2rem);
  line-height: 1.45;
}
.map-copy p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.58);
  font-size: .92rem;
}
.map-open-btn {
  width: fit-content;
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 13px;
  color: var(--gh-ink);
  background: #fff;
  font-weight: 700;
  transition: transform var(--gh-transition), box-shadow var(--gh-transition), background var(--gh-transition), border-color var(--gh-transition);
}
.map-open-btn:hover {
  color: #fff;
  border-color: var(--gh-gold);
  background: var(--gh-gold);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
}
.map-open-btn svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.map-frame {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
}
.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), inset 0 -70px 110px rgba(16,24,38,.16);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  border: 0;
  filter: saturate(.96) contrast(1.02);
}

.site-footer { padding: 34px 0 24px; background: #fff; }
.footer-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; padding-bottom: 27px; border-bottom: 1px solid var(--gh-line); }
.footer-brand img { width: 142px; height: auto; }
.footer-top p { margin: 0; color: var(--gh-muted); font-size: .88rem; }
.footer-email { color: var(--gh-ink); font-family: "Manrope", sans-serif; font-size: .82rem; font-weight: 700; }
.footer-email:hover { color: var(--gh-gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; color: #8c929b; font-size: .78rem; }
.footer-bottom a { color: var(--gh-ink); font-weight: 700; }
.footer-bottom a:hover { color: var(--gh-gold); }

.mobile-action-bar { display: none; }

:focus-visible { outline: 3px solid rgba(201,144,67,.38); outline-offset: 3px; }

@media (max-width: 1199.98px) {
  .hero-title { font-size: clamp(3rem, 6vw, 4.7rem); }
  .chip-one { left: -5px; }
  .chip-two { right: -3px; }
  .service-card { min-height: 370px; }
}

@media (max-width: 991.98px) {
  .section-space { padding: 88px 0; }
  .site-header { background: rgba(255,255,255,.94); border-bottom-color: rgba(16,24,38,.06); backdrop-filter: blur(16px); }
  .navbar-collapse { margin-top: 8px; padding: 17px; border: 1px solid var(--gh-line); border-radius: 18px; background: #fff; box-shadow: 0 20px 50px rgba(16,24,38,.1); }
  .navbar-nav { align-items: stretch !important; }
  .navbar-nav .nav-link { padding: 10px 5px !important; }
  .navbar-nav .nav-link::after { display: none; }
  .btn-nav-contact { width: 100%; justify-content: center; margin-top: 10px; background: var(--gh-ink); color: #fff; }
  .hero-section { min-height: auto; padding-top: 145px; padding-bottom: 96px; }
  .hero-copy { max-width: 760px; margin-inline: auto; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 650px; margin: 10px auto 0; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-item:nth-child(2)::after { display: none; }
  .signal-item:nth-child(-n+2) { border-bottom: 1px solid var(--gh-line); }
  .finance-panel { max-width: 670px; margin-inline: auto; }
  .about-shell { padding: 45px; }
  .contact-shell { padding: 45px; }
  .contact-intro { text-align: center; }
  .contact-location { justify-content: center; }
  .location-map-panel { grid-template-columns: 1fr; }
  .map-copy {
    align-items: center;
    text-align: center;
    padding: 6px 6px 0;
  }
}

@media (max-width: 767.98px) {
  body { padding-bottom: 72px; }
  .gh-container { padding-left: 19px; padding-right: 19px; }
  .section-space { padding: 74px 0; }
  .brand img { width: 146px; }
  .hero-section { padding-top: 132px; padding-bottom: 82px; }
  .hero-section::before { background-size: 45px 45px; }
  .hero-title { font-size: clamp(2.65rem, 12vw, 4.2rem); }
  .hero-lead { margin-top: 20px; font-size: 1rem; line-height: 1.85; }
  .hero-actions { margin-top: 28px; }
  .btn-primary-gh, .btn-secondary-gh { width: 100%; }
  .hero-trust { align-items: stretch; gap: 13px; }
  .trust-item { flex: 1; align-items: flex-start; text-align: right; }
  .trust-divider { display: none; }
  .hero-visual { min-height: 470px; margin-top: 12px; }
  .main-commerce-card { padding: 22px; border-radius: 25px; }
  .commerce-head { flex-direction: column; }
  .status-pill { position: absolute; top: 0; left: 0; }
  .commerce-footer { align-items: flex-start; }
  .secure-line { max-width: 70%; }
  .floating-chip { min-width: 165px; padding: 11px 12px; }
  .chip-one { top: 0; left: -4px; }
  .chip-two { right: -2px; bottom: 1px; }
  .speed-mark { display: none; }
  .signal-strip { margin-top: -28px; }
  .signal-grid { grid-template-columns: 1fr; border-radius: 20px; }
  .signal-item { padding: 19px 22px; }
  .signal-item:not(:last-child)::after { display: none; }
  .signal-item:not(:last-child) { border-bottom: 1px solid var(--gh-line); }
  .section-heading h2, .about-copy h2, .contact-intro h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .service-card { min-height: 345px; }
  .finance-panel { min-height: 450px; padding: 25px; border-radius: 25px; }
  .finance-wave { margin-inline: -25px; }
  .finance-metrics { gap: 7px; }
  .finance-metrics div { padding: 11px; }
  .about-shell { padding: 30px 23px; border-radius: 25px; }
  .about-details { grid-template-columns: 1fr; }
  .about-monogram { max-width: 310px; }
  .about-monogram > strong { font-size: 5.5rem; }
  .contact-section { padding-top: 50px; }
  .contact-shell { padding: 34px 22px; border-radius: 25px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 292px; }
  .location-map-panel {
    margin-top: 24px;
    padding: 13px;
    border-radius: 21px;
  }
  .map-copy h3 { font-size: 1.28rem; }
  .map-open-btn { width: 100%; }
  .map-frame,
  .map-frame iframe { min-height: 315px; }
  .footer-top { grid-template-columns: 1fr; justify-items: center; gap: 13px; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .mobile-action-bar {
    position: fixed;
    right: 10px;
    left: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 1100;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(16,24,38,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.93);
    box-shadow: 0 18px 55px rgba(16,24,38,.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .mobile-action-bar a { min-height: 47px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 13px; font-weight: 700; }
  .mobile-action-bar a:first-child { border: 1px solid var(--gh-line); color: var(--gh-ink); background: #fff; }
  .mobile-action-bar a:last-child { color: #fff; background: var(--gh-green); }
  .mobile-action-bar svg { width: 19px; height: 19px; fill: currentColor; }
}

@media (max-width: 420px) {
  .hero-trust { flex-direction: column; }
  .trust-item { padding: 12px; border-radius: 14px; background: rgba(255,255,255,.7); }
  .hero-visual { min-height: 500px; }
  .commerce-footer { flex-direction: column; }
  .secure-line { max-width: 100%; }
  .floating-chip { min-width: 150px; }
  .chip-one { top: -5px; }
  .chip-two { bottom: -2px; }
  .finance-top { flex-wrap: wrap; }
  .finance-tag { width: 100%; padding-right: 58px; }
  .finance-metrics strong { font-size: .82rem; }
  .map-frame,
  .map-frame iframe { min-height: 285px; }
}

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