/* ============================
   LIAT DAHAN OFFICE SERVICES
   Colorful RTL Hebrew Website
   ============================ */

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

:root {
  --navy:    #1F4E79;
  --blue:    #2E75B6;
  --purple:  #7030A0;
  --teal:    #0891b2;
  --coral:   #f97316;
  --pink:    #ec4899;
  --green:   #16a34a;
  --amber:   #d97706;
  --indigo:  #4f46e5;
  --white:   #ffffff;
  --gray:    #64748b;
  --border:  #e2e8f0;
  --shadow:  0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.16);
  --radius:  20px;
  --radius-sm: 12px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1e293b;
  background: var(--white);
  direction: rtl;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249,115,22,.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,.5); }
.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.28); }
.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover { background: var(--blue); color: var(--white); }
.btn--nav {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  padding: 9px 22px;
  font-size: 15px;
}
.btn--nav:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(79,70,229,.4); }
.btn--full { width: 100%; }

/* ── Section commons ── */
.section { padding: 100px 0; }
.section__header { text-align: center; margin-bottom: 64px; }
.section__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--white);
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section__label--blue   { background: var(--blue); }
.section__label--purple { background: var(--purple); }
.section__label--teal   { background: var(--teal); }
.section__label--coral  { background: var(--coral); }
.section__label--indigo { background: var(--indigo); }
.section__label--pink   { background: var(--pink); }
.section__label--green  { background: var(--green); }
.section__label--light  { background: rgba(255,255,255,.2); color: rgba(255,255,255,.9); }

.section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__title--light { color: var(--white); }
.section__sub { font-size: 18px; color: var(--gray); max-width: 640px; margin: 0 auto; }

/* ============================
   NAV
   ============================ */
.nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.10); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__logo span {
  font-weight: 400;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 15px;
  margin-right: 6px;
}
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: #475569;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--blue); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================
   HERO
   ============================ */
.hero {
  padding-top: 140px;
  padding-bottom: 0;
  background: linear-gradient(145deg, #0f2744 0%, #1F4E79 45%, #7030A0 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 60px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(249,115,22,.3), rgba(236,72,153,.3));
  border: 1px solid rgba(249,115,22,.5);
  color: #fed7aa;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__title span {
  background: linear-gradient(90deg, #fb923c, #f472b6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 19px;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.1);
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
}
.badge__icon { color: #86efac; font-weight: 700; }

/* Hero visual */
.hero__visual { position: relative; height: 380px; }
.hero__avatar {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
}
.hero__initials {
  width: 110px; height: 110px;
  background: linear-gradient(135deg, #f97316, #ec4899, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 12px;
  box-shadow: 0 8px 40px rgba(249,115,22,.5);
  border: 3px solid rgba(255,255,255,.4);
}
.hero__avatar p { font-size: 17px; font-weight: 800; }
.hero__avatar-sub { font-size: 13px; color: rgba(255,255,255,.65); }

.hero__card {
  position: absolute;
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,.25);
}
.hero__card-icon { font-size: 22px; }
.hero__card--1 { top: 0; right: 0; background: linear-gradient(135deg, rgba(8,145,178,.7), rgba(79,70,229,.7)); animation-delay: 0s; }
.hero__card--2 { top: 0; left: 0; background: linear-gradient(135deg, rgba(249,115,22,.7), rgba(220,38,38,.6)); animation-delay: 1s; }
.hero__card--3 { bottom: 40px; right: 10px; background: linear-gradient(135deg, rgba(22,163,74,.7), rgba(8,145,178,.6)); animation-delay: 2s; }
.hero__card--4 { bottom: 40px; left: 10px; background: linear-gradient(135deg, rgba(112,48,160,.7), rgba(236,72,153,.6)); animation-delay: 1.5s; }

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

.hero__wave { line-height: 0; }
.hero__wave svg { width: 100%; height: 70px; }

/* ============================
   ABOUT
   ============================ */
.about {
  background: linear-gradient(160deg, #f0f9ff 0%, #fdf4ff 50%, #fff7ed 100%);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__content .section__title { text-align: right; margin-bottom: 20px; }
.about__text { font-size: 17px; color: #475569; margin-bottom: 16px; line-height: 1.8; }

.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.diff-card {
  border-radius: var(--radius-sm);
  padding: 22px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.diff-card:nth-child(1) { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.diff-card:nth-child(2) { background: linear-gradient(135deg, #fdf4ff, #f3e8ff); }
.diff-card:nth-child(3) { background: linear-gradient(135deg, #fff7ed, #ffedd5); }
.diff-card:nth-child(4) { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.diff-card__icon { font-size: 32px; margin-bottom: 10px; }
.diff-card h3 { font-size: 15px; font-weight: 800; color: #1e293b; margin-bottom: 6px; }
.diff-card p { font-size: 14px; color: #475569; line-height: 1.6; }

/* ============================
   SERVICES
   ============================ */
.services { background: #fff; }
.services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.service-card {
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
  border: none;
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 16px; left: 24px;
  font-size: 52px;
  font-weight: 900;
  opacity: .12;
  line-height: 1;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-card[data-num="01"] { background: linear-gradient(145deg, #eff6ff, #dbeafe, #e0e7ff); }
.service-card[data-num="01"]::before { color: var(--blue); }
.service-card[data-num="01"] .service-card__title { color: #1e40af; }
.service-card[data-num="01"] .service-card__list li::before { color: #2563eb; }
.service-card[data-num="01"] .service-card__tools { background: rgba(37,99,235,.1); }
.service-card[data-num="01"] .service-card__tools-label { color: #1d4ed8; }

.service-card[data-num="02"] { background: linear-gradient(145deg, #fdf4ff, #f3e8ff, #ede9fe); }
.service-card[data-num="02"]::before { color: var(--purple); }
.service-card[data-num="02"] .service-card__title { color: #6b21a8; }
.service-card[data-num="02"] .service-card__list li::before { color: #7c3aed; }
.service-card[data-num="02"] .service-card__tools { background: rgba(124,58,237,.1); }
.service-card[data-num="02"] .service-card__tools-label { color: #6d28d9; }

.service-card[data-num="03"] { background: linear-gradient(145deg, #fff7ed, #ffedd5, #fef3c7); }
.service-card[data-num="03"]::before { color: var(--coral); }
.service-card[data-num="03"] .service-card__title { color: #c2410c; }
.service-card[data-num="03"] .service-card__list li::before { color: #ea580c; }
.service-card[data-num="03"] .service-card__tools { background: rgba(234,88,12,.1); }
.service-card[data-num="03"] .service-card__tools-label { color: #c2410c; }

.service-card[data-num="04"] { background: linear-gradient(145deg, #f0fdf4, #dcfce7, #d1fae5); }
.service-card[data-num="04"]::before { color: var(--green); }
.service-card[data-num="04"] .service-card__title { color: #15803d; }
.service-card[data-num="04"] .service-card__list li::before { color: #16a34a; }
.service-card[data-num="04"] .service-card__tools { background: rgba(22,163,74,.1); }
.service-card[data-num="04"] .service-card__tools-label { color: #15803d; }

.service-card[data-num="05"] {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, #fdf2f8, #fce7f3, #ede9fe, #e0f2fe);
}
.service-card[data-num="05"]::before { color: var(--pink); }
.service-card[data-num="05"] .service-card__title { color: #9d174d; }
.service-card[data-num="05"] .service-card__list li::before { color: #db2777; }
.service-card[data-num="05"] .service-card__tools { background: rgba(219,39,119,.1); }
.service-card[data-num="05"] .service-card__tools-label { color: #be185d; }

.service-card__header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.service-card__icon { font-size: 40px; flex-shrink: 0; }
.service-card__title { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.service-card__slogan { font-size: 14px; color: var(--gray); font-style: italic; }

.service-card__list { margin-bottom: 20px; }
.service-card__list li {
  padding: 7px 0;
  padding-right: 22px;
  position: relative;
  font-size: 15px;
  color: #334155;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.service-card__list li:last-child { border-bottom: none; }
.service-card__list li::before {
  content: '✓';
  position: absolute; right: 0;
  font-weight: 800;
  font-size: 13px;
}
.service-card__tools {
  font-size: 13px;
  color: #475569;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.service-card__tools-label { font-weight: 700; }

.welfare__content { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }
.welfare__note {
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(219,39,119,.3);
}

/* ============================
   PRICING
   ============================ */
.pricing {
  background: linear-gradient(160deg, #0f172a 0%, #1F4E79 50%, #312e81 100%);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 65%);
  border-radius: 50%;
}
.pricing::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,.12) 0%, transparent 65%);
  border-radius: 50%;
}
.pricing .section__title { color: var(--white); }
.pricing .section__sub { color: rgba(255,255,255,.7); }
.pricing .section__header { position: relative; z-index: 1; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.pricing-card {
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
}
.pricing-card:nth-child(1) { background: linear-gradient(160deg, rgba(8,145,178,.3), rgba(79,70,229,.25)); }
.pricing-card:nth-child(2) { background: linear-gradient(160deg, rgba(249,115,22,.3), rgba(220,38,38,.2)); }
.pricing-card:nth-child(3) { background: linear-gradient(160deg, rgba(112,48,160,.35), rgba(236,72,153,.25)); }

.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.pricing-card--featured {
  border: 2px solid rgba(249,115,22,.7);
  box-shadow: 0 0 0 4px rgba(249,115,22,.15), 0 20px 60px rgba(0,0,0,.3);
  transform: translateY(-10px);
}
.pricing-card--featured:hover { transform: translateY(-14px); }

.pricing-card__badge {
  position: absolute;
  top: -15px; right: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(249,115,22,.5);
}
.pricing-card__header { text-align: center; }
.pricing-card__name { font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}
.pricing-card__amount { font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; }
.pricing-card__currency { font-size: 26px; font-weight: 700; color: rgba(255,255,255,.8); }
.pricing-card__period { font-size: 16px; color: rgba(255,255,255,.6); }
.pricing-card__hours { font-size: 14px; color: rgba(255,255,255,.75); font-weight: 600; }
.pricing-card__target {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  line-height: 1.6;
  border: 1px solid rgba(255,255,255,.1);
}
.pricing-card__target strong { color: var(--white); }
.pricing-card__features { flex: 1; }
.pricing-card__features li {
  padding: 8px 0;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-right: 24px;
  position: relative;
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li::before {
  content: '✓';
  position: absolute; right: 0;
  color: #86efac;
  font-weight: 800;
}
.pricing-card .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.pricing-card .btn--outline:hover { background: rgba(255,255,255,.2); }

.pricing__note {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  display: inline-block;
  margin-right: 50%;
  transform: translateX(50%);
  position: relative;
  z-index: 1;
}

/* ============================
   WHY
   ============================ */
.why { background: linear-gradient(160deg, #fdf4ff 0%, #eff6ff 50%, #f0fdf4 100%); }
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  padding: 36px;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card:nth-child(1) { background: linear-gradient(145deg, #dbeafe, #c7d2fe); }
.why-card:nth-child(2) { background: linear-gradient(145deg, #fce7f3, #f3e8ff); }
.why-card:nth-child(3) { background: linear-gradient(145deg, #ffedd5, #fef9c3); }
.why-card:nth-child(4) { background: linear-gradient(145deg, #dcfce7, #d1fae5); }

.why-card__num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  opacity: .35;
}
.why-card:nth-child(1) .why-card__num { color: #1d4ed8; }
.why-card:nth-child(2) .why-card__num { color: #9d174d; }
.why-card:nth-child(3) .why-card__num { color: #c2410c; }
.why-card:nth-child(4) .why-card__num { color: #15803d; }

.why-card h3 { font-size: 20px; font-weight: 800; color: #1e293b; margin-bottom: 12px; }
.why-card p { font-size: 16px; color: #475569; line-height: 1.75; }

/* ============================
   HOW TO START
   ============================ */
.howto {
  background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 100%);
}
.howto .section__title { color: var(--white); }
.howto .section__sub { color: rgba(255,255,255,.7); }
.steps {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.step { display: flex; gap: 24px; align-items: flex-start; }
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.step:nth-child(1) .step__num { background: linear-gradient(135deg, #f97316, #ec4899); box-shadow: 0 4px 20px rgba(249,115,22,.5); }
.step:nth-child(3) .step__num { background: linear-gradient(135deg, #7c3aed, #2563eb); box-shadow: 0 4px 20px rgba(124,58,237,.5); }
.step:nth-child(5) .step__num { background: linear-gradient(135deg, #16a34a, #0891b2); box-shadow: 0 4px 20px rgba(22,163,74,.5); }

.step__content { padding-top: 8px; padding-bottom: 10px; }
.step__content h3 { font-size: 19px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.step__content p { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.75; }

.step__connector {
  width: 3px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(249,115,22,.6), rgba(124,58,237,.3));
  margin-right: 26px;
  border-radius: 2px;
}

/* ============================
   CONTACT
   ============================ */
.contact {
  background: linear-gradient(145deg, #7030A0 0%, #1F4E79 50%, #0f2744 100%);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(236,72,153,.2) 0%, transparent 65%);
  border-radius: 50%;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 65%);
  border-radius: 50%;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__text .section__title { text-align: right; margin-bottom: 16px; }
.contact__sub { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 36px; line-height: 1.7; }
.contact__details { display: flex; flex-direction: column; gap: 16px; }
.contact__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  background: rgba(255,255,255,.08);
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
}
.contact__item:hover { color: var(--white); background: rgba(255,255,255,.15); }
.contact__item-icon { font-size: 22px; }

/* Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 20px 80px rgba(0,0,0,.3);
}
.form__group { margin-bottom: 20px; }
.form__group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form__group input,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: #1e293b;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  direction: rtl;
  outline: none;
}
.form__group input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,117,182,.12); }
.form__group textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(112,48,160,.12); }
.form__group textarea { resize: vertical; min-height: 100px; }
.form__note { text-align: center; font-size: 13px; color: var(--gray); margin-top: 12px; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #070f1c;
  color: rgba(255,255,255,.6);
  padding: 48px 0 32px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer__logo {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #fb923c, #f472b6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 6px;
}
.footer__brand p { font-size: 14px; color: rgba(255,255,255,.4); }
.footer__links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 15px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__copy { font-size: 13px; color: rgba(255,255,255,.3); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__visual { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__content .section__title { text-align: center; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
  .pricing__note { transform: none; margin-right: 0; display: block; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }
  .nav__links { display: none; flex-direction: column; position: absolute; top: 68px; right: 0; left: 0; background: var(--white); padding: 20px 24px 28px; border-bottom: 1px solid var(--border); gap: 16px; box-shadow: var(--shadow); }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card[data-num="05"] { grid-column: auto; }
  .welfare__content { grid-template-columns: 1fr; }
  .welfare__note { max-width: 100%; }
  .why__grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__text .section__title { text-align: center; }
  .contact__sub { text-align: center; }
  .contact__details { align-items: stretch; }
  .hero__title { font-size: 36px; }
}

@media (max-width: 480px) {
  .hero { padding-top: 100px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .contact__form { padding: 24px; }
  .pricing-card { padding: 28px 20px; }
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
