:root {
  --ink: #21160f;
  --ink-soft: #594639;
  --coffee: #4b260d;
  --coffee-deep: #28150a;
  --gold: #e4a117;
  --gold-bright: #ffbe27;
  --gold-soft: #ffe7ae;
  --cream: #fffaf0;
  --paper: #ffffff;
  --line: rgba(75, 38, 13, 0.13);
  --success: #176b4d;
  --shadow-sm: 0 10px 30px rgba(47, 25, 13, 0.08);
  --shadow-md: 0 20px 60px rgba(47, 25, 13, 0.13);
  --shadow-lg: 0 35px 90px rgba(47, 25, 13, 0.2);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  direction: rtl;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 190, 39, 0.11), transparent 23rem),
    linear-gradient(180deg, #fff 0%, var(--cream) 48%, #fff 100%);
  font-family: "Cairo", "Noto Kufi Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold-soft); color: var(--coffee-deep); }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.section-title { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.section-title.is-right { margin-inline: 0; text-align: right; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--coffee);
  background: rgba(255, 190, 39, 0.13);
  border: 1px solid rgba(228, 161, 23, 0.24);
  font-weight: 800;
  font-size: 0.88rem;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(228, 161, 23, 0.16); }
h1, h2, h3 { line-height: 1.35; margin-top: 0; color: var(--coffee-deep); }
h1 { font-family: "Noto Kufi Arabic", "Cairo", sans-serif; font-size: clamp(2.25rem, 5.3vw, 5rem); letter-spacing: -0.035em; }
h2 { font-family: "Noto Kufi Arabic", "Cairo", sans-serif; font-size: clamp(1.8rem, 3.6vw, 3.25rem); letter-spacing: -0.025em; }
h3 { font-size: 1.27rem; }
p { margin-top: 0; color: var(--ink-soft); }
.lead { font-size: clamp(1.04rem, 1.6vw, 1.2rem); color: #655143; }
.text-gold { color: #b87700; }
.muted { color: #79695f; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #2b1808; background: linear-gradient(135deg, var(--gold-bright), #e6a017); box-shadow: 0 14px 34px rgba(228, 161, 23, 0.3); }
.btn-primary:hover { box-shadow: 0 19px 40px rgba(228, 161, 23, 0.38); }
.btn-dark { color: #fff; background: linear-gradient(135deg, var(--coffee), var(--coffee-deep)); box-shadow: 0 13px 32px rgba(40, 21, 10, .25); }
.btn-outline { color: var(--coffee); background: rgba(255,255,255,.7); border-color: rgba(75,38,13,.18); backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: var(--gold); background: #fff; }
.btn-whatsapp { color: #fff; background: linear-gradient(135deg, #27b666, #128c4b); box-shadow: 0 13px 30px rgba(18, 140, 75, .22); }
.btn-block { width: 100%; }
.btn-icon { width: 20px; height: 20px; flex: 0 0 20px; }

.topbar { background: var(--coffee-deep); color: #f9e9c8; font-size: .86rem; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-items { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar a { opacity: .92; }
.topbar a:hover { color: var(--gold-bright); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.93); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(75,38,13,.08); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 12px 35px rgba(40,21,10,.08); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; align-items: center; min-width: 175px; }
.brand img { width: 174px; height: auto; }
.nav { display: flex; align-items: center; gap: 3px; }
.nav a { padding: 10px 12px; border-radius: 10px; font-size: .93rem; font-weight: 700; color: #513e31; }
.nav a:hover, .nav a.active { background: rgba(255,190,39,.13); color: var(--coffee); }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.nav-actions .btn { min-height: 44px; padding: 9px 15px; font-size: .9rem; }
.menu-toggle { display: none; width: 45px; height: 45px; border: 0; border-radius: 12px; background: #fff4db; color: var(--coffee); }
.menu-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px auto; border-radius: 2px; transition: .25s; }

.hero { min-height: calc(100vh - 124px); padding: 72px 0 58px; display: flex; align-items: center; position: relative; isolation: isolate; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: -20% auto auto -12%; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(255,190,39,.22), transparent 68%); z-index: -1; }
.hero::after { content: ""; position: absolute; right: -190px; bottom: -280px; width: 620px; height: 620px; border: 1px solid rgba(228,161,23,.2); border-radius: 50%; box-shadow: 0 0 0 70px rgba(228,161,23,.035), 0 0 0 140px rgba(228,161,23,.02); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; }
.hero-copy h1 { margin: 22px 0 22px; }
.hero-copy h1 strong { color: #a35c00; font-weight: 900; }
.hero-copy .lead { max-width: 680px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.trust-item { display: flex; align-items: center; gap: 10px; color: #604b3d; font-weight: 700; font-size: .92rem; }
.trust-dot { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: #fff3d7; color: #9d6200; }
.hero-visual { position: relative; min-height: 570px; }
.hero-frame { position: absolute; inset: 25px 0 0 40px; border-radius: var(--radius-lg); overflow: hidden; background: var(--coffee); box-shadow: var(--shadow-lg); transform: perspective(1200px) rotateY(-4deg) rotateX(1deg); transform-origin: center; }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(32,18,9,.55) 100%); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; left: -14px; top: 0; max-width: 250px; padding: 17px 18px; border-radius: 20px; background: rgba(255,255,255,.92); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow-md); z-index: 3; }
.hero-badge img { width: 74px; margin-bottom: 8px; }
.hero-badge strong { display: block; color: var(--coffee); font-size: 1rem; }
.hero-badge span { display: block; color: #765f50; font-size: .82rem; margin-top: 3px; }
.hero-card { position: absolute; right: -18px; bottom: 3px; width: min(340px, 70%); padding: 22px; border-radius: 24px; background: linear-gradient(140deg, rgba(43,23,10,.96), rgba(88,43,11,.94)); color: #fff; box-shadow: var(--shadow-lg); z-index: 3; border: 1px solid rgba(255,190,39,.25); }
.hero-card .mini-label { color: #ffd97f; font-size: .82rem; font-weight: 800; }
.hero-card strong { display: block; font-size: 1.22rem; line-height: 1.5; margin: 4px 0 12px; }
.hero-card p { color: rgba(255,255,255,.73); font-size: .86rem; margin-bottom: 0; }

.quick-strip { margin-top: -4px; position: relative; z-index: 3; }
.quick-grid { display: grid; grid-template-columns: repeat(4,1fr); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-md); background: #fff; border: 1px solid rgba(75,38,13,.08); }
.quick-item { padding: 28px 24px; position: relative; }
.quick-item:not(:last-child)::after { content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 1px; background: var(--line); }
.quick-item small { display: block; color: #876f5e; font-weight: 700; }
.quick-item strong { display: block; color: var(--coffee-deep); font-size: 1.05rem; margin-top: 3px; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: rgba(255,255,255,.88); border: 1px solid rgba(75,38,13,.09); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(228,161,23,.35); }
.card-icon { width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center; background: linear-gradient(145deg,#fff5d9,#ffe1a0); color: #9c6200; margin-bottom: 20px; }
.card-icon svg { width: 27px; height: 27px; }
.card p:last-child { margin-bottom: 0; }

.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.photo-stack { min-height: 560px; position: relative; }
.photo-main, .photo-small { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-lg); border: 7px solid #fff; }
.photo-main { width: 82%; height: 500px; margin-right: auto; }
.photo-main img, .photo-small img { width: 100%; height: 100%; object-fit: cover; }
.photo-small { width: 48%; height: 250px; position: absolute; right: 0; bottom: 0; }
.photo-seal { position: absolute; left: 0; top: 45px; width: 118px; height: 118px; border-radius: 50%; display: grid; place-items: center; background: var(--coffee-deep); color: #fff; text-align: center; font-weight: 900; line-height: 1.45; border: 8px solid #fff; box-shadow: var(--shadow-md); }
.about-list { display: grid; gap: 14px; margin: 28px 0; }
.about-list .row { display: flex; gap: 12px; align-items: flex-start; }
.check { width: 25px; height: 25px; flex: 0 0 25px; border-radius: 8px; display: grid; place-items: center; background: #e7f5ee; color: var(--success); font-weight: 900; margin-top: 3px; }

.system-section { background: linear-gradient(145deg, #2e180b 0%, #4b250d 62%, #6b350e 100%); color: #fff; overflow: hidden; }
.system-section::before { content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; border: 1px solid rgba(255,190,39,.2); left: -220px; top: -250px; box-shadow: 0 0 0 75px rgba(255,190,39,.035), 0 0 0 150px rgba(255,190,39,.018); }
.system-section h2, .system-section h3 { color: #fff; }
.system-section p { color: rgba(255,255,255,.7); }
.system-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.dashboard-mock { padding: 18px; border-radius: 30px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 30px 80px rgba(0,0,0,.28); backdrop-filter: blur(16px); }
.mock-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 6px 6px 18px; }
.mock-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.mock-brand img { width: 42px; height: 42px; object-fit: contain; padding: 4px; border-radius: 12px; background: #fff; }
.mock-dots { display: flex; gap: 6px; direction: ltr; }
.mock-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); }
.mock-body { background: #fffaf2; border-radius: 22px; padding: 18px; color: var(--ink); }
.mock-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mock-stat { padding: 13px; border: 1px solid rgba(75,38,13,.08); border-radius: 15px; background: #fff; }
.mock-stat small { color: #8b796c; }
.mock-stat strong { display: block; color: var(--coffee); font-size: 1.16rem; }
.mock-chart { height: 160px; margin-top: 14px; border-radius: 16px; background: repeating-linear-gradient(0deg, #fff, #fff 31px, #f0e8dd 32px); display: flex; align-items: flex-end; gap: 15px; padding: 22px 18px; }
.mock-chart span { flex: 1; border-radius: 8px 8px 3px 3px; background: linear-gradient(180deg, var(--gold-bright), #cf8410); box-shadow: inset 0 -10px 20px rgba(90,45,5,.12); }
.system-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.system-point { padding: 16px; border-radius: 16px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); }
.system-point strong { display: block; color: #ffe0a0; margin-bottom: 3px; }
.system-point span { color: rgba(255,255,255,.68); font-size: .88rem; }

.fees-wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.fee-card { background: #fff; border-radius: 25px; padding: 25px; border: 1px solid rgba(75,38,13,.09); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.fee-card::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 5px; background: linear-gradient(90deg, var(--gold), #ffcf61); }
.fee-card.featured { background: linear-gradient(145deg, var(--coffee-deep), var(--coffee)); color: #fff; transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.fee-card.featured h3, .fee-card.featured .price { color: #fff; }
.fee-card.featured p { color: rgba(255,255,255,.7); }
.fee-card .tag { display: inline-block; border-radius: 999px; padding: 5px 10px; background: #fff3d7; color: #9a6100; font-size: .78rem; font-weight: 800; }
.fee-card.featured .tag { background: rgba(255,190,39,.18); color: #ffd77f; }
.price { font-size: 2rem; line-height: 1; color: var(--coffee); font-weight: 900; margin: 16px 0 8px; }
.price small { font-size: .78rem; font-weight: 700; color: inherit; opacity: .7; }

.process { counter-reset: steps; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-card { counter-increment: steps; position: relative; padding: 28px 23px; border-radius: 23px; background: #fff; border: 1px solid rgba(75,38,13,.09); box-shadow: var(--shadow-sm); }
.process-card::before { content: counter(steps, decimal-leading-zero); display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; margin-bottom: 18px; background: var(--coffee-deep); color: #ffdc8d; font-weight: 900; }
.process-card:not(:last-child)::after { content: ""; position: absolute; left: -19px; top: 52px; width: 20px; height: 2px; background: rgba(228,161,23,.5); }

.gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: 260px 260px; gap: 18px; }
.gallery-item { border-radius: 26px; overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(35,18,8,.45)); pointer-events: none; }

.cta { border-radius: 36px; padding: 52px; background: linear-gradient(135deg, #3a1d0b, #6b350e); color: #fff; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,190,39,.1); left: -70px; top: -90px; box-shadow: 0 0 0 55px rgba(255,190,39,.04); }
.cta h2 { color: #fff; margin-bottom: 10px; font-size: clamp(1.7rem,3vw,2.8rem); }
.cta p { color: rgba(255,255,255,.72); margin-bottom: 0; }
.cta > * { position: relative; z-index: 2; }

.page-hero { padding: 72px 0; background: linear-gradient(135deg,#fffaf0 0%,#fff 52%,#fff1ca 100%); border-bottom: 1px solid rgba(75,38,13,.08); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 410px; height: 410px; border-radius: 50%; border: 1px solid rgba(228,161,23,.16); left: -170px; top: -200px; box-shadow: 0 0 0 55px rgba(228,161,23,.035); }
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.breadcrumb { display: flex; gap: 9px; align-items: center; flex-wrap: wrap; color: #887263; font-size: .9rem; margin-bottom: 14px; }
.breadcrumb a:hover { color: #aa6900; }
.page-hero h1 { font-size: clamp(2rem,4.5vw,4rem); margin-bottom: 15px; }

.form-shell { display: grid; grid-template-columns: 1.08fr .92fr; gap: 28px; align-items: start; }
.form-card { background: #fff; border: 1px solid rgba(75,38,13,.09); border-radius: 28px; padding: 34px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; font-size: .91rem; color: #4c382a; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 11px 14px;
  border: 1px solid #ded2c7;
  border-radius: 13px;
  background: #fffdf9;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(228,161,23,.12); background: #fff; }
.form-note { font-size: .83rem; color: #7a695e; margin-top: 12px; }
.form-error { display: none; margin-bottom: 14px; padding: 12px 14px; border-radius: 12px; background: #fff0ed; color: #9a2e20; border: 1px solid #f1c6bf; font-size: .9rem; }
.form-error.show { display: block; }
.side-panel { border-radius: 28px; padding: 32px; background: linear-gradient(150deg,var(--coffee-deep),var(--coffee)); color: #fff; box-shadow: var(--shadow-lg); position: sticky; top: 110px; }
.side-panel h3 { color: #fff; font-size: 1.55rem; }
.side-panel p { color: rgba(255,255,255,.7); }
.side-list { display: grid; gap: 14px; margin: 24px 0; }
.side-list div { display: flex; gap: 11px; align-items: flex-start; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.side-list div:last-child { border-bottom: 0; }
.side-list b { color: #ffdf96; }

.portal-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 40px; align-items: center; }
.login-mock { padding: 32px; border-radius: 30px; background: #fff; border: 1px solid rgba(75,38,13,.09); box-shadow: var(--shadow-lg); }
.login-logo { width: 170px; margin: 0 auto 25px; }
.login-mock .field { margin-bottom: 14px; }
.portal-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 25px; }
.portal-feature { padding: 17px; border-radius: 17px; background: #fffaf0; border: 1px solid rgba(228,161,23,.18); }
.portal-feature strong { display: block; color: var(--coffee); }
.portal-feature span { color: #806d60; font-size: .86rem; }

.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 30px; align-items: stretch; }
.contact-card { padding: 30px; border-radius: 27px; background: #fff; border: 1px solid rgba(75,38,13,.09); box-shadow: var(--shadow-sm); }
.contact-list { display: grid; gap: 16px; margin-top: 24px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .card-icon { width: 45px; height: 45px; border-radius: 14px; margin: 0; flex: 0 0 45px; }
.map-panel { min-height: 430px; border-radius: 28px; overflow: hidden; position: relative; background: linear-gradient(135deg,#f5e9d5,#fff); border: 1px solid rgba(75,38,13,.09); box-shadow: var(--shadow-md); }
.map-panel::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(75,38,13,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(75,38,13,.12) 1px,transparent 1px); background-size: 38px 38px; }
.map-pin { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); text-align: center; width: min(80%,360px); padding: 25px; border-radius: 24px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-lg); }
.map-pin .pin { width: 70px; height: 70px; margin: 0 auto 14px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--gold); display: grid; place-items: center; box-shadow: 0 15px 30px rgba(228,161,23,.3); }
.map-pin .pin::after { content: ""; width: 24px; height: 24px; border-radius: 50%; background: #fff; }
.map-pin h3 { margin-bottom: 4px; }

.faq { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid rgba(75,38,13,.1); border-radius: 17px; overflow: hidden; box-shadow: 0 8px 24px rgba(40,21,10,.05); }
.faq-btn { width: 100%; border: 0; background: transparent; padding: 18px 20px; display: flex; justify-content: space-between; gap: 20px; color: var(--coffee-deep); font-weight: 800; text-align: right; }
.faq-btn span:last-child { font-size: 1.35rem; color: #a46800; transition: transform .25s; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-content p { padding: 0 20px 18px; margin: 0; }
.faq-item.open .faq-btn span:last-child { transform: rotate(45deg); }

.site-footer { background: #211209; color: #eadfda; margin-top: 80px; }
.footer-top { padding: 66px 0 48px; display: grid; grid-template-columns: 1.35fr .7fr .8fr 1fr; gap: 38px; }
.footer-brand img { width: 185px; padding: 10px 14px; border-radius: 16px; background: #fff; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,.6); max-width: 420px; }
.footer-title { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.66); font-size: .9rem; }
.footer-links a:hover { color: var(--gold-bright); transform: translateX(-2px); }
.footer-contact { display: grid; gap: 13px; color: rgba(255,255,255,.66); font-size: .9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .84rem; color: rgba(255,255,255,.48); }
.footer-bottom a { color: #ffd578; font-weight: 800; }

.floating-actions { position: fixed; left: 18px; bottom: 18px; z-index: 35; display: grid; gap: 10px; }
.float-btn { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; color: #fff; box-shadow: 0 15px 35px rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.25); }
.float-btn.whatsapp { background: #16a65b; }
.float-btn.install { background: var(--coffee); }
.float-btn svg { width: 25px; height: 25px; }

.install-gate { position: fixed; inset: 0; z-index: 1000; display: none; place-items: center; padding: 20px; background: rgba(28,15,7,.72); backdrop-filter: blur(12px); }
.install-gate.show { display: grid; }
.install-dialog { width: min(100%,470px); padding: 30px; border-radius: 30px; background: #fffaf0; box-shadow: 0 40px 120px rgba(0,0,0,.38); text-align: center; position: relative; overflow: hidden; }
.install-dialog::before { content: ""; position: absolute; width: 210px; height: 210px; border-radius: 50%; background: rgba(255,190,39,.14); left: -80px; top: -100px; }
.install-dialog > * { position: relative; }
.install-dialog img { width: 92px; height: 92px; object-fit: contain; margin: 0 auto 18px; padding: 13px; border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.install-dialog h3 { font-size: 1.55rem; margin-bottom: 8px; }
.install-dialog p { font-size: .94rem; }
.install-buttons { display: grid; gap: 10px; margin-top: 20px; }
.install-later { border: 0; background: transparent; color: #7b6a5e; padding: 8px; font-weight: 700; }
.ios-steps { display: none; text-align: right; padding: 14px; border-radius: 15px; background: #fff; border: 1px solid rgba(75,38,13,.1); font-size: .88rem; }
.ios-steps.show { display: block; }

.toast { position: fixed; right: 20px; bottom: 20px; z-index: 1100; max-width: 350px; padding: 14px 17px; border-radius: 14px; background: #211209; color: #fff; box-shadow: var(--shadow-lg); transform: translateY(30px); opacity: 0; pointer-events: none; transition: .3s; }
.toast.show { transform: translateY(0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .nav-actions .btn-outline { display: none; }
  .nav a { padding-inline: 9px; font-size: .88rem; }
  .hero-grid, .about-grid, .system-grid, .form-shell, .portal-grid, .contact-grid { gap: 36px; }
  .fees-wrap { grid-template-columns: 1fr 1fr; }
  .cards-4, .process { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-top > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .topbar { display: none; }
  .site-header { top: 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 154px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: grid;
    gap: 5px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(75,38,13,.1);
    transform: translateY(-16px) scale(.98);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav a { padding: 12px 14px; }
  .nav-actions .btn { display: none; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-grid, .about-grid, .system-grid, .form-shell, .portal-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 520px; max-width: 650px; margin: 0 auto; width: 100%; }
  .hero-frame { inset: 25px 25px 0; transform: none; }
  .hero-badge { left: 0; }
  .hero-card { right: 0; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-item:nth-child(2)::after { display: none; }
  .photo-stack { order: 2; }
  .system-copy { order: 1; }
  .dashboard-mock { order: 2; }
  .side-panel { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .section { padding: 70px 0; }
  h1 { font-size: 2.28rem; }
  h2 { font-size: 1.82rem; }
  .hero { padding-top: 36px; }
  .hero-copy h1 { margin-top: 18px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 12px; }
  .trust-item { width: 100%; justify-content: center; }
  .hero-visual { min-height: 455px; }
  .hero-frame { inset: 30px 5px 0; border-radius: 26px; }
  .hero-badge { top: 0; left: 2px; max-width: 205px; padding: 13px; }
  .hero-badge img { width: 58px; }
  .hero-card { width: 84%; right: 0; bottom: -4px; padding: 18px; }
  .quick-grid, .cards-3, .cards-4, .fees-wrap, .process, .system-points, .portal-feature-grid, .form-grid { grid-template-columns: 1fr; }
  .quick-item:not(:last-child)::after { left: 8%; right: 8%; top: auto; bottom: 0; height: 1px; width: auto; }
  .fee-card.featured { transform: none; }
  .process-card:not(:last-child)::after { display: none; }
  .photo-stack { min-height: 440px; }
  .photo-main { width: 88%; height: 390px; }
  .photo-small { width: 55%; height: 190px; }
  .photo-seal { width: 92px; height: 92px; font-size: .78rem; }
  .mock-stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 330px 220px 220px; }
  .gallery-item:first-child { grid-row: auto; }
  .cta { padding: 34px 24px; grid-template-columns: 1fr; text-align: center; }
  .cta .btn { width: 100%; }
  .form-card, .side-panel { padding: 24px 20px; }
  .field.full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; padding-top: 50px; }
  .footer-top > :last-child { grid-column: auto; }
  .footer-bottom { padding: 18px 0; flex-direction: column; text-align: center; }
  .floating-actions { left: 10px; bottom: 10px; }
  .float-btn { width: 50px; height: 50px; border-radius: 16px; }
  .install-dialog { padding: 25px 20px; }
}

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

/* Refined icon sizing and registration experience */
.btn > svg,
.btn > .btn-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  display: block;
}

.registration-page {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 190, 39, .09), transparent 24rem),
    linear-gradient(180deg, #fffdf8 0%, #fff 62%, #fffaf0 100%);
}
.registration-section { padding: 78px 0 96px; }
.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
  gap: 34px;
  align-items: start;
}
.registration-form-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(75,38,13,.09);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(47,25,13,.10);
}
.registration-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  padding-bottom: 25px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(75,38,13,.08);
}
.registration-form-head h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  margin: 14px 0 8px;
}
.registration-form-head p { margin: 0; max-width: 620px; }
.registration-assurance {
  min-width: 166px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f5fbf7;
  border: 1px solid rgba(23,107,77,.14);
  color: var(--success);
}
.registration-assurance svg { width: 27px; height: 27px; flex: 0 0 27px; }
.registration-assurance span { display: grid; line-height: 1.35; }
.registration-assurance b { font-size: .86rem; }
.registration-assurance small { color: #6c7c75; font-size: .72rem; }
.registration-form-grid { gap: 18px; }
.registration-form-card .field label span { color: #b57600; }
.registration-form-card .field input,
.registration-form-card .field select,
.registration-form-card .field textarea {
  border-radius: 14px;
  border-color: #e5ddd5;
  background: #fffefa;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.registration-form-card .field input,
.registration-form-card .field select { min-height: 54px; }
.registration-form-card .field textarea { min-height: 110px; }
.registration-submit {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) 1.1fr;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(75,38,13,.08);
}
.registration-submit-btn {
  min-height: 56px;
  border-radius: 15px;
  padding-inline: 21px;
  box-shadow: 0 15px 32px rgba(18,140,75,.18);
}
.registration-submit-btn:hover { box-shadow: 0 18px 38px rgba(18,140,75,.25); }
.registration-privacy { margin: 0; font-size: .8rem; line-height: 1.75; color: #806f64; }
.registration-aside { position: sticky; top: 112px; display: grid; gap: 18px; }
.registration-photo-card {
  height: 265px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(75,38,13,.09);
  box-shadow: 0 22px 55px rgba(47,25,13,.14);
}
.registration-photo-card img { width: 100%; height: 100%; object-fit: cover; }
.registration-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,15,6,.03) 28%, rgba(31,15,6,.79) 100%);
}
.registration-photo-overlay {
  position: absolute;
  z-index: 2;
  right: 22px;
  left: 22px;
  bottom: 20px;
  color: #fff;
  display: grid;
  gap: 3px;
}
.registration-photo-overlay span { font-size: .76rem; color: #ffdc8c; font-weight: 800; }
.registration-photo-overlay strong { font-size: 1.05rem; line-height: 1.55; }
.registration-guide-card {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(148deg, #2d180b 0%, #4d280f 68%, #61320f 100%);
  color: #fff;
  box-shadow: 0 24px 65px rgba(40,21,10,.22);
  overflow: hidden;
  position: relative;
}
.registration-guide-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255,190,39,.14);
  left: -95px;
  top: -110px;
  box-shadow: 0 0 0 42px rgba(255,190,39,.025);
}
.registration-guide-card > * { position: relative; z-index: 1; }
.registration-guide-title { display: flex; gap: 14px; align-items: flex-start; }
.registration-guide-mark {
  width: 43px;
  height: 43px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 43px;
  background: linear-gradient(145deg, #ffd46f, #e5a018);
  color: #2c1808;
  font-weight: 900;
  font-size: .8rem;
}
.registration-guide-title small { color: rgba(255,255,255,.54); font-size: .74rem; }
.registration-guide-title h3 { color: #fff; font-size: 1.23rem; margin: 2px 0 0; }
.registration-steps { display: grid; gap: 0; margin: 23px 0 20px; }
.registration-step {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.registration-step:last-child { border-bottom: 0; }
.registration-step > b {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,190,39,.12);
  color: #ffdc8f;
  font-size: .78rem;
}
.registration-step > span { display: grid; gap: 2px; }
.registration-step strong { color: #fff; font-size: .9rem; }
.registration-step small { color: rgba(255,255,255,.58); font-size: .75rem; line-height: 1.7; }
.registration-contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px;
  border-radius: 17px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}
.registration-contact-box > div { display: flex; align-items: center; gap: 10px; }
.registration-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #2f1a0a;
  background: #f9c34b;
}
.registration-contact-icon svg { width: 18px; height: 18px; }
.registration-contact-box > div > span:last-child { display: grid; line-height: 1.35; }
.registration-contact-box small { color: rgba(255,255,255,.5); font-size: .7rem; }
.registration-contact-box strong { color: #fff; font-size: .9rem; }
.registration-contact-box > a {
  padding: 8px 12px;
  border-radius: 11px;
  background: #fff;
  color: #3b210d;
  font-weight: 800;
  font-size: .76rem;
}
.registration-tips-section { background: #fff; }
.registration-tip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.registration-tip {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  border-radius: 22px;
  background: #fffdf8;
  border: 1px solid rgba(75,38,13,.08);
  box-shadow: 0 12px 35px rgba(47,25,13,.06);
}
.registration-tip > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff0c9;
  color: #9d6400;
  font-size: .78rem;
  font-weight: 900;
}
.registration-tip h3 { margin: 1px 0 6px; font-size: 1.03rem; }
.registration-tip p { margin: 0; font-size: .86rem; line-height: 1.75; }

@media (max-width: 1000px) {
  .registration-layout { grid-template-columns: 1fr; }
  .registration-aside { position: static; grid-template-columns: .85fr 1.15fr; align-items: stretch; }
  .registration-photo-card { height: auto; min-height: 390px; }
}

@media (max-width: 700px) {
  .registration-section { padding: 54px 0 72px; }
  .registration-form-card { padding: 24px 20px; border-radius: 24px; }
  .registration-form-head { display: grid; gap: 17px; }
  .registration-assurance { min-width: 0; width: 100%; }
  .registration-submit { grid-template-columns: 1fr; }
  .registration-submit-btn { width: 100%; }
  .registration-aside { grid-template-columns: 1fr; }
  .registration-photo-card { min-height: 260px; }
  .registration-guide-card { padding: 22px 19px; border-radius: 24px; }
  .registration-contact-box { align-items: stretch; }
  .registration-tip-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .registration-contact-box { display: grid; }
  .registration-contact-box > a { text-align: center; }
}

/* Registration page-specific rhythm */
.registration-page-body .page-hero { padding: 54px 0 58px; }
.registration-page-body .page-hero h1 { font-size: clamp(2rem, 3.7vw, 3.35rem); }
.registration-page-body .page-hero .lead { max-width: 760px; font-size: 1.03rem; }
.registration-page-body .floating-actions { display: none; }

@media (max-width: 620px) {
  .registration-page-body .page-hero { padding: 36px 0 40px; }
  .registration-page-body .page-hero h1 { font-size: 1.75rem; margin-bottom: 10px; }
  .registration-page-body .page-hero .lead { font-size: .9rem; line-height: 1.75; }
}

/* Compact communication controls — v1.2.2 */
.registration-page-body main .btn-whatsapp,
.registration-page-body main a[href*="wa.me"],
.registration-page-body main a[href^="tel:"] {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 42px !important;
  max-height: 46px !important;
  padding: 8px 14px !important;
  border-radius: 12px !important;
  gap: 7px !important;
  font-size: .82rem !important;
  line-height: 1.25 !important;
}

.registration-page-body main .btn-whatsapp svg,
.registration-page-body main a[href*="wa.me"] svg,
.registration-page-body main a[href^="tel:"] svg,
.registration-contact-icon svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  flex: 0 0 16px !important;
}

.registration-submit {
  grid-template-columns: auto minmax(0, 1fr);
}

.registration-submit-btn {
  justify-self: start;
  min-height: 44px !important;
  max-height: 46px !important;
  padding: 9px 15px !important;
  font-size: .82rem !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 24px rgba(18,140,75,.16) !important;
}

.registration-contact-box {
  padding: 9px 10px;
  border-radius: 14px;
  gap: 10px;
}

.registration-contact-icon {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border-radius: 9px;
}

.registration-contact-box > div { gap: 8px; }
.registration-contact-box small { font-size: .65rem; }
.registration-contact-box strong { font-size: .82rem; }
.registration-contact-box > a {
  min-height: 34px !important;
  max-height: 36px !important;
  padding: 6px 10px !important;
  border-radius: 9px !important;
  font-size: .7rem !important;
}

.float-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}
.float-btn svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
}

@media (max-width: 700px) {
  .registration-submit { grid-template-columns: 1fr; }
  .registration-submit-btn {
    width: auto !important;
    max-width: 100% !important;
    justify-self: start;
  }
  .float-btn { width: 42px; height: 42px; border-radius: 13px; }
  .float-btn svg { width: 19px; height: 19px; }
}
