/* ============================================================
   OUTSPOT — Main Stylesheet
   Direction: RTL (Arabic-first)
   Colors: Navy #16324F | White #FFFFFF | Neutral #F2F4F5 | Accent #F97316
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy:     #16324F;
  --navy-90:  #16324Fea;
  --navy-light: #1e3f62;
  --white:    #FFFFFF;
  --neutral:  #F2F4F5;
  --neutral-2: #E8EAEC;
  --accent:   #F97316;
  --accent-light: #FFF0E6;
  --text-primary:   #16324F;
  --text-secondary: #4A6580;
  --text-muted:     #8FA5BA;
  --border:   #DDE3E9;

  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(22,50,79,0.08), 0 1px 2px rgba(22,50,79,0.04);
  --shadow-md: 0 4px 16px rgba(22,50,79,0.10);
  --shadow-lg: 0 8px 32px rgba(22,50,79,0.12);

  --section-pad: 96px 0;
  --container-w: 1160px;
}

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

body {
  font-family: var(--font-ar);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography Scale ─────────────────────────────────────── */
.display-xl { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
.display-lg { font-size: clamp(2rem, 4vw, 3rem);   font-weight: 700; line-height: 1.25; }
.display-md { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.3; }
.heading-sm  { font-size: 1.25rem; font-weight: 600; }
.body-lg    { font-size: 1.125rem; line-height: 1.75; }
.body-md    { font-size: 1rem; line-height: 1.7; }
.body-sm    { font-size: 0.875rem; line-height: 1.6; }
.label      { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

/* ── Section Label ────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ar);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-ar);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249,115,22,0.30);
}
.btn-primary:hover {
  background: #ea6a0e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}
.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--neutral);
}
.btn-ghost-white {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── Navigation ───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
#navbar.scrolled .nav-logo img {
  filter: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
#navbar.scrolled .nav-links a {
  color: var(--text-secondary);
}
#navbar.scrolled .nav-links a:hover {
  color: var(--navy);
  background: var(--neutral);
}
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-md) !important;
}
.nav-cta:hover {
  background: #ea6a0e !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}
#navbar.scrolled .nav-hamburger span {
  background: var(--navy);
}

/* ── Hero ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Signature element: The O-ring motif from the logo */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.hero-ring-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  left: -200px;
}
.hero-ring-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  border-color: rgba(249,115,22,0.06);
}
.hero-ring-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 40%;
  transform: translateY(-50%);
  border-color: rgba(255,255,255,0.03);
  border-width: 40px;
}
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
}
.hero-dot-1 {
  width: 10px;
  height: 10px;
  top: 30%;
  left: 20%;
  opacity: 0.7;
}
.hero-dot-2 {
  width: 6px;
  height: 6px;
  bottom: 25%;
  right: 30%;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-badge span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title .accent-word {
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-value span {
  color: var(--accent);
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ── Services Section ─────────────────────────────────────── */
#services {
  padding: var(--section-pad);
  background: var(--white);
}
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.services-header p {
  color: var(--text-secondary);
  margin-top: 16px;
  font-size: 1.05rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--neutral-2);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}
.service-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.service-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Why Outspot ──────────────────────────────────────────── */
#why {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#why .hero-ring {
  opacity: 0.5;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-text .section-label {
  color: var(--accent);
}
.why-text h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
}
.why-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-point-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-point-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.why-point-text h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1rem;
}
.why-point-text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.why-stat-card:first-child {
  grid-column: 1 / -1;
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.2);
}
.why-stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.why-stat-num .unit {
  font-size: 1.5rem;
  color: var(--accent);
}
.why-stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

/* ── Portfolio ────────────────────────────────────────────── */
#portfolio {
  padding: var(--section-pad);
  background: var(--neutral);
}
.portfolio-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.portfolio-header p {
  color: var(--text-secondary);
  margin-top: 16px;
  font-size: 1.05rem;
}
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-ar);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  background: var(--white);
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}
.portfolio-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.portfolio-item.large {
  grid-column: span 2;
}
.portfolio-thumb {
  aspect-ratio: 16/9;
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-thumb.tall { aspect-ratio: 4/5; }
.portfolio-thumb-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}
.portfolio-thumb-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.portfolio-info {
  padding: 20px 24px;
}
.portfolio-info-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.portfolio-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.portfolio-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Process ──────────────────────────────────────────────── */
#process {
  padding: var(--section-pad);
  background: var(--white);
}
.process-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}
.process-header p {
  color: var(--text-secondary);
  margin-top: 16px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s;
  font-family: var(--font-en);
}
.process-step.active .process-step-num,
.process-step:hover .process-step-num {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.process-step.accent .process-step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Testimonials ─────────────────────────────────────────── */
#testimonials {
  padding: var(--section-pad);
  background: var(--neutral);
}
.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.testimonials-header p {
  color: var(--text-secondary);
  margin-top: 16px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: #FBBF24;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  quotes: none;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── FAQ ──────────────────────────────────────────────────── */
#faq {
  padding: var(--section-pad);
  background: var(--white);
}
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-header p {
  color: var(--text-secondary);
  margin-top: 16px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--navy);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  background: transparent;
  width: 100%;
  text-align: right;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--neutral); }
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ── Contact Section ──────────────────────────────────────── */
#contact {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-text .section-label { color: var(--accent); }
.contact-text h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.contact-text p {
  color: rgba(255,255,255,0.60);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-item span {
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
}
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-ar);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.30);
}
.form-group select option {
  background: var(--navy);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
}

/* ── Footer ───────────────────────────────────────────────── */
#footer {
  background: #0e2336;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 260px;
}
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-social {
  display: flex;
  gap: 8px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.social-link:hover {
  background: var(--accent);
}
.social-link svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.70);
}

/* ── Mobile Nav ───────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.mobile-nav a:hover {
  background: var(--neutral);
  color: var(--navy);
}
.mobile-nav-cta {
  margin-top: 8px;
  background: var(--accent) !important;
  color: var(--white) !important;
  text-align: center;
}

/* ── Scroll Animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.large { grid-column: span 1; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-inner { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-stats::before { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px; }

  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .why-stat-card:first-child { grid-column: 1 / -1; }

  .portfolio-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-step { text-align: right; display: flex; gap: 20px; align-items: flex-start; }
  .process-step-num { margin: 0; flex-shrink: 0; }
  .process-step-content { flex: 1; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .hero-stats { justify-content: flex-start; gap: 24px; }
  .contact-form { padding: 24px; }
  .portfolio-filters { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 0.8rem; }
}

/* ── Utility ──────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-0  { margin-bottom: 0 !important; }
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}
