/* =========================================================
   Scope 7 — Main Stylesheet
   ثيم مبرمج من الصفر • Bootstrap 5 + Font Awesome + Cairo
   ========================================================= */

:root {
  --s7-bg:        #0A0A0A;
  --s7-surface:   #111111;
  --s7-surface-2: #1A1A1A;
  --s7-border:    #2A2A2A;
  --s7-accent:    #FF2D55;
  --s7-accent-2:  #FF6B8A;
  --s7-text:      #FFFFFF;
  --s7-muted:     #A0A0A0;
  --s7-muted-2:   #D5D5D5;
  --s7-radius:    16px;
  --s7-gradient:  linear-gradient(135deg, #FF2D55 0%, #FF6B8A 100%);
  --s7-container: 1200px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--s7-bg);
  color: var(--s7-text);
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--s7-accent); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 { font-family: "Cairo", sans-serif; font-weight: 800; margin: 0; }

.container { max-width: var(--s7-container); }

.s7-accent { color: var(--s7-accent); }

.skip-link {
  position: absolute; top: 8px; right: 8px; z-index: 100000;
  background: var(--s7-accent); color: #fff; padding: 8px 16px; border-radius: 8px;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: var(--s7-border); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--s7-accent); }

/* ---------- Buttons ---------- */
.s7-btn {
  --bs-btn-focus-shadow-rgb: 255 45 85;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 15px; line-height: 1;
  padding: 12px 30px; border-radius: 8px; border: 1px solid transparent;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
  cursor: pointer;
}
.s7-btn-lg { padding: 16px 34px; font-size: 16px; }

.s7-btn-primary { background: var(--s7-accent); color: #fff; }
.s7-btn-primary:hover {
  background: var(--s7-accent); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(255, 45, 85, .35);
}

.s7-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.s7-btn-outline:hover { background: #fff; color: #0A0A0A; border-color: #fff; transform: translateY(-2px); }

.s7-btn-outline-accent { background: transparent; color: var(--s7-accent); border-color: var(--s7-accent); }
.s7-btn-outline-accent:hover { background: var(--s7-accent); color: #fff; transform: translateY(-2px); }

/* ---------- Header ---------- */
.s7-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1030;
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
.s7-header.is-scrolled {
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}
.s7-navbar { padding: 18px 0; }
.s7-header.is-scrolled .s7-navbar { padding: 12px 0; }

.s7-brand { display: inline-flex; align-items: center; }
.s7-logo-img, .s7-brand .custom-logo { height: 44px; width: auto; }

.s7-collapse { align-items: center; }
.s7-navbar .nav-link {
  color: var(--s7-muted-2); font-weight: 600; font-size: 15px;
  padding: 8px 16px; border-radius: 6px;
}
.s7-navbar .nav-link:hover,
.s7-navbar .nav-item.active > .nav-link,
.s7-navbar .nav-link.active { color: #fff; }

.s7-navbar .dropdown-menu {
  background: var(--s7-surface); border: 1px solid var(--s7-border); border-radius: 10px;
}
.s7-navbar .dropdown-item { color: var(--s7-muted-2); }
.s7-navbar .dropdown-item:hover { background: var(--s7-surface-2); color: #fff; }

.s7-header-cta { margin-inline-start: 18px; padding: 10px 24px; font-size: 14px; }

.s7-toggler {
  border: 1px solid var(--s7-border); padding: 6px 10px;
}
.s7-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.s7-toggler:focus { box-shadow: 0 0 0 .2rem rgba(255, 45, 85, .35); }

@media (max-width: 991.98px) {
  .s7-collapse {
    background: rgba(10, 10, 10, .97);
    border: 1px solid var(--s7-border);
    border-radius: 14px;
    margin-top: 14px; padding: 18px;
  }
  .s7-navbar .navbar-nav { width: 100%; }
  .s7-header-cta { margin: 14px 0 0; width: 100%; }
}

/* ---------- Section head ---------- */
.s7-section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.s7-eyebrow {
  display: inline-block; color: var(--s7-accent); font-weight: 700;
  font-size: 14px; letter-spacing: .5px; margin-bottom: 14px;
}
.s7-section-title { font-size: 40px; line-height: 1.25; margin-bottom: 16px; }
.s7-section-sub { color: var(--s7-muted); font-size: 16px; margin-bottom: 26px; }

/* ---------- Hero ---------- */
.s7-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 160px 0 90px;
  overflow: hidden; background: #060606;
}
.s7-hero-video { position: absolute; inset: 0; z-index: 0; }
.s7-hero-video video { width: 100%; height: 100%; object-fit: cover; }
.s7-hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(10,10,10,0) 0%, rgba(10,10,10,.55) 70%),
    linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.35) 45%, rgba(10,10,10,.95) 100%);
}
.s7-hero .container { position: relative; z-index: 2; }
.s7-hero-inner { max-width: 620px; margin-inline-start: auto; text-align: right; }
.s7-hero-title { font-size: 56px; line-height: 1.15; margin-bottom: 22px; }
.s7-hero-lead { color: var(--s7-muted-2); font-size: 18px; margin-bottom: 34px; max-width: 30em; }
.s7-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Stats ---------- */
.s7-stats { background: var(--s7-bg); padding: 70px 0; border-block: 1px solid var(--s7-border); }
.s7-stat { text-align: center; padding: 10px; }
.s7-stat-icon { color: var(--s7-accent); font-size: 26px; margin-bottom: 12px; display: block; }
.s7-stat-num { display: block; font-size: 36px; font-weight: 800; color: #fff; }
.s7-stat-label { display: block; color: var(--s7-muted); font-size: 15px; margin-top: 4px; }

/* ---------- Services ---------- */
.s7-services { background: var(--s7-bg); padding: 110px 0; }
.s7-service-card {
  height: 100%; background: var(--s7-surface);
  border: 1px solid var(--s7-border); border-radius: var(--s7-radius);
  padding: 36px 28px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.s7-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--s7-accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}
.s7-service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255, 45, 85, .1); color: var(--s7-accent);
  font-size: 22px; margin-bottom: 20px;
}
.s7-service-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.s7-service-desc { color: var(--s7-muted); font-size: 15px; margin-bottom: 18px; }
.s7-service-link { color: var(--s7-accent); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.s7-service-link i { transition: transform .25s ease; }
.s7-service-link:hover i { transform: translateX(-4px); }

/* ---------- Testimonial ---------- */
.s7-testimonial { background: var(--s7-bg); padding: 100px 0; }
.s7-quote { max-width: 760px; margin: 0 auto; text-align: center; }
.s7-quote-mark { color: var(--s7-accent); font-size: 34px; margin-bottom: 22px; display: block; }
.s7-quote blockquote {
  font-size: 28px; font-weight: 700; line-height: 1.6; color: #fff; margin: 0 0 24px;
}
.s7-quote-name { display: block; font-weight: 700; color: #fff; }
.s7-quote-role { display: block; color: var(--s7-muted); font-size: 14px; margin-top: 4px; }

/* ---------- Work carousel ---------- */
.s7-work { background: var(--s7-bg); padding: 110px 0; }
.s7-carousel { position: relative; }
.s7-track-viewport { overflow: hidden; }
.s7-track { display: flex; gap: 24px; transition: transform .5s ease; will-change: transform; }
.s7-slide {
  flex: 0 0 calc(33.333% - 16px); min-width: calc(33.333% - 16px);
  position: relative; border-radius: var(--s7-radius); overflow: hidden;
  border: 1px solid var(--s7-border); aspect-ratio: 4 / 3; background: var(--s7-surface);
  margin: 0;
}
.s7-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.s7-slide:hover img { transform: scale(1.08); }
.s7-slide-overlay {
  position: absolute; inset: auto 0 0 0; padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .85));
}
.s7-slide-overlay h4 { color: #fff; font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.s7-slide-overlay p { color: var(--s7-muted); font-size: 13px; margin: 0; }

.s7-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--s7-surface); border: 1px solid var(--s7-border); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  z-index: 3; font-size: 16px; transition: background .25s ease, border-color .25s ease;
}
.s7-arrow:hover { background: var(--s7-accent); border-color: var(--s7-accent); }
.s7-arrow-prev { right: -10px; }
.s7-arrow-next { left: -10px; }
@media (max-width: 700px) { .s7-arrow { display: none; } }

/* ---------- CTA ---------- */
.s7-cta { background: var(--s7-bg); padding: 40px 0 110px; }
.s7-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.s7-cta-rocket {
  font-size: 64px; display: inline-block; margin-bottom: 18px;
  animation: s7-float 3s ease-in-out infinite;
}
@keyframes s7-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
.s7-cta-title { font-size: 38px; margin-bottom: 14px; }
.s7-cta-sub { color: var(--s7-muted); font-size: 17px; margin-bottom: 30px; }

/* ---------- Footer ---------- */
.s7-footer { background: #060606; border-top: 1px solid var(--s7-border); }
.s7-footer-top { padding: 70px 0 40px; }
.s7-footer-logo { height: 46px; width: auto; margin-bottom: 18px; }
.s7-footer-brand p { color: var(--s7-muted); font-size: 14px; max-width: 320px; }
.s7-social { display: flex; gap: 10px; margin-top: 18px; }
.s7-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--s7-surface-2); border: 1px solid var(--s7-border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--s7-muted); font-size: 15px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.s7-social a:hover { background: var(--s7-accent); color: #fff; transform: translateY(-3px); }

.s7-footer-title { font-size: 16px; font-weight: 700; margin-bottom: 18px; color: #fff; }
.s7-footer-links, .s7-footer-contact { list-style: none; margin: 0; padding: 0; }
.s7-footer-links li, .s7-footer-contact li { margin-bottom: 10px; }
.s7-footer-links a, .s7-footer-contact a { color: var(--s7-muted); font-size: 14px; }
.s7-footer-links a:hover, .s7-footer-contact a:hover { color: var(--s7-accent); }
.s7-footer-contact li { color: var(--s7-muted); font-size: 14px; }
.s7-footer-contact i { color: var(--s7-accent); margin-inline-end: 8px; }

.s7-footer-bottom {
  border-top: 1px solid var(--s7-border); padding: 22px 0; text-align: center;
}
.s7-footer-bottom p { margin: 0; color: var(--s7-muted); font-size: 13px; }

/* ---------- To top ---------- */
#s7-to-top {
  position: fixed; inset: auto 24px 24px auto; z-index: 1020;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--s7-accent); color: #fff; font-size: 16px; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
#s7-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
#s7-to-top:hover { background: var(--s7-accent-2); }

/* ---------- Blog / pages ---------- */
.s7-page { padding: 150px 0 100px; }
.s7-content { max-width: 780px; margin: 0 auto; color: var(--s7-muted-2); }
.s7-content a { color: var(--s7-accent); }
.s7-content h2, .s7-content h3 { color: #fff; margin: 32px 0 14px; }
.s7-content img { border-radius: 12px; margin: 20px 0; }
.s7-single-thumb img { border-radius: var(--s7-radius); margin: 0 auto 34px; }

.s7-post-card {
  height: 100%; background: var(--s7-surface); border: 1px solid var(--s7-border);
  border-radius: var(--s7-radius); overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.s7-post-card:hover { transform: translateY(-6px); border-color: var(--s7-accent); }
.s7-post-thumb img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.s7-post-body { padding: 24px; }
.s7-post-meta { color: var(--s7-accent); font-size: 13px; font-weight: 700; }
.s7-post-title { font-size: 19px; margin: 8px 0 10px; }
.s7-post-title a:hover { color: var(--s7-accent); }
.s7-post-excerpt { color: var(--s7-muted); font-size: 14px; margin-bottom: 14px; }

.s7-pagination { display: flex; justify-content: center; margin-top: 50px; }
.s7-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 10px; margin: 0 4px;
  border: 1px solid var(--s7-border); border-radius: 8px; color: var(--s7-muted-2);
}
.s7-pagination .page-numbers.current,
.s7-pagination .page-numbers:hover { background: var(--s7-accent); border-color: var(--s7-accent); color: #fff; }

.s7-empty { text-align: center; color: var(--s7-muted); padding: 40px 0; }

.s7-single-footer { max-width: 780px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--s7-border); }
.s7-post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 16px; font-size: 14px; }

/* ---------- Comments ---------- */
.s7-comments { max-width: 780px; margin: 60px auto 0; }
.s7-comments-title { font-size: 22px; margin-bottom: 24px; }
.s7-comment-list { list-style: none; padding: 0; }
.s7-comment-list .comment-body { border: 1px solid var(--s7-border); border-radius: 12px; padding: 20px; margin-bottom: 16px; }
.s7-comments input[type="text"],
.s7-comments input[type="email"],
.s7-comments input[type="url"],
.s7-comments textarea {
  width: 100%; background: var(--s7-bg); border: 1px solid var(--s7-border);
  border-radius: 10px; color: #fff; padding: 12px 14px; margin-bottom: 14px;
}
.s7-comments input:focus, .s7-comments textarea:focus { outline: none; border-color: var(--s7-accent); }

/* =========================================================
   Inner pages : /services/ /about/ /contact/
   ========================================================= */

/* ---------- Page hero ---------- */
.s7-page-hero {
  padding: 170px 0 70px;
  text-align: center;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(255, 45, 85, .12) 0%, rgba(10, 10, 10, 0) 70%),
    var(--s7-bg);
  border-bottom: 1px solid var(--s7-border);
}
.s7-page-hero-title { font-size: 44px; line-height: 1.2; margin: 6px auto 16px; max-width: 24ch; text-wrap: balance; }
.s7-page-hero-lead { color: var(--s7-muted); font-size: 17px; max-width: 620px; margin: 0 auto 28px; }

/* ---------- Numbered service cards ---------- */
.s7-service-card--num { position: relative; padding-top: 44px; }
.s7-service-num {
  position: absolute; top: 20px; inset-inline-start: 24px;
  font-size: 14px; font-weight: 800; color: var(--s7-accent);
  letter-spacing: 1px; opacity: .8;
}

/* ---------- Methodology ---------- */
.s7-method { background: var(--s7-bg); padding: 100px 0; border-top: 1px solid var(--s7-border); }
.s7-step {
  height: 100%; text-align: center; padding: 32px 20px;
  border: 1px solid var(--s7-border); border-radius: var(--s7-radius);
  background: var(--s7-surface); position: relative;
}
.s7-step-num {
  position: absolute; top: 14px; inset-inline-end: 18px;
  font-size: 30px; font-weight: 800; color: rgba(255, 255, 255, .06);
}
.s7-step-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 16px;
  background: rgba(255, 45, 85, .1); color: var(--s7-accent); font-size: 20px;
}
.s7-step-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.s7-step-desc { color: var(--s7-muted); font-size: 14px; }

/* ---------- Vision / Mission ---------- */
.s7-vm { background: var(--s7-bg); padding: 100px 0; }
.s7-vm-card {
  height: 100%; padding: 40px 34px;
  border: 1px solid var(--s7-border); border-radius: var(--s7-radius);
  background: linear-gradient(160deg, var(--s7-surface) 0%, #0c0c0c 100%);
}
.s7-vm-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 14px; margin-bottom: 18px;
  background: var(--s7-accent); color: #fff; font-size: 22px;
}
.s7-vm-title { font-size: 24px; margin-bottom: 12px; }
.s7-vm-card p { color: var(--s7-muted); font-size: 15px; margin: 0; }

/* ---------- Why us ---------- */
.s7-why { background: var(--s7-bg); padding: 90px 0; border-top: 1px solid var(--s7-border); }
.s7-why .s7-section-title { margin-bottom: 16px; }
.s7-why-lead { color: var(--s7-muted); font-size: 16px; }
.s7-check-list { list-style: none; margin: 0; padding: 0; }
.s7-check-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; margin-bottom: 12px;
  border: 1px solid var(--s7-border); border-radius: 12px;
  background: var(--s7-surface); color: var(--s7-muted-2); font-size: 15px;
}
.s7-check-list i { color: var(--s7-accent); font-size: 18px; }

/* ---------- Team ---------- */
.s7-team { background: var(--s7-bg); padding: 100px 0; }
.s7-member { text-align: center; }
.s7-member-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 88px; height: 88px; border-radius: 50%; margin-bottom: 14px;
  background: var(--s7-surface-2); border: 1px solid var(--s7-border);
  color: var(--s7-muted); font-size: 32px;
}
.s7-member-name { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.s7-member-role { color: var(--s7-muted); font-size: 12px; }

/* ---------- Contact ---------- */
.s7-contact { background: var(--s7-bg); padding: 90px 0 110px; }
.s7-contact-cards { display: flex; flex-direction: column; gap: 14px; }
.s7-contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px; border: 1px solid var(--s7-border);
  border-radius: 14px; background: var(--s7-surface);
}
.s7-contact-card-icon {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255, 45, 85, .1); color: var(--s7-accent); font-size: 18px;
}
.s7-contact-card-label { display: block; color: var(--s7-muted); font-size: 13px; margin-bottom: 2px; }
.s7-contact-card-value { display: block; color: #fff; font-size: 15px; font-weight: 600; }
a.s7-contact-card-value:hover { color: var(--s7-accent); }
.s7-contact-social { display: flex; gap: 10px; margin-top: 6px; }
.s7-contact-social a {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--s7-surface); border: 1px solid var(--s7-border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--s7-muted); font-size: 16px; transition: background .25s, color .25s;
}
.s7-contact-social a:hover { background: var(--s7-accent); color: #fff; }

/* ---------- Contact form ---------- */
.s7-form-wrap {
  padding: 36px; border: 1px solid var(--s7-border);
  border-radius: var(--s7-radius); background: var(--s7-surface);
}
.s7-contact-form .s7-field { position: relative; margin-bottom: 16px; }
.s7-contact-form .s7-field-row { gap: 16px; margin-bottom: 0; }
.s7-contact-form .s7-field-row > [class^="col-"] { padding: 0; }
.s7-contact-form input,
.s7-contact-form textarea,
.s7-contact-form select {
  width: 100%; background: var(--s7-bg);
  border: 1px solid var(--s7-border); border-radius: 10px;
  color: #fff; font-family: "Cairo", sans-serif; font-size: 14px;
  padding: 14px 46px 14px 16px; outline: none;
  transition: border-color .3s;
  -webkit-appearance: none; appearance: none;
}
.s7-contact-form textarea { min-height: 120px; resize: vertical; }
.s7-contact-form input::placeholder,
.s7-contact-form textarea::placeholder { color: var(--s7-muted); }
.s7-contact-form input:focus,
.s7-contact-form textarea:focus,
.s7-contact-form select:focus { border-color: var(--s7-accent); }
.s7-contact-form select { color: var(--s7-muted); cursor: pointer; padding-inline-start: 42px; }
.s7-contact-form select option { color: #111; }
.s7-field-icon {
  position: absolute; top: 15px; inset-inline-end: 16px;
  color: var(--s7-accent); font-size: 15px; pointer-events: none;
}
.s7-field-caret {
  position: absolute; top: 16px; inset-inline-start: 16px;
  color: var(--s7-muted); font-size: 12px; pointer-events: none;
}
.s7-submit {
  width: 100%; border: none; border-radius: 10px; padding: 15px;
  font-family: "Cairo", sans-serif; font-size: 15px; font-weight: 700; color: #fff;
  cursor: pointer; background: var(--s7-gradient);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .3s, box-shadow .3s;
}
.s7-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 45, 85, .3); }
.s7-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.s7-alert {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 20px;
}
.s7-alert--ok  { background: rgba(45, 200, 120, .12); color: #48d18a; border: 1px solid rgba(45, 200, 120, .3); }
.s7-alert--err { background: rgba(255, 45, 85, .12); color: var(--s7-accent); border: 1px solid rgba(255, 45, 85, .3); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .s7-page-hero-title { font-size: 34px; }
  .s7-method, .s7-vm, .s7-team, .s7-why { padding: 64px 0; }
  .s7-hero-title { font-size: 44px; }
  .s7-section-title { font-size: 32px; }
  .s7-cta-title { font-size: 30px; }
  .s7-quote blockquote { font-size: 22px; }
}
@media (max-width: 767.98px) {
  .s7-hero { min-height: auto; padding: 130px 0 70px; text-align: center; }
  .s7-hero-inner { text-align: center; margin: 0 auto; }
  .s7-hero-actions { justify-content: center; }
  .s7-services, .s7-work, .s7-testimonial { padding: 70px 0; }
  .s7-slide { flex: 0 0 100%; min-width: 100%; }
  .s7-footer-top { padding: 50px 0 30px; }
}
