/* ============================================================
   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:       #64AF8C;
  --primary-2:     #8EDEDE;
  --bg:            #191C21;
  --bg-2:          #1E2021;
  --bg-card:       rgba(255,255,255,0.065);
  --text:          #FFFFFF;
  --text-muted:    #C9C9C9;
  --border:        #757575;
  --border-2:      #314346;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-btn:    30px;
  --font-heading:  'Montserrat', sans-serif;
  --font-body:     'Poppins', sans-serif;
  --transition:    all 0.3s ease;
}

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

/* ── Utility ───────────────────────────────────────────────── */
.container   { max-width: 1390px; margin: 0 auto; padding: 0 25px; }
.text-primary { color: var(--primary); }

/* ── Navbar ────────────────────────────────────────────────── */
.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-brand {
  font-family:  var(--font-heading);
  font-size:    24px;
  font-weight:  600;
  color:        var(--text);
}
.navbar-nav {
  display:    flex;
  align-items: center;
  gap:        0;
  list-style: none;
}
.navbar-nav a {
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding:         10px 14px;
  font-family:     var(--font-heading);
  font-size:       18px;
  font-weight:     600;
  color:           var(--text);
  transition:      color 0.2s;
}
.navbar-nav li:first-child a { font-weight: 700; font-size: 20px; }
.navbar-nav a:hover,
.navbar-nav a.active { color: var(--primary); }
.nav-toggle {
  display:         none;
  flex-direction:  column;
  gap:             5px;
  cursor:          pointer;
  background:      none;
  border:          none;
  padding:         8px;
}
.nav-toggle span {
  width:         24px;
  height:        2px;
  background:    var(--text);
  border-radius: 2px;
  transition:    var(--transition);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  padding:         15px 50px;
  background:      var(--btn-primary-bg, var(--primary));
  border-radius:   var(--btn-primary-radius, var(--radius-btn));
  font-family:     var(--font-heading);
  font-size:       20px;
  font-weight:     500;
  color:           var(--btn-primary-color, var(--text));
  border:          none;
  cursor:          pointer;
  transition:      var(--transition);
}
.btn-primary:hover { filter: brightness(0.88); transform: translateY(-2px); }

.btn-outline {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  padding:         15px 44px;
  border:          2px solid var(--btn-primary-bg, var(--primary));
  border-radius:   var(--btn-primary-radius, var(--radius-btn));
  font-family:     var(--font-heading);
  font-size:       20px;
  font-weight:     500;
  color:           var(--btn-primary-color, var(--text));
  background:      var(--btn-primary-bg, transparent);
  cursor:          pointer;
  transition:      var(--transition);
}
.btn-outline:hover { filter: brightness(0.88); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding:    var(--hero-padding, 16px 25px);
  min-height: var(--hero-minheight, 680px);
  display:    flex;
  flex-direction: column;
}
.hero-inner {
  background:          var(--hero-inner-bg, transparent);
  background-image:    var(--hero-inner-bg-img, none);
  background-size:     cover;
  background-position: center;
  border-radius:       var(--hero-inner-radius, 0px);
  border:              var(--hero-inner-border, none);
  flex:                1;
  display:             flex;
  flex-direction:      column;
  align-items:         center;
  justify-content:     center;
  text-align:          center;
  position:            relative;
  overflow:            hidden;
}
.hero-inner::before { display: none; }
.hero h1 {
  font-family:   var(--font-heading);
  font-size:     32px;
  font-weight:   600;
  line-height:   120%;
  max-width:     569px;
  margin-bottom: 20px;
  animation:     fadeUp 0.8s ease both;
}
.hero p {
  font-family:   var(--font-heading);
  font-size:     20px;
  font-weight:   500;
  line-height:   150%;
  letter-spacing: 0.02em;
  max-width:     743px;
  color:         var(--text);
  margin-bottom: 40px;
  animation:     fadeUp 0.8s 0.15s ease both;
}
.hero-buttons {
  display:         flex;
  gap:             24px;
  flex-wrap:       wrap;
  justify-content: center;
  animation:       fadeUp 0.8s 0.3s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Section Base ──────────────────────────────────────────── */
.section      { padding: var(--section-padding, 80px 0); }
.section-title {
  font-family:   var(--font-heading);
  font-size:     var(--section-title-size, 32px);
  font-weight:   700;
  line-height:   120%;
  margin-bottom: 12px;
}
.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, #64AF8C -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: var(--services-padding, 60px 0); background: var(--services-bg, transparent); }
.services-header   { text-align: center; margin-bottom: 48px; }
.services-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   24px;
}
.service-card {
  background:    var(--card-bg, linear-gradient(97.65deg, rgba(255,255,255,0.065) 1.6%, rgba(255,255,255,0.039) 98.75%));
  border-radius: var(--card-radius, var(--radius-lg));
  border:        var(--card-border-style, none);
  padding:       28px 32px;
  transition:    var(--transition);
  min-height:    192px;
}
.service-card:hover { filter: brightness(1.1); transform: translateY(-4px); }
.service-card-top {
  display:     flex;
  align-items: center;
  gap:         16px;
  margin-bottom: 14px;
}
.service-icon { font-size: 28px; width: 30px; height: 30px; display: flex; align-items: center; }
.service-icon-img { width: 36px; height: 36px; object-fit: contain; display: block; }
.service-card h3 {
  font-family:  var(--font-body);
  font-size:    20px;
  font-weight:  700;
  line-height:  100%;
  color:        var(--text);
}
.service-card p {
  font-family: var(--font-body);
  font-size:   18px;
  font-weight: 400;
  line-height: 28px;
  color:       var(--text-muted);
}

/* ── Work Section ──────────────────────────────────────────── */
.work-section  { padding: var(--work-padding, 60px 0); background: var(--work-bg, transparent); }
.work-grid { display:flex;gap:35px;justify-content:center;flex-wrap:wrap;margin-top:41px; }
.work-card { width:374px;flex-shrink:0; }
.work-card-img { width:374px;height:250px;border-radius:var(--card-radius,var(--radius));overflow:hidden;background:var(--card-bg,linear-gradient(135deg,#1a3a2a,#0d2a3a));border:var(--card-border-style,none);margin-bottom:33px;display:flex;align-items:center;justify-content:center;font-size:4rem; }
.work-card-img img { width:100%;height:100%;object-fit:cover; }

/* New work grid */
.wg-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
/* Row 1: 3 equal cards */
.wg-grid .wg-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; height: 260px; }
.wg-grid .wg-card:nth-child(2) { grid-column: 3 / 5; grid-row: 1; height: 260px; }
.wg-grid .wg-card:nth-child(3) { grid-column: 5 / 7; grid-row: 1; height: 260px; }
/* Row 2: card4 wide, card5 medium, card6 small */
.wg-grid .wg-card:nth-child(4) { grid-column: 1 / 4; grid-row: 2; height: 280px; }
.wg-grid .wg-card:nth-child(5) { grid-column: 4 / 6; grid-row: 2; height: 280px; }
.wg-grid .wg-card:nth-child(6) { grid-column: 6 / 7; grid-row: 2; height: 280px; }
@media(max-width:768px) {
  .wg-grid { grid-template-columns: 1fr; }
  .wg-grid .wg-card:nth-child(n) {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
    height: 220px !important;
  }
}
.wg-card {
  position: relative;
  border-radius: var(--radius, 12px);
  overflow: hidden;
  cursor: pointer;
  background: #111;
  min-height: 200px;
}
.wg-card:hover .wg-overlay { opacity: 1; }
.wg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.wg-card:hover .wg-media { transform: scale(1.04); }
.wg-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: var(--card-bg, linear-gradient(135deg,#1a3a2a,#0d2a3a));
}
.wg-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wg-overlay-bg {
  position: absolute;
  inset: 0;
  transition: opacity .3s;
}
.wg-title {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-family: var(--font-heading);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
@media(max-width:768px) {
  .wg-grid { grid-template-columns: 1fr; }
}
.work-card h3 {
  font-family:   var(--font-body);
  font-size:     24px;
  font-weight:   600;
  line-height:   28px;
  color:         var(--text);
  margin-bottom: 16px;
}
.work-card p {
  font-family: var(--font-body);
  font-size:   18px;
  font-weight: 400;
  line-height: 28px;
  color:       var(--text-muted);
}

/* ── Why/About Section ─────────────────────────────────────── */
.why-section {
  background: var(--why-bg, var(--bg-2));
  padding:    50px 0;
  position:   relative;
  overflow:   hidden;
}
.why-section::before {
  content:       '';
  position:      absolute;
  width:         361px;
  height:        361px;
  right:         -100px;
  top:           -71px;
  background:    rgba(83,170,167,0.14);
  filter:        blur(150px);
  border-radius: 50%;
}
.why-section::after {
  content:       '';
  position:      absolute;
  width:         361px;
  height:        361px;
  left:          -150px;
  bottom:        -100px;
  background:    rgba(83,170,167,0.14);
  filter:        blur(150px);
  border-radius: 50%;
}
.why-title {
  font-family:   var(--font-heading);
  font-size:     32px;
  font-weight:   600;
  text-align:    center;
  margin-bottom: 50px;
  position:      relative;
  z-index:       1;
}
.why-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   40px;
  position:              relative;
  z-index:               1;
}
.why-num {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  width:           35px;
  height:          31px;
  background:      rgba(217,217,217,0.15);
  border-radius:   19px;
  font-family:     var(--font-heading);
  font-size:       16px;
  font-weight:     600;
  color:           var(--text);
  margin-bottom:   24px;
}
.why-item h3 {
  font-family:   var(--font-body);
  font-size:     20px;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 16px;
}
.why-item p {
  font-family: var(--font-body);
  font-size:   18px;
  font-weight: 400;
  line-height: 28px;
  color:       var(--text-muted);
}

/* ── About (2-col) Section ─────────────────────────────────── */
.about-section {
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         60px;
  align-items: center;
}
.about-label {
  font-size:      0.8rem;
  font-weight:    600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--primary);
  margin-bottom:  12px;
}
.about-title {
  font-family:   var(--font-heading);
  font-size:     28px;
  font-weight:   700;
  line-height:   1.2;
  margin-bottom: 20px;
}
.about-title span { color: var(--primary); }
.about-desc {
  font-family:   var(--font-body);
  font-size:     16px;
  line-height:   1.8;
  color:         var(--text-muted);
  margin-bottom: 32px;
}
.features-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   12px;
}
.feature-item {
  display:     flex;
  align-items: center;
  gap:         10px;
  font-size:   14px;
  font-weight: 600;
  font-family: var(--font-body);
}
.feature-icon {
  width:           22px;
  height:          22px;
  background:      var(--primary);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  font-size:       11px;
  color:           #fff;
}
.about-images    { position: relative; height: 380px; }
.about-img-1 {
  position:      absolute;
  left:          0;
  top:           0;
  width:         58%;
  height:        70%;
  border-radius: var(--radius-lg);
  overflow:      hidden;
  box-shadow:    0 8px 48px rgba(0,0,0,0.4);
}
.about-img-2 {
  position:      absolute;
  right:         0;
  bottom:        0;
  width:         58%;
  height:        70%;
  border-radius: var(--radius-lg);
  overflow:      hidden;
  box-shadow:    0 8px 48px rgba(0,0,0,0.4);
}
.about-img-placeholder {
  width:           100%;
  height:          100%;
  background:      linear-gradient(135deg,
                     rgba(255,255,255,0.065),
                     rgba(255,255,255,0.03));
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       3rem;
}

/* ── Page Header Block ─────────────────────────────────────── */
.page-header       { padding: var(--page-header-padding, 80px 0 60px); text-align: center; }
.page-header h1 {
  font-family:   var(--font-heading);
  font-size:     36px;
  font-weight:   600;
  margin-bottom: 16px;
}
.page-header h1 span { color: var(--primary); }
.page-header p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display:               grid;
  grid-template-columns: 1fr 1.2fr;
  gap:                   60px;
  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(100,175,140,0.15);
  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);
}
.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(100,175,140,0.12); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-section   { padding: 60px 0; }
.cta-inner {
  background:    linear-gradient(135deg,
                   rgba(100,175,140,0.12),
                   rgba(142,222,222,0.06));
  border:        1px solid rgba(100,175,140,0.2);
  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:  var(--bg);
  border-top:  1px solid var(--border);
  padding:     40px 127px 0;
}
.footer-grid {
  display:               grid;
  grid-template-columns: 328px 1fr 1fr 1fr;
  gap:                   80px;
  padding-bottom:        32px;
}
.footer-brand {
  font-family:   var(--font-heading);
  font-size:     24px;
  font-weight:   600;
  margin-bottom: 24px;
}
.footer-desc {
  font-size:     16px;
  line-height:   28px;
  color:         var(--text-muted);
  margin-bottom: 24px;
  max-width:     328px;
}
.footer-socials        { display: flex; gap: 12px; list-style: none; }
.footer-socials a {
  width:           28px;
  height:          28px;
  background:      rgba(85,85,85,0.1);
  border-radius:   19px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       12px;
  color:           var(--text-muted);
  transition:      var(--transition);
}
.footer-socials a:hover { background: rgba(100,175,140,0.2); color: var(--text); }
.footer-col h4 {
  font-family:   var(--font-body);
  font-size:     16px;
  font-weight:   700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color:         var(--text);
}
.footer-links          { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.footer-links a        { font-size: 14px; line-height: 21px; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover  { color: var(--primary); }
.footer-contact-list   { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.footer-contact-list .icon { color: var(--text-muted); }
.footer-bottom {
  border-top:  1px solid var(--border-2);
  padding:     20px 0;
  text-align:  center;
  font-size:   14px;
  line-height: 21px;
  color:       var(--text);
}

/* ── 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; }
