﻿:root {
  --bg: #eee9e4;
  --paper: #f2eee9;
  --panel: rgba(255, 255, 255, 0.7);
  --panel-2: rgba(255, 255, 255, 0.9);
  --text: #17131d;
  --muted: #625b66;
  --line: rgba(38, 30, 45, 0.14);
  --pink: #c94fa0;
  --violet: #5946a3;
  --cyan: #177f9d;
  --green: #1f9f72;
  --amber: #9f6a15;
  --max: 1180px;
  --shadow: 0 28px 80px rgba(35, 27, 42, .12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Noto Kufi Arabic", "Tajawal", Arial, sans-serif;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .26) 0 10%, transparent 10% 15%, rgba(75, 64, 73, .055) 15% 16%, transparent 16% 34%, rgba(255, 255, 255, .2) 34% 41%, transparent 41%),
    url("../images/paper-stone-texture.jpg") center top / 900px auto repeat,
    var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(18deg, rgba(54, 45, 55, .025) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(104deg, rgba(255, 255, 255, .16) 0 1px, transparent 1px 12px);
  mix-blend-mode: multiply;
  opacity: .9;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -10vw -18vh auto;
  z-index: -1;
  width: 48vw;
  height: 48vw;
  min-width: 420px;
  min-height: 420px;
  background:
    radial-gradient(circle, rgba(89, 70, 163, .08), transparent 58%),
    radial-gradient(circle at 70% 30%, rgba(201, 79, 160, .08), transparent 44%);
  filter: blur(8px);
  animation: ambientFloat 18s ease-in-out infinite alternate;
}

body[dir="rtl"] {
  font-family: "Noto Kufi Arabic", Tajawal, Inter, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -4rem;
  background: var(--text);
  color: #111;
  padding: .6rem .9rem;
  border-radius: 4px;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(244, 241, 239, .94), rgba(244, 241, 239, .62));
  backdrop-filter: blur(18px);
  padding: 12px 0;
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: auto;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem .65rem;
  background:
    linear-gradient(rgba(255, 255, 255, .78), rgba(255, 255, 255, .66)),
    url("../images/paper-stone-texture.jpg") center / 680px auto repeat;
  border: 1px solid rgba(38, 30, 45, .11);
  border-radius: 10px;
  box-shadow: 0 18px 60px rgba(35, 27, 42, .09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  letter-spacing: 0;
  padding-inline-end: .45rem;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  padding: .28rem;
  border: 1px solid rgba(38, 30, 45, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
}

.brand span {
  font-size: 1.16rem;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  color: var(--muted);
  font-size: .92rem;
  padding: .25rem;
  border: 1px solid rgba(38, 30, 45, .08);
  border-radius: 8px;
  background: rgba(244, 241, 239, .56);
}

.nav-links a {
  padding: .46rem .72rem;
  border-radius: 6px;
  transition: color .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, .82);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.lang {
  border: 1px solid var(--line);
  padding: .5rem .72rem;
  border-radius: 4px;
  color: var(--muted);
  background: rgba(255, 255, 255, .58);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .72rem 1rem;
  border-radius: 4px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #17131d, var(--violet));
  color: white;
  box-shadow: 0 18px 38px rgba(42, 31, 58, .18);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, .5);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(245, 241, 242, .94) 0%, rgba(245, 241, 242, .68) 52%, rgba(235, 230, 230, .9) 100%),
    url("../images/websitiy-mark.png") right 8% center / min(42vw, 560px) no-repeat;
  opacity: .96;
}

.hero-showcase::before {
  background:
    linear-gradient(112deg, rgba(250, 248, 246, .84) 0%, rgba(235, 230, 225, .72) 48%, rgba(250, 248, 246, .88) 100%),
    url("../images/paper-stone-texture.jpg") center / 760px auto repeat;
}

body[dir="rtl"] .hero-showcase::before {
  background:
    linear-gradient(248deg, rgba(250, 248, 246, .84) 0%, rgba(235, 230, 225, .72) 48%, rgba(250, 248, 246, .88) 100%),
    url("../images/paper-stone-texture.jpg") center / 760px auto repeat;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 11% 6% auto auto;
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  border: 1px solid rgba(89, 70, 163, .12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .26), transparent 52%),
    repeating-linear-gradient(135deg, rgba(38, 30, 45, .05) 0 1px, transparent 1px 18px);
  transform: rotate(9deg) skew(-8deg);
  animation: paperDrift 18s ease-in-out infinite alternate;
}

body[dir="rtl"] .hero-showcase::after {
  inset: 12% auto auto 7%;
}

body[dir="rtl"] .hero::before {
  background:
    linear-gradient(250deg, rgba(245, 241, 242, .94) 0%, rgba(245, 241, 242, .68) 52%, rgba(235, 230, 230, .9) 100%),
    url("../images/websitiy-mark.png") left 8% center / min(42vw, 560px) no-repeat;
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: auto;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 80px 0 96px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--violet);
  font-weight: 800;
  margin: 0 0 .85rem;
  font-size: .95rem;
}

h1,
h2,
h3 {
  line-height: 1.18;
  margin: 0 0 1rem;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 6.6rem);
  max-width: 12ch;
}

.hero p,
.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 760px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-height: 76px;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, .7), rgba(255, 255, 255, .58)),
    url("../images/paper-stone-texture.jpg") center / 460px auto repeat;
  box-shadow: 0 18px 46px rgba(35, 27, 42, .07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(89, 70, 163, .28);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(23, 19, 29, .055);
  color: var(--violet);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-card strong {
  display: block;
  color: var(--text);
  line-height: 1.25;
}

.contact-card > span:not(.contact-icon) {
  display: block;
  min-width: 0;
}

.contact-card > span:not(.contact-icon) > span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  margin-top: .12rem;
  overflow-wrap: anywhere;
}

.contact-card.primary {
  background:
    linear-gradient(135deg, rgba(23, 19, 29, .96), rgba(49, 39, 68, .96));
  color: white;
}

.contact-card.primary strong,
.contact-card.primary > span:not(.contact-icon),
.contact-card.primary > span:not(.contact-icon) > span {
  color: white;
}

.contact-card.primary > span:not(.contact-icon) > span {
  opacity: .76;
}

.contact-card.primary .contact-icon {
  background: rgba(255, 255, 255, .12);
  color: white;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.luxe-strip {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: -36px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.trust-item {
  background:
    linear-gradient(rgba(255, 255, 255, .78), rgba(255, 255, 255, .68)),
    url("../images/paper-stone-texture.jpg") center / 520px auto repeat;
  padding: 1.2rem;
  backdrop-filter: blur(18px);
}

.trust-item strong {
  display: block;
  font-size: 1.25rem;
}

.trust-item span {
  color: var(--muted);
  font-size: .95rem;
}

.section {
  padding: 84px 0;
  position: relative;
}

.section.alt {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .5), rgba(255, 255, 255, .18)),
    url("../images/paper-stone-texture.jpg") center / 760px auto repeat;
  border-block: 1px solid rgba(38, 30, 45, .08);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 780px;
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background:
    linear-gradient(rgba(255, 255, 255, .74), rgba(255, 255, 255, .64)),
    url("../images/paper-stone-texture.jpg") center / 560px auto repeat;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .56), 0 18px 50px rgba(52, 43, 55, .08);
  backdrop-filter: blur(14px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.lift:hover {
  transform: translateY(-5px);
  border-color: rgba(89, 70, 163, .28);
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.3rem;
}

.card p,
.card li {
  color: var(--muted);
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(23, 19, 29, .04);
  border: 1px solid rgba(23, 19, 29, .12);
  border-radius: 4px;
  color: var(--violet);
  font-weight: 900;
}

.link {
  color: var(--violet);
  font-weight: 800;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 4rem;
}

.process .card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  inset-inline-start: 1.2rem;
  color: var(--amber);
  font-size: 1.5rem;
  font-weight: 900;
}

.landing-hero {
  padding: 96px 0 54px;
  background:
    linear-gradient(135deg, rgba(89, 70, 163, .1), transparent 34%),
    linear-gradient(225deg, rgba(201, 79, 160, .08), transparent 38%),
    url("../images/paper-stone-texture.jpg") center / 760px auto repeat;
  border-bottom: 1px solid var(--line);
}

.landing-hero h1 {
  max-width: 900px;
  font-size: clamp(2.25rem, 5vw, 5rem);
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 66px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(239, 235, 233, .62)),
    url("../images/paper-stone-texture.jpg") center / 780px auto repeat;
}

body[dir="rtl"] .service-hero {
  background:
    linear-gradient(225deg, rgba(255, 255, 255, .74), rgba(239, 235, 233, .62)),
    url("../images/paper-stone-texture.jpg") center / 780px auto repeat;
}

.service-hero::after,
.landing-hero::after {
  content: "";
  position: absolute;
  inset: auto 7% -56px auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(38, 30, 45, .1);
  transform: rotate(12deg) skew(-7deg);
  background: rgba(255, 255, 255, .2);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.service-hero h1 {
  max-width: 920px;
  font-size: clamp(2.3rem, 5.4vw, 5rem);
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .7rem;
  border: 1px solid rgba(89, 70, 163, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  color: var(--violet);
  font-weight: 900;
  font-size: .92rem;
  margin-bottom: 1rem;
}

.service-panel {
  background:
    linear-gradient(rgba(255, 255, 255, .78), rgba(255, 255, 255, .66)),
    url("../images/paper-stone-texture.jpg") center / 520px auto repeat;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.panel-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.panel-brand span {
  color: var(--muted);
  font-size: .88rem;
}

.panel-list {
  display: grid;
  gap: .7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem;
  border-radius: 6px;
  background: rgba(23, 19, 29, .035);
  color: var(--muted);
}

.panel-list strong {
  color: var(--text);
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin-top: 1.4rem;
}

.service-stat {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem;
  background:
    linear-gradient(rgba(255, 255, 255, .68), rgba(255, 255, 255, .56)),
    url("../images/paper-stone-texture.jpg") center / 480px auto repeat;
}

.service-stat strong {
  display: block;
  font-size: 1.3rem;
  color: var(--text);
}

.service-stat span {
  color: var(--muted);
  font-size: .9rem;
}

.split-copy {
  max-width: 620px;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
  align-items: stretch;
}

.deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}

.deliverable {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 255, 255, .66), rgba(255, 255, 255, .56)),
    url("../images/paper-stone-texture.jpg") center / 460px auto repeat;
}

.deliverable strong {
  display: block;
  margin-bottom: .35rem;
}

.deliverable span {
  color: var(--muted);
}

.timeline {
  counter-reset: item;
}

.timeline .card {
  position: relative;
  padding-inline-start: 4.2rem;
}

body[dir="rtl"] .timeline .card {
  padding-inline-start: 1.35rem;
  padding-inline-end: 4.2rem;
}

.timeline .card::before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  position: absolute;
  inset-inline-start: 1.1rem;
  top: 1.1rem;
  color: var(--violet);
  font-weight: 900;
  font-size: 1.25rem;
}

body[dir="rtl"] .timeline .card::before {
  inset-inline-start: auto;
  inset-inline-end: 1.1rem;
}

.service-cta {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(23, 19, 29, .96), rgba(49, 39, 68, .96));
  color: white;
}

.service-cta::after {
  content: "";
  position: absolute;
  inset: auto -8% -40% auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 79, 160, .36), transparent 68%);
}

.service-cta p {
  color: rgba(255, 255, 255, .75);
  max-width: 720px;
}

.service-cta .btn-secondary {
  background: rgba(255, 255, 255, .08);
  color: white;
  border-color: rgba(255, 255, 255, .22);
}

.service-cta .cta-row {
  position: relative;
  z-index: 1;
}

.feature-list {
  display: grid;
  gap: .75rem;
  padding: 0;
  margin: 1.25rem 0;
  list-style: none;
}

.feature-list li {
  padding-inline-start: 1.6rem;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .72rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--green);
}

.price-box {
  background:
    linear-gradient(135deg, rgba(201, 79, 160, .11), rgba(89, 70, 163, .13)),
    url("../images/paper-stone-texture.jpg") center / 520px auto repeat;
  border: 1px solid rgba(89, 70, 163, .22);
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(52, 43, 55, .06);
}

.faq details + details {
  margin-top: .8rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  color: var(--muted);
}

.blog-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: start;
}

.date {
  color: var(--amber);
  font-weight: 800;
  font-size: .92rem;
}

.article {
  max-width: 860px;
  margin: auto;
}

.article h1 {
  max-width: none;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.article p,
.article li {
  color: var(--muted);
}

.article h2 {
  margin-top: 2.4rem;
}

.contact-band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .68), rgba(239, 236, 241, .56)),
    url("../images/paper-stone-texture.jpg") center / 720px auto repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.logo-orbit {
  position: relative;
  width: min(420px, 76vw);
  aspect-ratio: 1;
  display: none;
}

.logo-orbit img {
  width: 54%;
  filter: drop-shadow(0 18px 22px rgba(39, 30, 42, .16));
  animation: logoFloat 4.8s ease-in-out infinite;
}

.float-card {
  display: none;
}

.studio-frame {
  position: relative;
  width: min(500px, 88vw);
  min-height: 440px;
  padding: 1.1rem;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, .72), rgba(255, 255, 255, .58)),
    url("../images/paper-stone-texture.jpg") center / 500px auto repeat;
  border: 1px solid rgba(38, 30, 45, .12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: executiveFloat 8s ease-in-out infinite;
}

.studio-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(38, 30, 45, .08);
  border-radius: 6px;
  pointer-events: none;
}

.frame-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .82rem;
}

.frame-dots {
  display: flex;
  gap: .35rem;
}

.frame-dots span {
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: rgba(38, 30, 45, .22);
}

.frame-logo {
  display: grid;
  place-items: center;
  min-height: 190px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(23, 19, 29, .96), rgba(47, 38, 65, .94)),
    var(--text);
  overflow: hidden;
}

.frame-logo img {
  width: min(190px, 44vw);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .28));
}

.frame-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: .8rem;
}

.metric {
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(38, 30, 45, .1);
  border-radius: 6px;
  padding: .85rem;
}

.metric strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
}

.metric span {
  color: var(--muted);
  font-size: .78rem;
}

.frame-lines {
  display: grid;
  gap: .55rem;
  margin-top: .9rem;
}

.frame-line {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(89, 70, 163, .34), rgba(201, 79, 160, .2), rgba(38, 30, 45, .08));
}

.frame-line:nth-child(2) {
  width: 72%;
}

.frame-line:nth-child(3) {
  width: 48%;
}

.spotlight-section {
  position: relative;
  overflow: hidden;
}

.spotlight-section::before {
  content: "";
  position: absolute;
  inset: 14% auto auto 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(86, 199, 232, .2), transparent 65%);
}

.stacked-proof {
  display: grid;
  gap: .85rem;
}

.proof-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 255, 255, .68), rgba(255, 255, 255, .55)),
    url("../images/paper-stone-texture.jpg") center / 460px auto repeat;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(54, 38, 64, .07);
}

.proof-row span {
  color: var(--muted);
}

.proof-row strong {
  color: var(--text);
}

.reveal {
  animation: riseIn .75s ease both;
}

.footer {
  padding: 46px 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer a {
  color: var(--text);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.whatsapp-float {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 18px;
  z-index: 15;
  background: #25d366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 0;
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: 0 18px 42px rgba(13, 102, 56, .28);
  transition: transform .22s ease, box-shadow .22s ease;
}

.whatsapp-float::before {
  content: "";
  width: 32px;
  height: 32px;
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='white' d='M16.02 3.2A12.72 12.72 0 0 0 5.05 22.4L3.5 28.8l6.56-1.49A12.74 12.74 0 1 0 16.02 3.2Zm0 22.9c-2.05 0-3.96-.6-5.56-1.64l-.4-.25-3.9.88.93-3.78-.26-.42a10.24 10.24 0 1 1 9.2 5.2Zm5.9-7.67c-.32-.16-1.9-.94-2.2-1.05-.3-.11-.52-.16-.74.16-.21.32-.84 1.05-1.03 1.27-.19.21-.38.24-.7.08-.32-.16-1.36-.5-2.6-1.6-.96-.86-1.61-1.92-1.8-2.24-.19-.32-.02-.5.14-.66.15-.15.32-.38.48-.57.16-.19.21-.32.32-.54.11-.21.05-.4-.03-.56-.08-.16-.74-1.78-1.01-2.44-.27-.64-.54-.55-.74-.56h-.63c-.21 0-.56.08-.85.4-.3.32-1.12 1.1-1.12 2.68 0 1.58 1.15 3.1 1.31 3.32.16.21 2.26 3.45 5.48 4.84.77.33 1.37.53 1.84.68.77.25 1.47.21 2.02.13.62-.09 1.9-.78 2.17-1.53.27-.75.27-1.4.19-1.53-.08-.13-.3-.21-.62-.37Z'/%3E%3C/svg%3E") center center / 32px 32px no-repeat;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 48px rgba(13, 102, 56, .36);
}

@media (max-width: 920px) {
  .nav {
    align-items: center;
    padding: .65rem;
    min-height: auto;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

  .brand span {
    font-size: 1.05rem;
  }

  .hero::before,
  body[dir="rtl"] .hero::before {
    background:
      linear-gradient(rgba(245, 241, 242, .72), rgba(245, 241, 242, .94)),
      url("../images/websitiy-mark.png") center 18% / 78vw no-repeat;
  }

  .hero-grid {
    display: block;
  }

  .hero-inner {
    min-height: auto;
    align-items: center;
    padding-top: 56px;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 2rem;
  }

  .luxe-strip {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    border-inline: 0;
  }

  .trust-strip,
  .grid-3,
  .grid-2,
  .service-hero-grid,
  .deliverable-grid,
  .footer-grid,
  .blog-list article {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    display: block;
  }
}

@media (max-width: 700px) {
  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .nav-actions {
    margin-inline-start: auto;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 9vw, 3.8rem);
    max-width: none;
  }

  .hero-visual {
    min-height: 340px;
    margin-top: .8rem;
  }

  .studio-frame {
    min-height: 360px;
  }

  .frame-metrics {
    grid-template-columns: 1fr;
  }

  .service-stats,
  .deliverable-list {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding: 58px 0 48px;
  }

  .service-panel {
    margin-top: 1rem;
  }
}

@media (max-width: 560px) {
  .nav-actions .btn {
    display: none;
  }

  .site-header {
    padding: 8px 0;
  }

  .nav {
    width: min(100% - 18px, var(--max));
    border-radius: 8px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .section {
    padding: 64px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: .7rem;
  }

  .contact-card {
    min-height: 68px;
    padding: .82rem;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .cta-row {
    width: 100%;
  }

  .cta-row .btn {
    flex: 1 1 100%;
    min-height: 48px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    inset-inline-end: 14px;
    bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero p,
  .lead {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 300px;
  }

  .frame-logo {
    min-height: 150px;
  }
}

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

@keyframes ambientFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-8vw, -4vh, 0) scale(1.08); }
}

@keyframes shine {
  0%, 42% { transform: translateX(-120%) rotate(18deg); }
  70%, 100% { transform: translateX(520%) rotate(18deg); }
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes executiveFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes paperDrift {
  from { transform: translate3d(0, 0, 0) rotate(9deg) skew(-8deg); }
  to { transform: translate3d(-18px, 12px, 0) rotate(13deg) skew(-8deg); }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.contact-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;background:var(--panel-2);border:1px solid var(--line);border-radius:8px;padding:1.2rem;box-shadow:var(--shadow)}
.contact-form label{display:grid;gap:.35rem;font-weight:800;color:var(--text)}
.contact-form input,.contact-form select,.contact-form textarea{width:100%;border:1px solid var(--line);border-radius:6px;padding:.8rem;background:#fff;color:var(--text);font:inherit}
.contact-form .full,.contact-form .form-fallback{grid-column:1/-1}
.form-fallback{color:var(--muted);margin:0}
.filter-bar{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:1.2rem}
.filter-bar button{border:1px solid var(--line);border-radius:999px;background:rgba(255,255,255,.7);padding:.55rem .8rem;font:inherit;color:var(--muted)}
.article a{text-decoration:underline;text-underline-offset:3px}
@media (max-width:700px){.contact-form{grid-template-columns:1fr}}
