/* ============================================================
   app.css — Agency CMS Public Styles
   Matches Figma: #191C21 bg, Montserrat headings, Poppins body
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:       #e31c25; /* Vibrant Red */
  --primary-rgb:   227, 28, 37;
  --primary-dark:  #c1121c;
  --bg:            #ffffff;
  --bg-2:          #fdfdfd;
  --bg-card:       rgba(255, 255, 255, 0.8);
  --text:          #1a1a1a;
  --text-muted:    #6b7280;
  --border:        rgba(0, 0, 0, 0.05);
  --border-2:      rgba(227, 28, 37, 0.1);
  --radius:        16px;
  --radius-lg:     32px;
  --radius-btn:    50px;
  --font-heading:  'Montserrat', sans-serif;
  --font-body:     'Poppins', sans-serif;
  --transition:    all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:        0 10px 30px -10px rgba(0, 0, 0, 0.1);
  --shadow-lg:     0 20px 40px -15px rgba(0, 0, 0, 0.15);
  --glass-bg:      rgba(255, 255, 255, 0.75);
  --glass-border:  rgba(255, 255, 255, 0.4);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }

/* ── Global Enhancements ────────────────────────────────────── */
::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; border: 2px solid #f1f1f1; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.text-primary { color: var(--primary); }
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  height: 90px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { height: 70px; box-shadow: var(--shadow); }
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.navbar-nav { display: flex; align-items: center; gap: 40px; list-style: none; }
.navbar-nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.navbar-nav a:hover,
.navbar-nav a.active { color: var(--primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}
.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  background: var(--primary);
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff !important;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 20px -10px rgba(var(--primary-rgb), 0.5);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -12px rgba(var(--primary-rgb), 0.6);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}
.btn-primary:hover::after { left: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 46px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary) !important;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--primary); color: #fff !important; transform: translateY(-3px); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding: 40px 40px 20px !important;
  min-height: var(--hero-minheight, 450px);
  display: flex;
  flex-direction: column;
  margin-top: 0;
}
.hero-inner {
  background: var(--hero-inner-bg, #ffffff);
  background-image: var(--hero-inner-bg-img, none);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
  z-index: 1;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  max-width: 900px;
  margin: 60px 0 20px;
  color: #fff;
  z-index: 2;
  animation: fadeUp 1s cubic-bezier(0.2, 0, 0.2, 1) both;
  letter-spacing: -2px;
}
.hero h1 span {
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}
.hero p {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  z-index: 2;
  animation: fadeUp 1s 0.2s cubic-bezier(0.2, 0, 0.2, 1) both;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  z-index: 2;
  margin-bottom: 60px;
  animation: fadeUp 1s 0.4s cubic-bezier(0.2, 0, 0.2, 1) both;
}

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

/* ── Section Base ──────────────────────────────────────────── */
.section, .as-section, .fg-section, .text-block-section {
  padding: 40px 0 !important;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: center;
  color: #111;
  letter-spacing: -1px;
}
.section-title span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.section-desc {
  font-family:    var(--font-heading);
  font-size:      20px;
  font-weight:    500;
  line-height:    150%;
  letter-spacing: 0.02em;
  text-align:     center;
  color:          var(--text);
  margin-top:     12px;
}
.title-deco-img { width:26px; height:26px; object-fit:contain; margin:0 10px; vertical-align:middle; display:inline-block; }
.star-deco {
  display:      inline-block;
  width:        26px;
  height:       26px;
  background:   var(--gradient-text, linear-gradient(93.66deg, #e31c25 -15.33%, #8EDEDE 139.21%));
  clip-path:    polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
                        50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  margin:       0 10px;
  vertical-align: middle;
}

/* ── Services Section ──────────────────────────────────────── */
.services-section { padding: 40px 0; background: var(--bg-2); }
.services-header { text-align: center; margin-bottom: 40px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--border-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}
.service-icon-img { width: 44px; height: 44px; object-fit: contain; }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: #111 !important;
  transition: var(--transition);
}
.service-card:hover h3 { color: var(--primary) !important; }
.service-card p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #444 !important;
}

/* ── Work Section ──────────────────────────────────────────── */
.work-section { padding: 40px 0; background: #fff; }
.wg-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.wg-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-2);
  min-height: 250px;
  transition: var(--transition);
}
.wg-card:hover { transform: scale(0.98); }
.wg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}
.wg-card:hover .wg-media { transform: scale(1.15); }
.wg-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--bg-2);
  color: var(--border);
}
.wg-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 2;
  transition: var(--transition);
}
.wg-card:hover .wg-overlay { padding-bottom: 50px; background: linear-gradient(to top, rgba(var(--primary-rgb), 0.7), transparent); }
.wg-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}
.wg-card:hover .wg-title { transform: translateY(-5px); }

/* ── Features Grid Section ─────────────────────────────────── */
.fg-section { padding: 40px 40px !important; background: var(--bg); }
.fg-grid {
  display: grid;
  gap: 40px;
}
.fg-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 35px 30px 35px 40px !important;
  background: var(--bg-2);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.fg-content { padding-left: 10px; }
.fg-item:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.fg-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: rgba(227, 28, 37, 0.1);
  line-height: 1;
  transition: var(--transition);
  margin-bottom: 5px;
}
.fg-item:hover .fg-num { color: var(--primary); transform: translateX(5px); }
.fg-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #111 !important;
  text-transform: capitalize;
  letter-spacing: -0.5px;
  transition: var(--transition);
}
.fg-item:hover .fg-title { color: var(--primary) !important; }
.fg-desc {
  font-size: 16px;
  color: #444 !important;
  line-height: 1.8;
  font-weight: 400;
}

/* ── About Section (as-section) ────────────────────────────── */
.as-section { padding: 40px 0 !important; background: var(--bg); }
.as-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.as-img-left { direction: rtl; }
.as-img-left > * { direction: ltr; }
.as-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}
.as-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #111 !important;
}
.as-title span { color: var(--primary); }
.as-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: #444 !important;
  margin-bottom: 30px;
}
.as-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  list-style: none;
  padding: 0;
}
.as-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  color: #222;
}
.as-check {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
}
.as-images { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
.as-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.as-img-1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 75%;
  z-index: 2;
  border: 10px solid #fff;
}
.as-img-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65%;
  height: 70%;
  z-index: 1;
}
.as-img-placeholder {
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--border);
  border: 2px dashed var(--border);
}

/* ── Page Header Block ─────────────────────────────────────── */
.page-header {
  padding: 40px 0 20px;
  text-align: center;
  background: var(--bg-2);
  border-bottom: 2px solid var(--border-2);
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
  letter-spacing: -1.5px;
}
.page-header h1 span { color: var(--primary); }
.page-header p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display:               grid;
  grid-template-columns: 1fr 1.2fr;
  gap:                   40px;
  align-items:           start;
}
.contact-info h2 {
  font-family:   var(--font-heading);
  font-size:     28px;
  font-weight:   700;
  margin-bottom: 16px;
}
.contact-info p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; }
.contact-items  { display: flex; flex-direction: column; gap: 16px; }
.contact-item   { display: flex; align-items: center; gap: 14px; }
.contact-item-icon {
  width:           44px;
  height:          44px;
  background:      rgba(var(--primary-rgb), 0.1);
  color:           var(--primary);
  border-radius:   var(--radius);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       1.1rem;
  flex-shrink:     0;
}
.contact-item-text strong {
  display:        block;
  font-size:      0.75rem;
  color:          var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom:  2px;
}
.contact-item-text span { font-size: 0.9rem; color: var(--text-muted); }
.contact-form {
  background:    linear-gradient(97.65deg,
                   rgba(255,255,255,0.065) 1.6%,
                   rgba(255,255,255,0.039) 98.75%);
  border-radius: var(--radius-lg);
  padding:       40px;
}
.form-group     { margin-bottom: 20px; }
.form-label {
  display:       block;
  font-size:     14px;
  font-weight:   600;
  margin-bottom: 8px;
  color:         var(--text-muted);
}

/* ── Text Block Section ───────────────────────────────────── */
.text-block-section { padding: 40px 0; background: #fff; }
.text-block-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.text-block-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}
.text-block-inner p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section { padding: 80px 0; background: var(--primary); color: #fff; text-align: center; }
.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}
.cta-inner p {
  font-family: var(--font-body);
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}
.cta-inner .btn-primary { background: #fff !important; color: var(--primary) !important; }
.cta-inner .btn-primary:hover { background: var(--bg-2) !important; }
.form-control {
  width:         100%;
  padding:       12px 16px;
  background:    rgba(0,0,0,0.3);
  border:        1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color:         var(--text);
  font-size:     14px;
  font-family:   var(--font-body);
  transition:    var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-section   { padding: 60px 0; }
.cta-inner {
  background:    linear-gradient(135deg,
                   rgba(var(--primary-rgb), 0.08),
                   rgba(255, 255, 255, 0.05));
  border:        1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 24px;
  padding:       60px 40px;
  text-align:    center;
}
.cta-inner h2 {
  font-family:   var(--font-heading);
  font-size:     32px;
  font-weight:   600;
  margin-bottom: 16px;
}
.cta-inner p { color: var(--text-muted); margin-bottom: 32px; font-size: 18px; }

/* ── Text Block ────────────────────────────────────────────── */
.text-block-section { padding: 60px 0; }
.text-block-inner   { max-width: 800px; margin: 0 auto; }
.text-block-inner h2 {
  font-family:   var(--font-heading);
  font-size:     2rem;
  font-weight:   700;
  margin-bottom: 24px;
}
.text-block-inner p { font-size: 16px; color: var(--text-muted); line-height: 1.9; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 60px 40px 0;
  color: var(--text);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 25px;
  display: block;
}
.footer-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 400px;
}
.footer-socials { display: flex; gap: 15px; list-style: none; }
.footer-socials a {
  width: 45px;
  height: 45px;
  background: var(--bg-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-5px);
}
.footer-socials img { display: block; }
.footer-socials img + svg { display: none; }
.footer-socials img.broken { display: none; }
.footer-socials img.broken + svg { display: block; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.footer-links a {
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 15px;
  color: var(--text-muted);
}
.footer-contact-list .icon { color: var(--primary); font-size: 18px; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  background: var(--bg-2);
}

/* ── Scroll Animation ──────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { padding: 40px 40px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .navbar {
  position:        fixed;
  top:             0; left: 0; right: 0;
  z-index:         1000;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         0 70px;
  height:          72px;
  background:      var(--navbar-bg, rgba(25,28,33,0.97));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom:   var(--navbar-border, 1px solid rgba(255,255,255,0.06));
}
  .navbar-nav { display: none; flex-direction: column; width: 100%; padding: 12px 0; }
  .navbar.open .navbar-nav { display: flex; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { flex-direction: column; align-items: center; }
  .work-card { width: 100%; max-width: 374px; }
  .work-card-img { width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .about-section, .contact-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 20px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 24px; }
  .hero p  { font-size: 16px; }
}

/* ── About Section ─────────────────────────── */
.as-section { padding: 80px 0; }
.as-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.as-img-left { direction: rtl; }
.as-img-left .as-content { direction: ltr; }
.as-img-left .as-images  { direction: ltr; }
.as-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.as-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
}
.as-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.as-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  padding: 0;
  margin: 0;
}
.as-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}
.as-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}
.as-images {
  position: relative;
  height: 380px;
}
.as-img {
  position: absolute;
  border-radius: 12px;
  object-fit: cover;
}
.as-img-1 {
  width: 65%;
  height: 70%;
  top: 0; left: 0;
}
.as-img-2 {
  width: 60%;
  height: 65%;
  bottom: 0; right: 0;
  border: 4px solid var(--bg, #111);
}
.as-img-placeholder {
  background: var(--card-bg, #1a2a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
@media(max-width:768px) {
  .as-wrap { grid-template-columns: 1fr; gap: 30px; }
  .as-img-left { direction: ltr; }
  .as-images { height: 260px; }
  .as-features { grid-template-columns: 1fr; }
}

/* ── Features Grid ─────────────────────────── */
.fg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fg-item { padding: 8px 0; }

@media(max-width:768px) {
  .fg-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* fg override */
.fg-num { width:35px;height:31px;border-radius:50%;background:rgba(217,217,217,0.15);border:none;font-size:16px;font-weight:600;display:inline-flex;align-items:center;justify-content:center; }
.fg-title { font-weight:700;line-height:1.2;margin:0; }
.fg-desc { font-size:18px;font-weight:400;line-height:28px;margin:0; }
.fg-content { display:flex;flex-direction:column;gap:16px; }
.fg-item { display:flex;flex-direction:column;gap:24px; }
