/* ==========================================================================
   AARAMBH WEBTECH — Global stylesheet for location-based services pages
   v3.0  |  Navy/Red Manrope-Inter system
   --------------------------------------------------------------------------
   HOW TO USE
   1. Upload this file to:  /wp-content/uploads/aarambh-services.css
      (or any path you control — just remember the URL.)
   2. On EVERY city page, wrap the content with: <main class="awt-page">…</main>
   3. At the TOP of each page's Elementor HTML widget, paste:
      <link rel="stylesheet" href="https://aarambhwebtech.com/wp-content/uploads/aarambh-services.css">
   --------------------------------------------------------------------------
   IMPORTANT: Every selector in this file is scoped to .awt-page so it never
   leaks into your theme header, footer, or other pages.
   ========================================================================== */


/* ---------- 1. Fonts ---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@600;700&display=swap');


/* ---------- 2. Scoped reset & base ------------------------------------- */
.awt-page,
.awt-page *,
.awt-page *::before,
.awt-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.awt-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #F4F6F9;
  color: #111827;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.awt-page img      { max-width: 100%; display: block; }
.awt-page a        { color: inherit; text-decoration: none; }
.awt-page address  { font-style: normal; }


/* ---------- 3. Layout helpers ------------------------------------------ */
.awt-page .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.awt-page .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.awt-page .chip-blue { background: #DBE7FC; color: #0A1F5C; }


/* ---------- 4. Hero ----------------------------------------------------- */
.awt-page .hero {
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.awt-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(10,31,92,.055) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 5% 90%, rgba(225,6,0,.04) 0%, transparent 55%);
  pointer-events: none;
}

.awt-page .hero-bc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 22px;
}
.awt-page .hero-bc span    { color: #0A1F5C; }
.awt-page .hero-bc a:hover { color: #0A1F5C; }

.awt-page .hero-ey { margin-bottom: 14px; }

.awt-page .hero h1 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #0A1F5C;
  max-width: 800px;
  margin-bottom: 18px;
}
.awt-page .hero h1 em { font-style: normal; color: #E10600; }

.awt-page .hero p.lead {
  font-size: 17px;
  color: #111827;
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 30px;
}

.awt-page .hero-acts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.awt-page .hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: start;
}

.awt-page .hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid #E5E7EB;
}

.awt-page .hero-img {
  margin-top: 64px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  border: 1px solid #E5E7EB;
}
.awt-page .hero-img img { width: 100%; height: auto; display: block; }

.awt-page .stat-n {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #0A1F5C;
  line-height: 1;
  letter-spacing: -1px;
}
.awt-page .stat-l {
  font-size: 12px;
  color: #6B7280;
  margin-top: 4px;
}


/* ---------- 5. Buttons ------------------------------------------------- */
.awt-page .btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0A1F5C;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.awt-page .btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(10,31,92,.28);
  background: #1E3A8A;
}

.awt-page .btn-s {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0A1F5C;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12.5px 22px;
  border-radius: 999px;
  border: 1.5px solid #0A1F5C;
  transition: all .2s;
}
.awt-page .btn-s:hover {
  border-color: #0A1F5C;
  background: #0A1F5C;
  color: #fff;
}

.awt-page .btn-wh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0A1F5C;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s;
}
.awt-page .btn-wh:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
}

.awt-page .btn-ow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12.5px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.45);
  transition: all .2s;
}
.awt-page .btn-ow:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}


/* ---------- 6. Trust strip --------------------------------------------- */
.awt-page .trust { background: #111827; padding: 16px 0; }

.awt-page .trust-in {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.awt-page .trust-it {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.awt-page .trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}


/* ---------- 7. Section primitives -------------------------------------- */
.awt-page .sec        { padding: 68px 0; }
.awt-page .sec-alt    { background: #F4F6F9; }
.awt-page .sec-dark   { background: #111827; }

.awt-page .sec-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 10px;
}
.awt-page .sec-lbl-lt { color: rgba(255,255,255,.35); }

.awt-page .sec-h2 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #0A1F5C;
  max-width: 640px;
  margin-bottom: 14px;
}
.awt-page .sec-h2 em      { font-style: normal; color: #E10600; }
.awt-page .sec-h2-lt      { color: #fff; }

.awt-page .sec-sub {
  font-size: 16px;
  color: #111827;
  max-width: 560px;
  line-height: 1.72;
}


/* ---------- 8. Intro grid + info box ----------------------------------- */
.awt-page .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 38px;
}
.awt-page .intro-txt p {
  font-size: 16px;
  color: #111827;
  line-height: 1.75;
  margin-bottom: 14px;
}
.awt-page .intro-txt p:last-child { margin-bottom: 0; }

.awt-page .info-box {
  background: #F4F6F9;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 26px;
}
.awt-page .info-box h3 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0A1F5C;
  margin-bottom: 18px;
}
.awt-page .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid #E5E7EB;
  font-size: 14px;
}
.awt-page .info-row:last-child { border-bottom: none; padding-bottom: 0; }
.awt-page .info-lbl  { color: #6B7280; flex-shrink: 0; }
.awt-page .info-val  { font-weight: 500; color: #111827; text-align: right; }


/* ---------- 9. Deliverables grid --------------------------------------- */
.awt-page .deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: #E5E7EB;
  border: 10px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 44px;
}
.awt-page .dlv-card {
  background: #F4F6F9;
  padding: 28px;
  transition: background .2s;
}
.awt-page .dlv-card:hover { background: #DBE7FC; }
.awt-page .dlv-icon       { font-size: 22px; margin-bottom: 14px; }
.awt-page .dlv-card h3 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0A1F5C;
  margin-bottom: 8px;
}
.awt-page .dlv-card p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 14px;
}
.awt-page .dlv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.awt-page .dlv-list li {
  font-size: 13px;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 7px;
}
.awt-page .dlv-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0A1F5C;
  flex-shrink: 0;
}


/* ---------- 10. Process ------------------------------------------------- */
.awt-page .process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin-top: 44px;
}
.awt-page .proc-step {
  padding: 28px 22px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.awt-page .proc-step:last-child { border-right: none; }
.awt-page .proc-step:hover      { background: rgba(255,255,255,.06); }
.awt-page .proc-num {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}
.awt-page .proc-step h3 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.awt-page .proc-step p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}


/* ---------- 11. Why-cards ---------------------------------------------- */
.awt-page .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.awt-page .why-card {
  background: #F4F6F9;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 22px;
  transition: border-color .2s, box-shadow .2s;
}
.awt-page .why-card:hover {
  border-color: rgba(10,31,92,.3);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.awt-page .why-card h3 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0A1F5C;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.awt-page .why-card p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}
.awt-page .why-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #DBE7FC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}


/* ---------- 12. Industries pills --------------------------------------- */
.awt-page .ind-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.awt-page .ind-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: #F4F6F9;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  font-size: 14px;
  color: #111827;
  transition: all .2s;
  cursor: pointer;
}
.awt-page .ind-pill:hover {
  background: #DBE7FC;
  border-color: rgba(10,31,92,.3);
  color: #0A1F5C;
  transform: translateY(-1px);
}
.awt-page .ind-cta-wrap { text-align: center; margin-top: 34px; }


/* ---------- 13. Portfolio strip ---------------------------------------- */
.awt-page .portfolio-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.awt-page .port-card {
  background: #F4F6F9;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.awt-page .port-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,92,.04), transparent);
  pointer-events: none;
}
.awt-page .port-tag {
  font-size: 11px;
  color: #0A1F5C;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.awt-page .port-card h3 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0A1F5C;
  margin-bottom: 6px;
}
.awt-page .port-card p {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.55;
}
.awt-page .port-result {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #0a6640;
  background: #e2f5ec;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}


/* ---------- 14. Testimonials slider ------------------------------------ */
.awt-page .test-slider   { position: relative; margin-top: 44px; }
.awt-page .test-viewport { overflow: hidden; }
.awt-page .test-track {
  display: flex;
  gap: 18px;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.awt-page .test-card {
  background: #F4F6F9;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 26px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}
.awt-page .stars { display: flex; gap: 3px; margin-bottom: 14px; }
.awt-page .star  { color: #E10600; font-size: 13px; }

.awt-page .test-card blockquote {
  font-size: 15px;
  color: #111827;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
  position: relative;
  padding-left: 26px;
}
.awt-page .test-card blockquote::before {
  content: "\201C";
  color: #E10600;
  font-size: 44px;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: -6px;
  line-height: 1;
}

.awt-page .test-auth { display: flex; align-items: center; gap: 12px; }
.awt-page .auth-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #DBE7FC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 13px;
  color: #0A1F5C;
  flex-shrink: 0;
}
.awt-page .auth-nm { font-size: 14px; font-weight: 500; }
.awt-page .auth-bz { font-size: 12px; color: #6B7280; }

.awt-page .test-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.awt-page .test-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: #F4F6F9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #111827;
  transition: all .2s;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}
.awt-page .test-arrow:hover {
  background: #0A1F5C;
  color: #fff;
  border-color: #0A1F5C;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(10,31,92,.22);
}
.awt-page .test-arrow:active { transform: translateY(0); }

.awt-page .test-dots { display: flex; gap: 8px; align-items: center; }
.awt-page .test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #E5E7EB;
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}
.awt-page .test-dot.active { background: #0A1F5C; width: 24px; border-radius: 4px; }
.awt-page .test-dot:hover  { background: #b0afa9; }
.awt-page .test-dot.active:hover { background: #0A1F5C; }


/* ---------- 15. FAQ ---------------------------------------------------- */
.awt-page .faq-list {
  max-width: 740px;
  margin: 44px auto 0;
}
.awt-page .faq-it {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
}
.awt-page .faq-q {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #111827;
  background: #F4F6F9;
  border: none;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: background .2s;
}
.awt-page .faq-q:hover { background: #F4F6F9; }
.awt-page .faq-q.open  { background: #DBE7FC; color: #0A1F5C; }

.awt-page .faq-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F4F6F9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .25s, background .2s;
}
.awt-page .faq-q.open .faq-ico {
  transform: rotate(45deg);
  background: #0A1F5C;
  color: #fff;
}
.awt-page .faq-a {
  font-size: 14px;
  color: #111827;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height .3s ease, padding .3s;
  background: #F4F6F9;
}
.awt-page .faq-a.open { max-height: 240px; padding: 0 20px 16px; }


/* ---------- 16. CTA band ----------------------------------------------- */
.awt-page .cta-band {
  background: #0A1F5C;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.awt-page .cta-band::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -200px;
  right: -150px;
  pointer-events: none;
}
.awt-page .cta-band::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}
.awt-page .cta-band h2 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}
.awt-page .cta-band h2 em { font-style: normal; color: #DBE7FC; }
.awt-page .cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  margin-bottom: 28px;
  position: relative;
}
.awt-page .cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}


/* ---------- 17. Nearby links ------------------------------------------- */
.awt-page .nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.awt-page .nearby-a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: #F4F6F9;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  font-size: 14px;
  color: #111827;
  transition: all .2s;
}
.awt-page .nearby-a:hover {
  background: #DBE7FC;
  border-color: rgba(10,31,92,.3);
  color: #0A1F5C;
}


/* ---------- 18. Animations --------------------------------------------- */
@keyframes awt-fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.awt-page .fu     { opacity: 0; animation: awt-fadeUp .6s ease forwards; }
.awt-page .fu.d1  { animation-delay: .1s; }
.awt-page .fu.d2  { animation-delay: .2s; }
.awt-page .fu.d3  { animation-delay: .3s; }
.awt-page .fu.d4  { animation-delay: .4s; }


/* ==========================================================================
   19. WhatsApp Lead Form (.awt-form-wrap)
   ========================================================================== */
.awt-page .awt-form-wrap,
.awt-page .awt-form-wrap *,
.awt-page .awt-form-wrap *::before,
.awt-page .awt-form-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.awt-page .awt-form-wrap {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}

.awt-page .awt-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18), 0 4px 12px rgba(0,0,0,.08);
  border: 1px solid rgba(255,255,255,.6);
  position: relative;
}
.awt-page .awt-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, #E10600 0%, #0A1F5C 100%);
  border-radius: 0 0 3px 3px;
}

.awt-page .awt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEF2F2;
  color: #E10600;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.awt-page .awt-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E10600;
  animation: awt-pulse 1.8s ease-in-out infinite;
}
@keyframes awt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.8); }
}

.awt-page .awt-title {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  color: #0A1F5C;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.awt-page .awt-title em { font-style: normal; color: #E10600; position: relative; }

.awt-page .awt-sub {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.55;
  margin-bottom: 22px;
}

.awt-page .awt-field { margin-bottom: 12px; }
.awt-page .awt-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.awt-page .awt-field label .opt {
  color: #999;
  font-weight: 400;
  font-size: 11px;
  margin-left: 4px;
}

.awt-page .awt-field input,
.awt-page .awt-field select,
.awt-page .awt-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: #111827;
  background: #F4F6F9;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color .18s, background .18s, box-shadow .18s;
  outline: none;
}
.awt-page .awt-field input::placeholder,
.awt-page .awt-field textarea::placeholder { color: #a8a8a8; }

.awt-page .awt-field input:focus,
.awt-page .awt-field select:focus,
.awt-page .awt-field textarea:focus {
  border-color: #0A1F5C;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(10,31,92,.12);
}
.awt-page .awt-field textarea { resize: vertical; min-height: 70px; line-height: 1.5; }

.awt-page .awt-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.awt-page .awt-phone-wrap { display: flex; gap: 8px; }
.awt-page .awt-phone-wrap .awt-cc {
  flex: 0 0 155px;
  padding-left: 12px;
  padding-right: 26px;
  background-position: right 8px center;
  font-weight: 600;
  font-size: 13px;
}
.awt-page .awt-phone-wrap .awt-num { flex: 1; letter-spacing: .03em; }

.awt-page .awt-hint {
  font-size: 11px;
  color: #888;
  margin-top: 5px;
  line-height: 1.4;
}
.awt-page .awt-hint.err { color: #E10600; font-weight: 500; }

.awt-page .awt-field input.invalid,
.awt-page .awt-field select.invalid,
.awt-page .awt-field textarea.invalid {
  border-color: #E10600;
  background: #FEF2F2;
  box-shadow: 0 0 0 3px rgba(225,6,0,.08);
}

.awt-page .awt-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.awt-page .awt-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.awt-page .awt-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(180deg, #25d366 0%, #1ebe57 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 6px 18px rgba(37,211,102,.35), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .18s, box-shadow .18s, filter .18s;
}
.awt-page .awt-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37,211,102,.45), inset 0 1px 0 rgba(255,255,255,.25);
  filter: brightness(1.04);
}
.awt-page .awt-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
}
.awt-page .awt-submit svg { flex-shrink: 0; }

.awt-page .awt-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e5e3db;
  font-size: 11px;
  color: #6B7280;
}
.awt-page .awt-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}
.awt-page .awt-trust-item strong { color: #111827; font-weight: 700; }

.awt-page .awt-or {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: #888;
}
.awt-page .awt-or a {
  color: #0A1F5C;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dotted #0A1F5C;
}
.awt-page .awt-or a:hover {
  color: #E10600;
  border-bottom-color: #E10600;
}

.awt-page .awt-success {
  display: none;
  text-align: center;
  padding: 24px 8px;
}
.awt-page .awt-success.show { display: block; }
.awt-page .awt-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.awt-page .awt-success h3 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0A1F5C;
  margin-bottom: 8px;
}
.awt-page .awt-success p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.55;
}


/* ==========================================================================
   20. Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .awt-page .intro-grid     { grid-template-columns: 1fr; gap: 32px; }
  .awt-page .proc-step      { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .awt-page .hero           { padding: 56px 0 52px; }
  .awt-page .sec            { padding: 56px 0; }
  .awt-page .cta-band       { padding: 56px 0; }
  .awt-page .hero-img       { margin-top: 48px; }
  .awt-page .hero-grid      { grid-template-columns: 1fr; gap: 40px; }
  .awt-page .deliverables-grid { grid-template-columns: 1fr 1fr; margin-top: 36px; }
  .awt-page .process-grid   { margin-top: 36px; }
  .awt-page .why-grid       { grid-template-columns: repeat(2, 1fr); margin-top: 36px; }
  .awt-page .faq-list       { margin-top: 36px; }
  .awt-page .awt-form-wrap  { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .awt-page .wrap            { padding: 0 18px; }
  .awt-page .hero            { padding: 40px 0 44px; }
  .awt-page .sec             { padding: 44px 0; }
  .awt-page .cta-band        { padding: 44px 0; }
  .awt-page .hero-img        { margin-top: 40px; border-radius: 12px; }
  .awt-page .hero p.lead     { font-size: 15px; margin-bottom: 24px; }
  .awt-page .hero-acts       { gap: 8px; }
  .awt-page .hero-stats      { gap: 20px; margin-top: 32px; padding-top: 28px; }
  .awt-page .stat-n          { font-size: 26px; }
  .awt-page .stat-l          { font-size: 11px; }
  .awt-page .btn-p,
  .awt-page .btn-s,
  .awt-page .btn-wh,
  .awt-page .btn-ow          { font-size: 14px; padding: 11px 18px; }
  .awt-page .sec-sub         { font-size: 15px; }
  .awt-page .intro-grid      { gap: 24px; margin-top: 28px; }
  .awt-page .info-box        { padding: 20px; }
  .awt-page .info-row        { flex-direction: column; align-items: flex-start; gap: 3px; padding: 12px 0; }
  .awt-page .info-lbl        { font-size: 12px; }
  .awt-page .info-val        { text-align: left; font-size: 14px; }
  .awt-page .deliverables-grid { grid-template-columns: 1fr; border-width: 6px; }
  .awt-page .dlv-card        { padding: 22px; }
  .awt-page .proc-step       { padding: 22px 18px; }
  .awt-page .why-grid        { grid-template-columns: 1fr; }
  .awt-page .why-card        { padding: 18px; }
  .awt-page .faq-q           { padding: 14px 16px; font-size: 14px; }
  .awt-page .faq-a.open      { padding: 0 16px 14px; }
  .awt-page .cta-band p      { font-size: 15px; margin-bottom: 22px; }
  .awt-page .test-card blockquote { font-size: 14px; padding-left: 22px; }
  .awt-page .nearby-a        { font-size: 13px; padding: 8px 14px; }
  .awt-page .trust-in        { gap: 14px; }
  .awt-page .trust-it        { font-size: 12px; }
  .awt-page .awt-form-wrap   { max-width: 100%; margin: 0; }
  .awt-page .awt-card        { padding: 26px 20px 22px; border-radius: 16px; }
  .awt-page .awt-title       { font-size: 22px; }
  .awt-page .awt-row2        { grid-template-columns: 1fr; }
  .awt-page .awt-phone-wrap .awt-cc { flex: 0 0 130px; font-size: 12px; }
  .awt-page .awt-trust       { gap: 5px 10px; font-size: 10.5px; }
}

@media (max-width: 400px) {
  .awt-page .hero h1         { font-size: 26px; }
  .awt-page .hero-stats      { gap: 14px; }
  .awt-page .stat-n          { font-size: 22px; }
  .awt-page .hero-acts .btn-p,
  .awt-page .hero-acts .btn-s { width: 100%; justify-content: center; }
  .awt-page .cta-btns .btn-wh,
  .awt-page .cta-btns .btn-ow { width: 100%; justify-content: center; }
}
