﻿:root {
  --primary:     #E05040;
  --primary-rgb: 224, 80, 64;
  --foreground:  #4A3D3D;
  --background:  #F2EDE8;
  --white:       #ffffff;
  --text-muted:  rgba(74,61,61,.55);
  --border:      rgba(74,61,61,.08);

  --r-lg:  24px;
  --r-xl:  28px;
  --r-2xl: 32px;
  --r-3xl: 40px;

  --shadow-card: 0 4px 24px rgba(74,61,61,.08);
  --shadow-lg:   0 12px 40px rgba(74,61,61,.15);

  --max-w: 960px;
  --max-w-xl: 1150px;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--background);
  color: var(--foreground);
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── Layout Helpers ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
}
.container-xl {
  width: 100%;
  max-width: var(--max-w-xl);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.1; }

.hero-title    { font-size: clamp(38px, 6vw, 72px); }
.section-title { font-size: clamp(28px, 4vw, 44px); }
.card-title    { font-size: clamp(18px, 2vw, 22px); }

.text-muted   { color: var(--text-muted); }
.text-primary { color: var(--primary); }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.btn:hover { opacity: .88; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); opacity: 1; }

.btn-ghost-white {
  background: rgba(255,255,255,.15);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.25); opacity: 1; }

.btn-sm { height: 40px; padding: 0 20px; font-size: 13px; border-radius: 12px; }

/* ─── Navbar ────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w-xl);
  margin-inline: auto;
  padding-inline: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 17px;
}
.nav-logo-hash {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.current { color: var(--primary); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 12px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── Hero Section ──────────────────────────────────────── */
.hero {
  background: var(--foreground);
  color: #fff;
  padding: 80px 20px 100px;
}
.hero .container { position: relative; }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero-title em { color: var(--primary); font-style: normal; }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* ─── Section Generic ───────────────────────────────────── */
.section { padding: 80px 20px; }
.section-sm { padding: 56px 20px; }
.section-dark { background: var(--foreground); color: #fff; }
.section-primary { background: var(--primary); color: #fff; }
.section-white { background: #fff; }

.section-header { margin-bottom: 52px; }
.section-header .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-dark .eyebrow { color: var(--primary); }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); max-width: 500px; line-height: 1.65; }

/* ─── Cards ─────────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform .25s;
}
.card:hover { transform: translateY(-3px); }

.card-grid {
  display: grid;
  gap: 20px;
}
.card-grid-2 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* ─── Services ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform .25s;
  text-align: right;
}
.service-card:hover { transform: translateY(-4px); }
.service-card.featured { background: var(--primary); color: #fff; }
.service-card.featured .service-icon { background: rgba(255,255,255,.2); color: #fff; }
.service-card.featured p { color: rgba(255,255,255,.75); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(224,80,64,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ─── Process Steps ─────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: start;
}
.section-dark .process-step { border-bottom-color: rgba(255,255,255,.08); }
.process-step:last-child { border-bottom: none; }
.process-number {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(224,80,64,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.section-dark .process-number { background: rgba(224,80,64,.2); }
.process-content h3 { font-size: 20px; margin-bottom: 8px; }
.process-content p  { font-size: 15px; opacity: .65; line-height: 1.65; }

/* ─── Portfolio Grid ────────────────────────────────────── */
.portfolio-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: flex-end;
}
.filter-btn {
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all .2s;
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.portfolio-card {
  border-radius: var(--r-2xl);
  padding: 28px;
  aspect-ratio: 4/3.2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transition: transform .25s;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.portfolio-card:hover { transform: scale(1.02); }
.portfolio-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.18);
  margin-bottom: 12px;
  align-self: flex-start;
}
.portfolio-card h3 { font-size: 20px; font-weight: 600; line-height: 1.2; }
.portfolio-card p  { font-size: 13px; opacity: .65; margin-top: 8px; line-height: 1.5; }
.portfolio-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.portfolio-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ─── Testimonials ──────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--r-xl);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
}
.testimonial-quote {
  font-size: 32px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  opacity: .8;
  margin-bottom: 20px;
}
.testimonial-author { font-weight: 600; font-size: 14px; }
.testimonial-role   { font-size: 13px; opacity: .5; margin-top: 2px; }

/* ─── Contact CTA ───────────────────────────────────────── */
.contact-cta-block {
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-3xl);
  padding: 60px 40px;
  text-align: center;
}
.contact-cta-block h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.contact-cta-block p  { font-size: 17px; opacity: .8; margin-bottom: 36px; }
.contact-cta-actions  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── About Section ─────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 340px 1fr; }
}
.about-image {
  width: 100%;
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: rgba(224,80,64,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  font-weight: 800;
  color: rgba(224,80,64,.2);
  user-select: none;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge-value { font-size: 26px; font-weight: 700; }
.about-badge-label { font-size: 11px; opacity: .8; }

.story-block { margin-bottom: 36px; text-align: right; }
.story-block h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.story-block p  { font-size: 16px; color: var(--text-muted); line-height: 1.75; }

.quote-block {
  background: var(--foreground);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 32px;
  margin-top: 36px;
  text-align: right;
}
.quote-block-mark { font-size: 36px; color: var(--primary); font-weight: 700; line-height: 1; margin-bottom: 12px; }
.quote-block-text { font-size: 17px; opacity: .8; line-height: 1.7; font-style: italic; }
.quote-block-author { font-size: 13px; opacity: .4; margin-top: 16px; }

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 20px;
}
.skill-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

/* ─── Stats Row ─────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-value { font-size: 48px; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 6px; }

/* ─── Contact Form ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 340px; }
}

.contact-form-card {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-align: right;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  background: var(--background);
  color: var(--foreground);
  direction: rtl;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }
.contact-method-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
  text-align: right;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: row-reverse;
}
.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(224,80,64,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-method-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.contact-method-value { font-size: 15px; font-weight: 600; color: var(--primary); }

/* ─── Single Project ────────────────────────────────────── */
.project-hero {
  padding: 80px 20px;
  color: #fff;
}
.project-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .project-layout { grid-template-columns: 1fr 300px; }
}
.project-meta-card {
  background: rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 28px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
}
.project-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
}
.project-meta-row:last-child { border-bottom: none; }
.project-meta-row .label { opacity: .55; }
.project-meta-row .value { font-weight: 600; }

/* ─── Blog ──────────────────────────────────────────────── */
.blog-featured {
  border-radius: var(--r-2xl);
  padding: 40px;
  margin-bottom: 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: transform .25s;
}
.blog-featured:hover { transform: scale(1.01); }
.blog-featured h2 { font-size: clamp(24px, 3vw, 36px); }
.blog-featured p  { opacity: .75; max-width: 500px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.blog-card {
  border-radius: var(--r-2xl);
  padding: 28px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  color: #fff;
  transition: transform .25s;
}
.blog-card:hover { transform: scale(1.02); }
.blog-cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.18);
  align-self: flex-start;
}
.blog-card h3 { font-size: 18px; font-weight: 600; line-height: 1.3; }
.blog-card p  { font-size: 13px; opacity: .65; line-height: 1.5; margin-top: 8px; }
.blog-card-meta { font-size: 12px; opacity: .45; }

.single-post-hero { background: var(--foreground); color: #fff; padding: 80px 20px; }
.single-post-content {
  max-width: 720px;
  margin-inline: auto;
  padding: 60px 20px;
}
.single-post-content p  { font-size: 17px; line-height: 1.8; color: var(--text-muted); margin-bottom: 24px; text-align: right; }
.single-post-content h2 { font-size: 26px; margin: 40px 0 16px; text-align: right; }
.single-post-content h3 { font-size: 20px; margin: 32px 0 12px; text-align: right; }
.single-post-content blockquote {
  border-right: 4px solid var(--primary);
  padding-right: 20px;
  margin: 32px 0;
}
.single-post-content blockquote p { font-size: 20px; font-style: italic; color: var(--foreground); opacity: .8; }

/* ─── 404 ───────────────────────────────────────────────── */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 60px 20px;
  text-align: center;
}
.not-found-code { font-size: 120px; font-weight: 800; color: var(--primary); opacity: .15; line-height: 1; }
.not-found h1 { font-size: 32px; margin-top: -32px; margin-bottom: 16px; }
.not-found p  { color: var(--text-muted); margin-bottom: 36px; }

/* ─── Footer ────────────────────────────────────────────── */
#site-footer {
  background: var(--foreground);
  color: rgba(255,255,255,.65);
}
.footer-inner {
  max-width: var(--max-w-xl);
  margin-inline: auto;
  padding: 48px 20px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 700px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: start; }
}
.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
}
.footer-brand-name .hash { font-size: 26px; color: var(--primary); }
.footer-brand-tagline { font-size: 13px; max-width: 200px; text-align: right; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: flex-end;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links a:hover { color: var(--primary); }

.footer-contact { text-align: right; }
.footer-contact a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  color: rgba(255,255,255,.25);
}
@media (min-width: 700px) { .footer-bottom { flex-direction: row; } }
.footer-bottom a { color: rgba(255,255,255,.2); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.5); }

/* ─── Services Page Details ─────────────────────────────── */
.service-detail-card {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}
.service-detail-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-detail-card .desc { color: var(--text-muted); margin-bottom: 24px; }
.service-includes { display: flex; flex-direction: column; gap: 10px; }
.service-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row-reverse;
  font-size: 15px;
  color: var(--text-muted);
}
.service-includes li::after {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}
.service-meta {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.service-meta-item {
  background: var(--background);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 13px;
  text-align: right;
}
.service-meta-item .meta-label { color: var(--text-muted); font-size: 11px; }
.service-meta-item .meta-value { font-weight: 600; color: var(--primary); }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  cursor: pointer;
  direction: rtl;
}
.faq-question:hover { color: var(--primary); }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: right;
}

/* ─── Values Grid ───────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.value-card {
  background: var(--background);
  border-radius: var(--r-xl);
  padding: 28px;
  text-align: right;
}
.value-icon { font-size: 28px; margin-bottom: 14px; }
.value-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.value-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ─── Timeline Visual ───────────────────────────────────── */
.timeline-bar {
  background: var(--foreground);
  border-radius: var(--r-2xl);
  padding: 40px;
  color: #fff;
  text-align: right;
}
.timeline-bar h3 { font-size: 20px; margin-bottom: 28px; }
.timeline-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-direction: row-reverse;
}
.timeline-step-num { color: var(--primary); font-weight: 700; width: 24px; font-size: 14px; flex-shrink: 0; }
.timeline-track {
  flex: 1;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  height: 32px;
  position: relative;
  overflow: hidden;
}
.timeline-fill {
  position: absolute;
  right: 0; top: 0;
  height: 100%;
  background: rgba(224,80,64,.3);
  border-radius: 999px;
}
.timeline-label {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.timeline-duration { font-size: 11px; color: rgba(255,255,255,.35); width: 56px; text-align: left; flex-shrink: 0; }

/* ─── Related Projects ──────────────────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* ─── WhatsApp SVG icon helper ──────────────────────────── */
.icon-wa { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* ─── Utilities ─────────────────────────────────────────── */
.text-right { text-align: right; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-12 { gap: 12px; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-end    { justify-content: flex-end; }
.w-full { width: 100%; }
.text-center { text-align: center; }

@media (max-width: 700px) {
  .hero { padding: 60px 20px 80px; }
  .section { padding: 60px 20px; }
  .contact-form-card { padding: 24px; }
  .contact-cta-block { padding: 40px 20px; }
  .timeline-bar { padding: 28px 20px; }
  .project-meta-card { padding: 20px; }
}
