
:root {
  --bg: #07111f;
  --bg-2: #0c182a;
  --panel: rgba(17, 29, 48, .82);
  --panel-solid: #111d30;
  --card: #f5f2eb;
  --card-2: #ece8df;
  --ink: #0c1625;
  --text: #f8fafc;
  --muted: #aeb9c8;
  --muted-dark: #687487;
  --gold: #d7b66c;
  --gold-soft: #f1dfb9;
  --line: rgba(255,255,255,.10);
  --line-dark: rgba(10,22,38,.12);
  --green: #3fd182;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 28px 80px rgba(0,0,0,.28);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at 84% 8%, rgba(215,182,108,.11), transparent 24rem),
    radial-gradient(circle at 3% 58%, rgba(54,102,164,.10), transparent 30rem),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
html[dir="rtl"] body { font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif; letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: var(--gold); color: var(--ink); }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; inset-inline-start: 20px; background: var(--card); color: var(--ink); padding: 10px 16px; border-radius: 10px; z-index: 999; }
.skip-link:focus { top: 18px; }
.site-header {
  position: sticky; top: 0; z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled { background: rgba(7,17,31,.83); border-color: var(--line); backdrop-filter: blur(18px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 220px; }
.brand img { width: 46px; height: 46px; }
.brand-copy { display: grid; line-height: 1; letter-spacing: .12em; }
.brand-copy strong { font-size: .94rem; font-weight: 700; }
.brand-copy span { margin-top: 6px; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .26em; }
html[dir="rtl"] .brand-copy { letter-spacing: 0; }
html[dir="rtl"] .brand-copy span { letter-spacing: 0; }
.nav { display: flex; align-items: center; gap: 26px; font-size: .93rem; color: #dce3ed; }
.nav a { position: relative; }
.nav a::after { content:""; position:absolute; height:1px; inset-inline:0; bottom:-7px; background:var(--gold); transform:scaleX(0); transform-origin:center; transition:.25s; }
.nav a:hover::after, .nav a:focus-visible::after { transform:scaleX(1); }
.header-actions { display:flex; align-items:center; gap:10px; }
.lang-switch { display:inline-flex; align-items:center; gap:5px; border:1px solid var(--line); border-radius:999px; padding:4px; background:rgba(255,255,255,.035); }
.lang-switch a { min-width:44px; min-height:34px; display:grid; place-items:center; border-radius:999px; color:var(--muted); font-size:.79rem; font-weight:700; }
.lang-switch a.active { background:var(--card); color:var(--ink); }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:10px; min-height:50px; padding:0 20px; border-radius:999px; border:1px solid transparent; font-weight:700; cursor:pointer; transition:transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.btn:hover { transform:translateY(-2px); }
.btn:active { transform:translateY(0); }
.btn-primary { background:linear-gradient(135deg,var(--gold-soft),var(--gold)); color:#111824; box-shadow:0 14px 34px rgba(215,182,108,.16); }
.btn-secondary { border-color:var(--line); background:rgba(255,255,255,.04); }
.btn-secondary:hover { border-color:rgba(215,182,108,.45); background:rgba(215,182,108,.08); }
.btn-dark { background:var(--ink); color:#fff; }
.btn-light { background:var(--card); color:var(--ink); }
.btn svg { width:18px; height:18px; }
.icon-btn { width:50px; height:50px; display:grid; place-items:center; border-radius:50%; border:1px solid var(--line); background:rgba(255,255,255,.04); cursor:pointer; transition:.2s ease; }
.icon-btn:hover { border-color:var(--gold); color:var(--gold-soft); transform:translateY(-2px); }
.hero { position:relative; min-height:720px; display:flex; align-items:center; overflow:hidden; padding:88px 0 92px; }
.hero::before { content:""; position:absolute; width:860px; height:860px; border:1px solid rgba(215,182,108,.12); border-radius:50%; inset-inline-end:-380px; top:-260px; box-shadow:0 0 0 90px rgba(215,182,108,.025),0 0 0 190px rgba(215,182,108,.018); }
.hero::after { content:""; position:absolute; inset:0; pointer-events:none; background-image:linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px); background-size:54px 54px; mask-image:linear-gradient(to bottom,rgba(0,0,0,.68),transparent 82%); }
.hero-grid { position:relative; z-index:2; display:grid; grid-template-columns:minmax(0,1.12fr) minmax(380px,.88fr); gap:64px; align-items:center; }
.eyebrow { display:inline-flex; align-items:center; gap:10px; color:var(--gold-soft); font-size:.78rem; font-weight:800; letter-spacing:.17em; text-transform:uppercase; }
.eyebrow::before { content:""; width:34px; height:1px; background:var(--gold); }
html[dir="rtl"] .eyebrow { letter-spacing:0; }
.hero h1 { margin:25px 0 22px; max-width:790px; font-size:clamp(3rem,7vw,6.25rem); line-height:.96; letter-spacing:-.055em; font-weight:670; }
html[dir="rtl"] .hero h1 { font-size:clamp(2.8rem,6.2vw,5.5rem); line-height:1.15; letter-spacing:0; }
.hero h1 span { color:var(--gold-soft); }
.hero-lead { max-width:720px; font-size:clamp(1.08rem,2vw,1.32rem); color:#c1cbd8; line-height:1.75; }
.hero-cta { display:flex; flex-wrap:wrap; gap:13px; margin-top:34px; }
.trust-row { display:flex; flex-wrap:wrap; gap:12px; margin-top:42px; }
.trust-chip { display:inline-flex; align-items:center; gap:9px; padding:10px 13px; border:1px solid var(--line); border-radius:999px; color:#d8e0ea; font-size:.85rem; background:rgba(255,255,255,.025); }
.trust-chip svg { color:var(--gold); }
.hero-card { position:relative; border:1px solid rgba(255,255,255,.13); border-radius:36px; padding:28px; background:linear-gradient(145deg,rgba(28,46,74,.85),rgba(8,17,30,.88)); box-shadow:var(--shadow); backdrop-filter:blur(18px); }
.hero-card::before { content:""; position:absolute; inset:14px; border:1px solid rgba(215,182,108,.17); border-radius:26px; pointer-events:none; }
.hero-card-top { position:relative; z-index:2; display:flex; justify-content:space-between; align-items:center; }
.hero-card-logo { display:flex; align-items:center; gap:12px; }
.hero-card-logo img { width:54px; }
.hero-card-logo strong { display:block; letter-spacing:.08em; font-size:.9rem; }
.hero-card-logo small { display:block; color:var(--gold); margin-top:3px; }
.hero-card-badge { width:50px; height:50px; border-radius:50%; display:grid; place-items:center; background:rgba(215,182,108,.12); color:var(--gold-soft); border:1px solid rgba(215,182,108,.32); }
.hero-card-main { position:relative; z-index:2; margin-top:72px; padding:0 8px 8px; }
.hero-card-main h2 { font-size:clamp(2rem,4vw,3rem); line-height:1.05; margin:0 0 18px; letter-spacing:-.03em; }
html[dir="rtl"] .hero-card-main h2 { letter-spacing:0; line-height:1.25; }
.hero-card-main p { color:var(--muted); }
.hero-card-links { display:grid; gap:11px; margin-top:34px; }
.mini-link { display:flex; align-items:center; justify-content:space-between; gap:12px; border-top:1px solid var(--line); padding-top:14px; color:#e8edf4; }
.mini-link span { display:flex; align-items:center; gap:10px; }
.mini-link svg { color:var(--gold); }
.hero-card-foot { position:relative; z-index:2; display:flex; align-items:flex-end; justify-content:space-between; margin-top:54px; padding:0 8px 6px; }
.hero-card-foot small { color:var(--muted); }
.hero-card-foot strong { font-size:.92rem; color:var(--gold-soft); }
.section { padding:112px 0; position:relative; }
.section-light { background:var(--card); color:var(--ink); }
.section-head { display:flex; justify-content:space-between; gap:40px; align-items:flex-end; margin-bottom:50px; }
.section-head h2 { max-width:730px; margin:12px 0 0; font-size:clamp(2.25rem,5vw,4.25rem); letter-spacing:-.045em; line-height:1.06; }
html[dir="rtl"] .section-head h2 { letter-spacing:0; line-height:1.25; }
.section-head p { max-width:430px; margin:0; color:var(--muted-dark); }
.section:not(.section-light) .section-head p { color:var(--muted); }
.kicker { color:#9a742e; font-size:.8rem; text-transform:uppercase; letter-spacing:.16em; font-weight:800; }
.section:not(.section-light) .kicker { color:var(--gold); }
html[dir="rtl"] .kicker { letter-spacing:0; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.service-card { min-height:360px; padding:30px; display:flex; flex-direction:column; border-radius:var(--radius); background:#fff; border:1px solid var(--line-dark); box-shadow:0 18px 44px rgba(10,22,38,.065); transition:transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform:translateY(-7px); box-shadow:0 25px 60px rgba(10,22,38,.11); }
.service-num { display:flex; justify-content:space-between; align-items:center; color:#8a6b32; font-weight:800; }
.service-icon { width:52px; height:52px; display:grid; place-items:center; border-radius:16px; color:#9a742e; background:#f6f0e5; }
.service-icon svg { width:25px; height:25px; }
.service-card h3 { margin:54px 0 15px; font-size:1.55rem; line-height:1.25; }
.service-card p { margin:0; color:var(--muted-dark); }
.service-card .card-link { margin-top:auto; padding-top:28px; display:flex; align-items:center; justify-content:space-between; font-weight:750; }
.approach-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; align-items:start; }
.approach-sticky { position:sticky; top:128px; }
.approach-sticky h2 { margin:16px 0 20px; font-size:clamp(2.3rem,4.8vw,4rem); line-height:1.07; letter-spacing:-.045em; }
html[dir="rtl"] .approach-sticky h2 { letter-spacing:0; line-height:1.25; }
.approach-sticky p { color:var(--muted); max-width:500px; }
.steps { border-top:1px solid var(--line); }
.step { display:grid; grid-template-columns:84px 1fr; gap:24px; padding:34px 0; border-bottom:1px solid var(--line); }
.step-no { width:54px; height:54px; display:grid; place-items:center; border:1px solid rgba(215,182,108,.36); border-radius:50%; color:var(--gold-soft); font-weight:800; }
.step h3 { margin:0 0 8px; font-size:1.4rem; }
.step p { margin:0; color:var(--muted); }
.team-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.team-card { position:relative; min-height:620px; border-radius:34px; overflow:hidden; background:#111d30; border:1px solid var(--line); isolation:isolate; }
.team-card img { width:100%; height:100%; min-height:620px; object-fit:cover; object-position:center; filter:saturate(.9) contrast(1.02); transition:transform .5s ease; }
.team-card:hover img { transform:scale(1.025); }
.team-card::after { content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(4,10,20,.96),rgba(4,10,20,.05) 62%,rgba(4,10,20,.02)); z-index:1; }
.team-overlay { position:absolute; inset:auto 0 0; z-index:2; padding:34px; }
.team-overlay .role { color:var(--gold-soft); font-size:.84rem; font-weight:800; text-transform:uppercase; letter-spacing:.12em; }
html[dir="rtl"] .team-overlay .role { letter-spacing:0; }
.team-overlay h3 { margin:8px 0 6px; font-size:2.2rem; line-height:1.1; }
.team-overlay p { margin:0 0 24px; max-width:520px; color:#c5cedb; }
.team-overlay .btn { min-height:46px; }
.credentials { display:grid; grid-template-columns:1.08fr .92fr; gap:22px; }
.credential-main, .credential-side { border-radius:var(--radius); border:1px solid var(--line-dark); background:#fff; padding:34px; }
.credential-main { display:grid; grid-template-columns:1fr auto; gap:24px; align-items:start; }
.license-number { font-size:clamp(2.4rem,5vw,4.8rem); font-weight:700; letter-spacing:-.06em; line-height:1; }
.credential-main h3 { margin:30px 0 10px; font-size:1.5rem; }
.credential-main p, .credential-side p { color:var(--muted-dark); }
.license-badge { width:74px; height:74px; border-radius:22px; display:grid; place-items:center; background:#101b2d; color:var(--gold-soft); }
.license-badge svg { width:32px; height:32px; }
.activity-list { display:grid; gap:0; margin-top:20px; }
.activity-list div { display:flex; gap:14px; padding:15px 0; border-top:1px solid var(--line-dark); }
.activity-list svg { color:#9a742e; flex:0 0 auto; margin-top:3px; }
.contact-section { overflow:hidden; }
.contact-shell { position:relative; border-radius:40px; padding:56px; background:linear-gradient(135deg,#13243d,#091424 72%); border:1px solid var(--line); box-shadow:var(--shadow); }
.contact-shell::after { content:""; position:absolute; width:500px; height:500px; border:1px solid rgba(215,182,108,.13); border-radius:50%; inset-inline-end:-180px; top:-240px; box-shadow:0 0 0 70px rgba(215,182,108,.025),0 0 0 150px rgba(215,182,108,.018); }
.contact-grid { position:relative; z-index:2; display:grid; grid-template-columns:1.1fr .9fr; gap:58px; align-items:end; }
.contact-copy h2 { margin:15px 0 20px; font-size:clamp(2.5rem,5.5vw,4.8rem); line-height:1.02; letter-spacing:-.05em; }
html[dir="rtl"] .contact-copy h2 { letter-spacing:0; line-height:1.25; }
.contact-copy p { color:var(--muted); max-width:620px; }
.contact-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.contact-list { display:grid; gap:12px; }
.contact-item { display:flex; align-items:center; justify-content:space-between; gap:18px; padding:18px 20px; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.035); }
.contact-item span { display:flex; align-items:center; gap:12px; }
.contact-item svg { color:var(--gold); }
.contact-item small { display:block; color:var(--muted); }
.contact-item strong { display:block; margin-top:2px; }
.site-footer { padding:42px 0 32px; border-top:1px solid var(--line); color:var(--muted); }
.footer-grid { display:grid; grid-template-columns:1fr auto; gap:30px; align-items:center; }
.footer-brand { display:flex; align-items:center; gap:13px; }
.footer-brand img { width:42px; }
.footer-brand strong { color:#fff; }
.footer-nav { display:flex; flex-wrap:wrap; gap:20px; font-size:.9rem; }
.legal-note { margin-top:26px; padding-top:22px; border-top:1px solid var(--line); font-size:.78rem; line-height:1.7; }
.ltr { direction:ltr; unicode-bidi:embed; display:inline-block; }
.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease,transform .7s ease; }
.reveal.in-view { opacity:1; transform:none; }
.toast { position:fixed; left:50%; bottom:28px; transform:translate(-50%,30px); padding:12px 18px; background:var(--card); color:var(--ink); border-radius:999px; box-shadow:var(--shadow); opacity:0; pointer-events:none; transition:.25s; z-index:150; font-weight:700; }
.toast.show { opacity:1; transform:translate(-50%,0); }
.modal { position:fixed; inset:0; display:none; place-items:center; padding:24px; background:rgba(3,8,16,.76); backdrop-filter:blur(12px); z-index:140; }
.modal.open { display:grid; }
.modal-card { width:min(100%,420px); border-radius:28px; background:var(--card); color:var(--ink); padding:26px; box-shadow:var(--shadow); text-align:center; }
.modal-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
.modal-top h3 { margin:0; }
.modal-close { width:42px; height:42px; border:1px solid var(--line-dark); border-radius:50%; background:#fff; cursor:pointer; }
.modal-card img { width:100%; border-radius:20px; background:#fff; }
.modal-card p { color:var(--muted-dark); }

/* Personal digital card */
.vcard-page { background:radial-gradient(circle at 50% 0,rgba(215,182,108,.13),transparent 27rem),var(--bg); }
.vcard-hero { padding:48px 0 84px; }
.vcard-wrap { width:min(calc(100% - 28px),760px); margin-inline:auto; }
.vcard-cover { position:relative; height:310px; border-radius:38px 38px 0 0; overflow:hidden; border:1px solid var(--line); border-bottom:0; background:linear-gradient(145deg,#152843,#081321); }
.vcard-cover::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px); background-size:42px 42px; mask-image:linear-gradient(to bottom,#000,transparent); }
.vcard-cover::after { content:""; position:absolute; width:430px; height:430px; border:1px solid rgba(215,182,108,.18); border-radius:50%; left:50%; top:-230px; transform:translateX(-50%); box-shadow:0 0 0 70px rgba(215,182,108,.03),0 0 0 150px rgba(215,182,108,.018); }
.vcard-cover-brand { position:absolute; top:30px; inset-inline:30px; display:flex; justify-content:space-between; align-items:center; z-index:2; }
.vcard-cover-brand .brand { min-width:0; }
.vcard-cover-copy { position:absolute; inset-inline:32px; bottom:42px; z-index:2; }
.vcard-cover-copy .eyebrow { font-size:.7rem; }
.vcard-cover-copy h1 { margin:14px 0 0; font-size:clamp(2rem,7vw,3.55rem); line-height:1.02; letter-spacing:-.04em; }
html[dir="rtl"] .vcard-cover-copy h1 { letter-spacing:0; line-height:1.25; }
.vcard-main { position:relative; margin-top:-1px; padding:0 28px 34px; border:1px solid var(--line); border-top:0; border-radius:0 0 38px 38px; background:rgba(8,18,32,.88); box-shadow:var(--shadow); }
.vcard-photo-wrap { position:relative; width:190px; height:190px; margin:-95px auto 0; border-radius:50%; padding:7px; background:var(--card); z-index:3; box-shadow:0 18px 46px rgba(0,0,0,.28); }
.vcard-photo { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.vcard-identity { text-align:center; padding-top:24px; }
.vcard-identity h2 { margin:0; font-size:clamp(2rem,6vw,3.35rem); line-height:1.1; }
.vcard-role { margin-top:8px; color:var(--gold-soft); font-weight:750; }
.vcard-location { margin-top:6px; color:var(--muted); font-size:.93rem; }
.quick-actions { display:grid; grid-template-columns:repeat(5,1fr); gap:10px; margin:30px 0; }
.quick-action { display:grid; place-items:center; gap:8px; min-height:88px; padding:10px 6px; border:1px solid var(--line); border-radius:19px; background:rgba(255,255,255,.035); font-size:.72rem; color:#dfe6ef; transition:.2s; cursor:pointer; }
.quick-action:hover { background:rgba(215,182,108,.09); border-color:rgba(215,182,108,.38); transform:translateY(-3px); }
.quick-action .qa-icon { width:40px; height:40px; display:grid; place-items:center; border-radius:50%; background:rgba(215,182,108,.13); color:var(--gold-soft); }
.quick-action svg { width:19px; height:19px; }
.vcard-card { margin-top:16px; border-radius:25px; background:var(--card); color:var(--ink); overflow:hidden; }
.vcard-card-head { display:flex; align-items:center; gap:12px; padding:22px 22px 16px; }
.vcard-card-head .head-icon { width:44px; height:44px; display:grid; place-items:center; border-radius:14px; background:#ece4d4; color:#8e6d31; }
.vcard-card-head h3 { margin:0; font-size:1.28rem; }
.vcard-row { width:100%; display:flex; justify-content:space-between; align-items:center; gap:18px; padding:18px 22px; border:0; border-top:1px solid var(--line-dark); background:transparent; color:inherit; text-align:inherit; cursor:pointer; }
.vcard-row small { display:block; color:var(--muted-dark); }
.vcard-row strong { display:block; margin-top:4px; font-size:1.02rem; }
.vcard-row .row-icon { color:#8e6d31; }
.vcard-about { padding:22px; border-top:1px solid var(--line-dark); }
.vcard-about p { margin:0; color:#4f5d70; }
.focus-tags { display:flex; flex-wrap:wrap; gap:9px; margin-top:17px; }
.focus-tag { padding:8px 12px; border-radius:999px; background:#eae2d3; color:#5f4c2a; font-size:.8rem; font-weight:700; }
.links-list a { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:18px 22px; border-top:1px solid var(--line-dark); }
.links-list a:first-child { border-top:0; }
.links-list span { display:flex; align-items:center; gap:12px; }
.links-list svg { color:#8e6d31; }
.vcard-license { margin-top:16px; padding:20px 22px; border:1px solid var(--line); border-radius:22px; color:var(--muted); text-align:center; font-size:.81rem; }
.mobile-action-bar { display:none; }

/* Privacy */
.text-page { padding:84px 0 110px; }
.text-shell { width:min(calc(100% - 40px),900px); margin:auto; }
.text-shell h1 { font-size:clamp(2.5rem,6vw,4.7rem); letter-spacing:-.05em; line-height:1.05; }
html[dir="rtl"] .text-shell h1 { letter-spacing:0; line-height:1.25; }
.text-shell h2 { margin-top:44px; font-size:1.55rem; }
.text-shell p, .text-shell li { color:#c0cad6; }
.text-shell a { color:var(--gold-soft); text-decoration:underline; text-underline-offset:3px; }

@media (max-width: 980px) {
  .nav { display:none; }
  .header-actions .btn { display:none; }
  .hero { min-height:auto; padding-top:72px; }
  .hero-grid, .approach-grid, .credentials, .contact-grid { grid-template-columns:1fr; }
  .hero-card { max-width:650px; }
  .services-grid { grid-template-columns:1fr; }
  .service-card { min-height:300px; }
  .approach-sticky { position:static; }
  .team-card, .team-card img { min-height:540px; }
  .contact-grid { gap:38px; }
}
@media (max-width: 700px) {
  .container { width:min(calc(100% - 28px),var(--max)); }
  .site-header { background:rgba(7,17,31,.82); backdrop-filter:blur(16px); border-bottom-color:var(--line); }
  .header-inner { min-height:70px; }
  .brand { min-width:0; }
  .brand img { width:40px; height:40px; }
  .brand-copy strong { font-size:.78rem; }
  .brand-copy span { font-size:.62rem; }
  .lang-switch a { min-width:39px; min-height:31px; }
  .hero { padding:58px 0 72px; }
  .hero-grid { gap:42px; }
  .hero h1 { font-size:clamp(2.75rem,14vw,4.6rem); }
  .hero-lead { font-size:1.02rem; }
  .hero-cta .btn { width:100%; }
  .trust-row { gap:8px; }
  .trust-chip { font-size:.75rem; }
  .hero-card { padding:20px; border-radius:28px; }
  .hero-card::before { inset:10px; border-radius:20px; }
  .hero-card-main { margin-top:54px; }
  .section { padding:78px 0; }
  .section-head { display:block; }
  .section-head p { margin-top:20px; }
  .services-grid, .team-grid { grid-template-columns:1fr; }
  .team-card, .team-card img { min-height:500px; }
  .team-overlay { padding:26px; }
  .team-overlay h3 { font-size:1.9rem; }
  .step { grid-template-columns:58px 1fr; gap:16px; }
  .step-no { width:46px; height:46px; }
  .credential-main { grid-template-columns:1fr; }
  .license-badge { order:-1; }
  .contact-shell { padding:34px 22px; border-radius:30px; }
  .contact-actions .btn { width:100%; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-nav { gap:14px; }
  .vcard-hero { padding:22px 0 104px; }
  .vcard-cover { height:310px; border-radius:28px 28px 0 0; }
  .vcard-cover-brand { top:22px; inset-inline:22px; }
  .vcard-cover-brand .brand-copy { display:none; }
  .vcard-cover-copy { inset-inline:24px; bottom:92px; }
  .vcard-main { padding:0 14px 26px; border-radius:0 0 28px 28px; }
  .vcard-photo-wrap { width:168px; height:168px; margin-top:-84px; }
  .quick-actions { grid-template-columns:repeat(5,1fr); gap:7px; }
  .quick-action { min-height:79px; font-size:.63rem; border-radius:16px; }
  .quick-action .qa-icon { width:36px; height:36px; }
  .vcard-row { padding:16px 17px; }
  .vcard-card-head { padding:20px 17px 15px; }
  .vcard-about { padding:18px 17px; }
  .links-list a { padding:17px; }
  .mobile-action-bar { position:fixed; inset-inline:12px; bottom:12px; z-index:90; display:grid; grid-template-columns:repeat(3,1fr); gap:8px; padding:9px; border:1px solid var(--line); border-radius:22px; background:rgba(7,17,31,.88); backdrop-filter:blur(18px); box-shadow:var(--shadow); }
  .mobile-action-bar a { min-height:48px; display:flex; align-items:center; justify-content:center; gap:7px; border-radius:15px; font-size:.72rem; font-weight:750; }
  .mobile-action-bar a.primary { background:var(--gold); color:var(--ink); }
  .mobile-action-bar svg { width:17px; height:17px; }
}
@media (max-width: 420px) {
  .brand-copy { display:none; }
  .quick-action span:last-child { display:none; }
  .quick-action { min-height:62px; }
  .vcard-photo-wrap { width:150px; height:150px; margin-top:-75px; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior:auto!important; animation-duration:.01ms!important; transition-duration:.01ms!important; }
  .reveal { opacity:1; transform:none; }
}
