/* ════════════════════════════════════════════════════
   THE CLEANUP CREW — STYLESHEET
   ════════════════════════════════════════════════════ */

/* ── 1. CUSTOM PROPERTIES ── */
:root {
  --bg:           #FFFFFF;
  --bg-subtle:    #F4F8FF;
  --features-bg:  #51BFFF;
  --text:         #0D1B3E;
  --text-2:       #5A6A8A;
  --text-3:       #9AAAC2;
  --accent:       #51BFFF;
  --accent-hover: #33B2FF;
  --accent-light: #E8F7FF;
  --border:       rgba(13, 27, 62, 0.08);
  --border-2:     rgba(13, 27, 62, 0.14);
  --shadow-sm:    0 2px 8px rgba(13, 27, 62, 0.07);
  --shadow:       0 6px 24px rgba(13, 27, 62, 0.1);
  --shadow-lg:    0 12px 48px rgba(13, 27, 62, 0.14);

  --font:         'Satoshi', sans-serif;
  --max-width:    1200px;
  --nav-height:   80px;
  --radius:       10px;
  --radius-lg:    18px;
  --radius-xl:    28px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --dur:          0.25s;
}

/* ── 2. RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── 3. LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── 4. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(81, 191, 255, 0.35);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(81, 191, 255, 0.45);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}
.btn--lg { padding: 14px 32px; font-size: 0.9375rem; }
.btn--full { width: 100%; }

/* ── 5. SECTION CHROME ── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--text);
}
.section-header { margin-bottom: 56px; }
.section-header--center {
  text-align: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

/* ── 6. REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── 7. PLACEHOLDER ── */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-subtle);
  border: 1.5px dashed var(--text-3);
  border-radius: var(--radius-lg);
  color: var(--text-3);
  font-size: 0.8125rem;
  font-weight: 500;
  gap: 8px;
  text-align: center;
  padding: 24px;
  width: 100%;
}
.placeholder p { font-size: 0.75rem; opacity: 0.7; font-family: monospace; }
.placeholder--about { aspect-ratio: 4 / 3; }

/* ════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--bg);
  transition: box-shadow var(--dur) var(--ease);
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(13, 27, 62, 0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.nav__logo { flex-shrink: 0; display: flex; align-items: center; }
.nav__logo-img { height: 60px; width: auto; display: block; }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav__link:hover { color: var(--text); }
.nav__link--active {
  color: var(--accent);
  font-weight: 600;
}

.nav__cta { margin-left: 12px; flex-shrink: 0; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
  border-radius: 8px;
}
.nav__toggle:hover { background: var(--bg-subtle); }
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px 32px;
  z-index: 99;
  box-shadow: var(--shadow);
}
.nav__mobile.open { display: block; }
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.nav__mobile a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color var(--dur) var(--ease);
}
.nav__mobile a:hover,
.nav__mobile a.nav__link--active { color: var(--accent); }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 24px) 0 32px;
  background: var(--bg);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.text-highlight {
  position: relative;
  display: inline;
}
.text-highlight::before {
  content: '';
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 0.05em;
  height: 0.58em; /* ~half of 1.1667 line-height */
  background: #D6EFFF;
  border-radius: 4px;
  z-index: -1;
}

.hero__headline {
  font-size: clamp(1.875rem, 4.5vw, 3rem); /* 3rem = 48px at 16px root */
  font-weight: 700;
  line-height: 1.1667; /* 56px / 48px */
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 22px;
}

.hero__sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}

/* ── Hero illustration ── */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
}

/* Decorative circles */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: #DBEAFE;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.deco-circle--lg { width: 280px; height: 280px; right: -40px; bottom: -40px; }
.deco-circle--sm { width: 100px; height: 100px; left: -10px; bottom: 10%; }

/* Coded browser mockup */
.browser-mock {
  position: relative;
  z-index: 1;
  background: #EBF4FF;
  border: 2px solid #BBD9F5;
  border-radius: 18px;
  overflow: visible;
  width: 100%;
  max-width: 540px;
  box-shadow: var(--shadow-lg);
}
.browser-mock__bar {
  background: #C3DDF8;
  padding: 13px 18px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bdot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #93C5FD;
}
.browser-mock__body {
  padding: 20px;
  display: flex;
  gap: 16px;
  min-height: 190px;
}
.browser-mock__editor {
  flex: 1;
  border: 2px dashed #93C5FD;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(255,255,255,0.5);
}
.img-icon { width: 80px; height: auto; }
.browser-mock__sidebar {
  width: 130px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
}
.mock-bar {
  height: 12px;
  background: #BFDBFE;
  border-radius: 6px;
}
.mock-bar--w100 { width: 100%; }
.mock-bar--w80  { width: 80%; }
.mock-bar--w60  { width: 60%; }
.mock-bar--w40  { width: 40%; }
.mock-btn-pill {
  height: 30px;
  width: 80px;
  background: #93C5FD;
  border-radius: 8px;
  margin-top: 4px;
}

/* Collaboration badges */
.collab-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #3B82F6;
  color: #fff;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px 6px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(59,130,246,0.35);
  white-space: nowrap;
  z-index: 2;
}
.collab-badge--left  { left: -28px; top: 55%; }
.collab-badge--right { right: -28px; bottom: 20%; background: #60A5FA; }

/* ════════════════════════════════════════════════════
   FEATURES / SERVICES
   ════════════════════════════════════════════════════ */
.features {
  padding: 100px 0 120px;
  background: var(--bg);
}

.features__title {
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  color: var(--text);
  margin-bottom: 56px;
}

/* Blue gradient background wrapper */
.features__bg {
  background: linear-gradient(135deg, #3AAEF2 0%, #51BFFF 55%, #6DCFFF 100%);
  border-radius: 24px;
  padding: 48px 40px 40px;
  position: relative;
  overflow: visible;
}

/* Decorative side tabs */
.features__tab {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.32);
}
.features__tab--left  { left: -19px; top: 36%; }
.features__tab--right { right: -19px; top: 62%; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Card */
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.feature-card-1 {
  background: #fff;
  border-radius: 16px;
  
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 27, 62, 0.16);
}

.feature-card__body {
  margin-bottom: 20px;
}
.feature-card__body-1 {
    padding: 28px 28px 0;
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card__desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* Illustration area at bottom of card */
.feature-card__illustration {
  margin-top: auto;
  height: 170px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
/* .feature-card__illustration img {
  width: 100%;
  height: 100%;
  /* object-fit: contain;
  object-position: bottom center; */
/* } */

/* Website Redesigns — side by side illustration */
.feat-redesign {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  /* margin-left: -28px; */
  /* margin-right: -28px; */
  width: 100%;
}
.feat-redesign__back {
  height: 90px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: 28px;
}
.feat-redesign__front {
  height: 170px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: auto;
}

/* Technological Integration — bg + 3 layered icons */
.feat-tech {
  position: relative;
  width: 100%;
}
.feat-tech__bg {
  width: 100%;
  height: 45%;
  /* object-fit: cover; */
  object-position: center bottom;
  border-radius: 0 0 16px 16px;
}
.feat-tech__img {
  position: absolute;
  object-fit: contain;
}
.feat-tech__img--1 {
  height: 60px;
  width: auto;
  left: 16px;
  bottom: 16px;
}
.feat-tech__img--2 {
  height: 140px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
}
.feat-tech__img--3 {
  height: 60px;
  width: auto;
  right: 16px;
  bottom: 16px;
}

/* Business Process Automation — side by side illustration */
.feat-automation {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
}
.feat-automation__left {
  height: 90px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.feat-automation__right {
  height: 150px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: auto;
}

/* Technical Support — bg + 3 layered icons */
.feat-support {
  position: relative;
  width: 100%;
}
.feat-support__img {
  position: absolute;
  object-fit: contain;
}
.feat-support__img--1 {
  height: 80px;
  width: auto;
  left: 16px;
  bottom: 16px;
}
.feat-support__img--2 {
  height: 50px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
}
.feat-support__img--3 {
  height: 75px;
  width: auto;
  right: 16px;
  bottom: 16px;
}

/* Illustration placeholder */
.placeholder--feat {
  width: 100%;
  height: 100%;
  background: #F0F8FF;
  border: 1.5px dashed #B3D9F5;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #9AAAC2;
  font-family: monospace;
}

/* ════════════════════════════════════════════════════
   WHY CHOOSE US
   ════════════════════════════════════════════════════ */
.why-us {
  padding: 100px 0;
  background: var(--bg);
}

.why-us__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 36px;
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.why-us__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Bullet cards */
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-item__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #4F6CF5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
}

.why-item strong {
  color: var(--text);
  font-weight: 700;
}

/* Right illustrated card */
.why-us__right { display: flex; }

.why-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

.why-feature-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 10px;
}

.why-feature-card__desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
}

.why-feature-card__illustration {
  margin-top: auto;
  flex: 1;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.why-feature-card__illustration img {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.placeholder--why {
  width: 100%;
  height: 220px;
  background: #F0F8FF;
  border: 1.5px dashed #B3D9F5;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #9AAAC2;
  font-family: monospace;
}

/* ════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════ */
.about {
  padding: 110px 0;
  background: var(--bg-subtle);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__content .section-tag { margin-bottom: 10px; }
.about__content .section-title { margin-bottom: 20px; }
.about__content p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about__content .btn { margin-top: 8px; }

/* ════════════════════════════════════════════════════
   HOW WE WORK
   ════════════════════════════════════════════════════ */
.how-we-work {
  padding: 80px 0;
  background: var(--bg);
}

.how-we-work__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  color: var(--text);
  margin-bottom: 48px;
}

.how-we-work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Left illustration card */
.how-we-work__visual {
  position: relative;
  /* background: #D6EFFF; */
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.how-we-work__visual img,
.how-we-work__visual .placeholder--how {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-position: bottom center;
  border-radius: 0;
  border: none;
}
.placeholder--how {
  background: #D6EFFF;
  border: 1.5px dashed #93C5FD;
  color: #93C5FD;
  font-family: monospace;
  font-size: 0.8rem;
  border-radius: 20px !important;
}

/* Decorative circle peeking from right edge */
.how-we-work__deco {
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #51BFFF;
  opacity: 0.5;
}

/* Right: step list */
.how-we-work__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}

.how-step__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #4F6CF5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-step p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

.how-step strong {
  color: var(--text);
  font-weight: 700;
}

/* ════════════════════════════════════════════════════
   SECURE PAYMENTS
   ════════════════════════════════════════════════════ */
.secure-payments {
  padding: 80px 0;
  background: var(--bg);
}

.secure-payments__card {
  background-image: url('/assets/images/bg-payment.png');
  background-size: cover;
  background-position: center;
  background-color: #0D1B6E;
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secure-payments__content {
  max-width: 560px;
}

.secure-payments__title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 20px;
}

.secure-payments__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 32px;
}

.secure-payments__btn {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(81, 191, 255, 0.4);
  padding: 12px 32px;
}
.secure-payments__btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(81, 191, 255, 0.5);
}

/* ════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════ */
.faq {
  padding: 110px 0;
  background: var(--bg-subtle);
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item__question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  transition: color var(--dur) var(--ease);
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question:hover { color: var(--accent); }

.faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border-2);
  position: relative;
  transition: all var(--dur) var(--ease);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--text-2);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: all var(--dur) var(--ease);
}
.faq-item__icon::before { width: 10px; height: 2px; }
.faq-item__icon::after  { width: 2px; height: 10px; }

.faq-item[open] .faq-item__icon { background: var(--accent); border-color: var(--accent); }
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after { background: white; }
.faq-item[open] .faq-item__icon::after { opacity: 0; }

.faq-item__answer {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════ */
.contact { padding: 110px 0; }

.contact__inner {
  max-width: 660px;
  margin: 0 auto;
}
.contact__sub {
  color: var(--text-2);
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.65;
}
.contact__form {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.form-group label span { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-subtle);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9375rem;
  padding: 13px 16px;
  width: 100%;
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group select { cursor: pointer; }
.form-group select option { background: #fff; color: var(--text); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77, 143, 232, 0.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 140px; }
button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
.form-status {
  font-size: 0.9rem;
  padding: 13px 16px;
  border-radius: var(--radius);
  display: none;
  line-height: 1.5;
}
.form-status.success {
  display: block;
  background: #EFF8EC;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
}
.form-status.error {
  display: block;
  background: #FFF3F3;
  color: #C62828;
  border: 1px solid #FFCDD2;
}

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.footer {
  background: var(--text);
  color: #fff;
  padding: 72px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;

}

.footer__logo {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer__links h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur) var(--ease);
}
.footer__links a:hover { color: #fff; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  transition: all var(--dur) var(--ease);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(77,143,232,0.12);
  transform: translateY(-2px);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}
.footer__bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .container,
  .nav__inner { padding: 0 32px; }
  .hero__grid { gap: 56px; }
  .about__grid { gap: 56px; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__grid { grid-template-columns: 1fr; gap: 48px; padding: 0; }
  .hero__visual { order: -1; }
  .hero { padding-top: calc(var(--nav-height) + 16px); padding-bottom: 24px; min-height: auto; }
  .hero__sub { max-width: 100%; }

  .browser-mock { max-width: 420px; margin: 0 auto; }
  .collab-badge--left  { left: -12px; }
  .collab-badge--right { right: -12px; }

  .features__bg { padding: 36px 24px 28px; border-radius: 20px; }
  .features__tab { display: none; }
  .features__grid { grid-template-columns: 1fr; gap: 16px; }

  .why-us__grid { grid-template-columns: 1fr; }
  .why-feature-card { min-height: 320px; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { order: -1; }

  .how-we-work__grid { grid-template-columns: 1fr; }
  .how-we-work__visual { aspect-ratio: 4 / 3; }
  .how-we-work__deco { display: none; }
  .process-step { width: 100%; max-width: 400px; padding: 0; }
  .process-step__connector { width: 1px; height: 40px; margin: 0 auto; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .features__grid { grid-template-columns: 1fr; }
  .features__grid .feature-card:nth-child(n) { grid-column: 1 / -1; }
  .feature-card__illustration { height: 130px; }
}

@media (max-width: 640px) {
  .container,
  .nav__inner { padding: 0 20px; }
  .nav__mobile { padding: 24px 20px 32px; }

  .features { padding: 72px 0 80px; }
  .about { padding: 80px 0; }
  .process { padding: 80px 0; }
  .faq { padding: 80px 0; }
  .contact { padding: 80px 0; }

  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 56px 0 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }

  .browser-mock__sidebar { width: 100px; }
}
