/* ============================================================
   style.css — Aolt Landing Page
   Extracted from reference design
   ============================================================ */

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue:  #1a56db;
  --dark:  #0b0d11;
  --gray:  #6b7280;
  --white: #ffffff;
  --max:   1350px;
  --font:  'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  width: 1350px;
  margin: 0 auto;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  padding: 0 40px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.04em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #111;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.145px;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--dark); }

.nav-cta {
  background-color: #000;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 28px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.145px;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 40px 56px;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 58px - 90px);
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-heading {
  color: #000;
  font-family: Geomanist;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.hero-sub {
  color: #000;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 400px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  padding: 12px 22px;
  background: #000;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary {
  padding: 12px 22px;
  background: transparent;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #000;
  cursor: pointer;
  white-space: nowrap;
}

.hero-right {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  padding: 30px 40px 50px;
}

.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.trust-label {
  color: #5FA9FF;
  text-align: center;
  font-family: "Red Hat Display";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 40px;
}

.logos-row {
  display: flex;
  gap: 85px;
  justify-content: center;
  flex-wrap: wrap;
}

.logo-item {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.logo-item:hover { opacity: 1; }

.logo-item img {
  filter: invert(1);
  height: 36px;
  width: auto;
  display: block;
}

/* ══════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════ */
.problem-wrap {
  background: #0075FF;
  padding-top: 48px;
}

.problem-section {
  width: var(--max);
  max-width: var(--max);
  margin: 0 auto;
  padding: 50px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-img-circle img { width: 585px; }

.problem-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(93deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.00) 100%);
  box-shadow: 0 0 0 0 #E5E5E8 inset, 0 -1px 4px 0 rgba(0,0,0,0.25) inset;
  color: #FFF;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  width: fit-content;
  text-transform: uppercase;
}

.problem-heading {
  color: #FFF;
  font-family: Geomanist;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.problem-body p {
  color: #FFF;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════ */
.services-section {
  background: #fff;
  padding: 72px 0 80px;
}

.services-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-tag {
  display: inline-block;
  padding: 5px 18px;
  border: 1px solid rgba(0,0,0,0.10);
  background: linear-gradient(93deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.00) 100%);
  box-shadow: 0 0 0 0 #E5E5E8 inset, 0 -1px 4px 0 rgba(0,0,0,0.25) inset;
  color: #000;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 22px;
}

.services-heading {
  color: #131212;
  text-align: center;
  font-family: Geomanist;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 18px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.services-subtext {
  color: #131212;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 760px;
  margin: 0 auto;
}

.cards-row-top {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.cards-row-bottom {
  display: grid;
  gap: 20px;
  width: 800px;
  margin: 30px auto 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #e5e7eb;
}

.cards-row-bottom .s-card:nth-child(1) {
  border-right: 1px solid #e5e7eb;
}

.s-card {
  padding: 36px 32px 40px;
  border-left: 4px solid #0075FF;
  background: #FAFAFA;
}

.s-card h3 {
  color: #131212;
  font-family: Manrope;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 14px;
}

.s-card p {
  color: #131212;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.s-card:hover {
  border-left: 4px solid #0075FF;
  background: #DBE7F5;
}

/* ══════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════ */
.process-section {
  background: #fff;
  padding: 32px 24px 80px;
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.process-header h2 {
  color: #131212;
  text-align: center;
  font-family: Geomanist;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}

.process-header p {
  color: #131212;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.process-steps {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: center;
  gap: 0;
}

.step-icon {
  width: 180px;
  height: 180px;
  background: #0075FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.step-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }

.process-step.left-align .step-icon { background: #5FA9FF; }

.step-text {
  padding: 24px 40px;
}

.step-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-text p {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  line-height: 1.75;
}

.step-text-empty { padding: 24px 40px; }

.process-step.left-align .step-text { text-align: right; }

/* ══════════════════════════════════════════
   CLIENTS SECTION
══════════════════════════════════════════ */
.clients-section {
  background: #0075FF;
  padding: 64px 32px 72px;
}

.clients-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.clients-header {
  text-align: center;
  margin-bottom: 52px;
}

.clients-tag {
  display: inline-block;
  padding: 5px 18px;
  border: 1px solid rgba(0,0,0,0.10);
  background: #FFF;
  box-shadow: 0 0 0 0 #E5E5E8 inset, 0 -1px 4px 0 rgba(0,0,0,0.25) inset;
  color: #000;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 20px;
}

.clients-heading {
  color: #FFF;
  text-align: center;
  font-family: Geomanist;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.clients-subtext {
  color: #FFF;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 1040px;
  margin: 0 auto;
}

.clients-grid {
  width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.client-card {
  border-radius: 150px;
  align-items: center;
  background: #FAFAFA;
  display: flex;
  padding: 0 20px;
  overflow: hidden;
  min-height: 160px;
}

.card-img {
  flex-shrink: 0;
  width: 148px;
  padding: 6px 0 6px 6px;
}

.card-img img {
  width: 100%;
  height: 75%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.card-body {
  flex: 1;
  padding: 22px 22px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.card-body h3 {
  color: #131212;
  font-family: Manrope;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card-body p {
  color: #131212;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
.about-section {
  background: #fff;
  padding: 72px 0px 80px 100px;
}

.about-inner {
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 592px;
  gap: 64px;
  align-items: center;
}

.about-left { display: flex; flex-direction: column; }

.about-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(0,0,0,0.10);
  background: linear-gradient(93deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.00) 100%);
  box-shadow: 0 0 0 0 #E5E5E8 inset, 0 -1px 4px 0 rgba(0,0,0,0.25) inset;
  color: #000;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 22px;
  width: fit-content;
}

.about-heading {
  color: #131212;
  font-family: Geomanist;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 28px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-body p {
  color: #131212;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.about-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-wrap {
  width: 100%;
  border-radius: 10000px 0 0 10000px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
.contact-section {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: url('img/cta.jpg') center/cover no-repeat;
  z-index: 0;
}

.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,15,30,0.62);
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 48px;
  width: 80%;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 48px;
  align-items: center;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-heading {
  color: #FFF;
  font-family: Geomanist;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-sub {
  color: #FFF;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 560px;
}

.contact-card {
  border-radius: 20px;
  background: #FFF;
  padding: 32px 28px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  color: #364153;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.form-group label span { color: #e53e3e; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 14px;
  border: 2px solid #E5E7EB;
  color: rgba(10,10,10,0.50);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.312px;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #9ca3af; }

.form-group input:focus,
.form-group textarea:focus { border-color: #1a56db; }

.form-group textarea { resize: none; height: 80px; }

.form-submit {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  background: #0982FE;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: #1445b8; }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* Form feedback */
#formSuccess { display: none; text-align: center; padding: 20px 0; }
#formError   { display: none; background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px; padding: 12px 16px; }
#errorMsg    { margin: 0; color: #dc2626; font-size: 13px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: #111111;
  padding: 52px 60px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  display: block;
}

.footer-logo img { height: 36px; display: block; }

.footer-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  color: #fafafa;
  max-width: 800px;
  text-align: center;
  margin-bottom: 30px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fafafa;
  transition: color 0.2s;
}

.footer-contact a:hover { color: #fff; }

.contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: #fff;
}

.footer-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 0 40px;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-nav a:hover { color: #ccc; }

.footer-nav .sep {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 22px;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #c5cadb;
}

.footer-address {
  color: #fafafa;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    min-height: auto;
  }
  .hero-heading { font-size: 38px; }
  .hero-right { height: 320px; }

  .problem-section {
    grid-template-columns: 1fr;
    padding: 40px 28px 48px;
    border-radius: 20px 20px 0 0;
    width: calc(100% - 24px);
  }
  .problem-heading { font-size: 26px; }
  .problem-img-circle img { width: 100%; }

  .process-step { grid-template-columns: 1fr; }
  .step-text-empty { display: none; }
  .process-step.left-align .step-text { text-align: left; }

  .cards-row-top { grid-template-columns: 1fr; }
  .cards-row-bottom { grid-template-columns: 1fr; width: 100%; }
  .cards-row-bottom .s-card:nth-child(1) { border-right: none; border-bottom: 1px solid #e5e7eb; }

  .clients-grid { grid-template-columns: 1fr; width: 100%; }
  .clients-heading { font-size: 28px; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-section { padding: 72px 24px 80px; }
  .about-heading { font-size: 32px; }
  .about-img-wrap { max-width: 380px; margin: 0 auto; }

  .contact-inner { grid-template-columns: 1fr; padding: 48px 24px; width: 100%; }
  .contact-heading { font-size: 32px; }
}

@media (max-width: 560px) {
  .navbar { padding: 0 20px; width: 100%; }
  .nav-links li:not(:last-child):not(:first-child) { display: none; }
  .hero-heading { font-size: 30px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .services-heading { font-size: 26px; }
  .process-header h2 { font-size: 28px; }
  .footer-nav a { padding: 0 16px; font-size: 14px; }
  .footer-contact { flex-direction: column; gap: 16px; }
  .clients-heading { font-size: 22px; }
  .about-heading { font-size: 26px; }
}
