* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #061f3d;
  --navy-2: #082b55;
  --orange: #f26716;
  --orange-light: #ff8a3d;
  --text: #172033;
  --muted: #5d6675;
  --border: #e3e7ed;
  --soft-bg: #f6f8fb;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6,31,61,0.08);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  column-gap: 34px;
}

.logo-link {
  color: inherit;
  display: inline-block;
}

.logo .brand-name {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--navy);
  line-height: 0.9;
  display: block;
}

.logo .brand-name span {
  color: var(--orange);
}

.tools-line {
  width: 205px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 10px;
  margin-top: 5px;
  margin-left: 42px;
}

.tools-line span {
  height: 2px;
  background: var(--orange);
}

.tools-line small {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 8px;
  color: var(--navy);
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.nav a {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--orange);
}

.header-cta {
  background: var(--navy);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  border: 2px solid var(--navy);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* HERO */

.hero-section {
  background:
    radial-gradient(circle at 75% 20%, rgba(242,103,22,0.08), transparent 28%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #f7f8fa 100%);
}

.hero-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 24px 64px;
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  color: #777;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 24px;
}

.hero-left h1 {
  color: var(--navy);
  font-size: 54px;
  line-height: 1.04;
  letter-spacing: -1.5px;
  font-weight: 900;
}

.orange-line {
  width: 58px;
  height: 4px;
  background: var(--orange);
  margin: 24px 0 22px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.55;
  max-width: 560px;
  color: #111;
}

.hero-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #d7dce2;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-meta svg {
  color: var(--navy);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: #ffffff;
  border: 2px solid var(--orange);
}

.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: #ffffff;
}

.btn-light {
  background: #ffffff;
  color: var(--navy);
  border: 2px solid #ffffff;
}

.btn-light:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}

.hero-right {
  position: relative;
}

.hero-right img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(6,31,61,0.12));
}

.trust-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--navy);
  color: #ffffff;
  padding: 20px 30px;
  text-align: center;
  border-left: 5px solid var(--orange);
  border-bottom: 5px solid var(--orange);
  font-size: 14px;
  line-height: 1.2;
  z-index: 2;
}

.trust-badge strong {
  font-size: 18px;
}

/* INTRO */

.intro-section {
  background: var(--soft-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intro-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 68% 32%;
}

.intro-text {
  padding: 42px 32px 42px 24px;
  font-size: 19px;
  line-height: 1.65;
}

.brand-text,
.brand-inline {
  font-weight: 900;
  letter-spacing: -0.4px;
}

.brand-text span:first-child,
.brand-inline span:first-child {
  color: var(--navy);
}

.brand-text span:last-child,
.brand-inline span:last-child {
  color: var(--orange);
}

.built-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 38px 32px;
  border-left: 6px solid var(--orange);
  position: relative;
  overflow: hidden;
}

.built-box::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 38px;
  height: 100%;
  background: var(--orange);
  transform: skewX(-14deg);
}

.shield {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255,255,255,0.95);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.shield svg {
  width: 27px;
  height: 27px;
}

.built-box h3 {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

/* COMMON SECTIONS */

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 24px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  margin-bottom: 34px;
}

..section-title > span {
  width: 110px;
  height: 3px;
  background: var(--orange);
  display: block;
  flex-shrink: 0;
}

.section-title h2 span {
  width: auto;
  height: auto;
  background: none;
  display: inline;
}

.brand-inline {
  display: inline;
  font-weight: 900;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.brand-inline span:first-child {
  color: var(--navy);
}

.brand-inline span:last-child {
  color: var(--orange);
}

.section-title h2 {
  color: var(--navy);
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.3px;
  font-weight: 900;
}

.section-intro {
  max-width: 880px;
  margin: -8px auto 42px;
  text-align: center;
  color: var(--text);
  font-size: 20px;
  line-height: 1.6;
}

/* PRODUCTS */

.products-section {
  background: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  height: 310px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 95%, rgba(242,103,22,0.08), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 10px 26px rgba(6,31,61,0.06);
}

.number {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.product-card h3 {
  margin-left: 52px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0.1px;
  position: relative;
  z-index: 2;
}

.product-card img {
  position: absolute;
  object-fit: contain;
  transform: translateX(-50%);
  z-index: 1;
}

.product-card:nth-child(1) img {
  width: 78%;
  height: 205px;
  left: 51%;
  bottom: 14px;
}

.product-card:nth-child(2) img {
  width: 82%;
  height: 210px;
  left: 54%;
  bottom: 14px;
}

.product-card:nth-child(3) img {
  width: 84%;
  height: 215px;
  left: 54%;
  bottom: 12px;
}

.product-card:nth-child(4) img {
  width: 80%;
  height: 215px;
  left: 50%;
  bottom: 10px;
}

.product-card:nth-child(5) img {
  width: 84%;
  height: 218px;
  left: 53%;
  bottom: 8px;
}

.product-card:nth-child(6) img {
  width: 82%;
  height: 218px;
  left: 53%;
  bottom: 10px;
}

/* CAPABILITIES */

.capabilities-section {
  background: var(--soft-bg);
  max-width: none;
}

.capabilities-section > .section-title,
.capabilities-section > .section-intro,
.capabilities-section > .capability-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    radial-gradient(circle at 95% 95%, rgba(242,103,22,0.08), transparent 38%),
    #ffffff;
  padding: 30px 24px;
  min-height: 210px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(6,31,61,0.05);
}

.cap-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--navy);
}

.cap-icon svg {
  width: 23px;
  height: 23px;
}

.capability-card h3 {
  font-size: 22px;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 10px;
}

.capability-card p {
  font-size: 17px;
  line-height: 1.5;
  color: #222;
}

/* WHY */

.why-section {
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  min-height: 160px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  background:
    radial-gradient(circle at 95% 95%, rgba(242,103,22,0.07), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 10px 26px rgba(6,31,61,0.05);
}

.why-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-copy h3 {
  font-size: 21px;
  line-height: 1.16;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 8px;
}

.why-copy p {
  font-size: 17px;
  line-height: 1.45;
  color: #222;
}

/* CONTACT */

.contact-section {
  background: var(--navy);
  color: #ffffff;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 38% 62%;
  overflow: hidden;
  position: relative;
  border-radius: 0;
}

.contact-left {
  padding: 58px 42px;
  background:
    radial-gradient(circle at 10% 15%, rgba(255,255,255,0.07), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}

.contact-left h2 {
  font-size: 34px;
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  line-height: 1.48;
  margin-bottom: 22px;
}

.contact-left h3 {
  font-size: 23px;
  margin-bottom: 4px;
}

.role {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 20px;
}

.contact-lines p {
  font-size: 17px;
  line-height: 1.75;
}

.contact-lines a {
  color: var(--orange-light);
  font-weight: 900;
}

.lead-form-wrap {
  background: #ffffff;
  color: var(--navy);
  padding: 54px 46px;
  position: relative;
}

.lead-form-wrap {
  background: #ffffff;
  color: var(--navy);
  padding: 54px 46px;
  position: relative;
  border-left: 1px solid rgba(6,31,61,0.08);
}

.lead-form-wrap::before {
  display: none;
}

.lead-form-wrap h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 22px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  background: #fbfcfe;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,103,22,0.12);
  background: #ffffff;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form button {
  border: none;
  cursor: pointer;
  width: fit-content;
  margin-top: 4px;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* FOOTER */

.site-footer {
  background: #04172d;
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 18px 24px;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    row-gap: 14px;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: center;
    gap: 22px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero-left h1 {
    font-size: 44px;
  }

  .hero-right {
    max-width: 680px;
  }

  .intro-inner {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .capability-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .lead-form-wrap::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 14px 18px;
  }

  .logo .brand-name {
    font-size: 30px;
  }

  .tools-line {
    width: 170px;
    margin-left: 40px;
  }

  .nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .header-cta {
    padding: 9px 14px;
  }

  .hero-content {
    padding: 42px 18px 48px;
  }

  .eyebrow {
    font-size: 16px;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-meta {
    flex-direction: column;
    font-size: 15px;
  }

  .trust-badge {
    top: 0;
    right: 0;
    padding: 14px 20px;
    font-size: 12px;
  }

  .intro-text {
    padding: 34px 20px;
    font-size: 17px;
  }

  .built-box {
    padding: 34px 22px;
  }

  .section {
    padding: 56px 18px;
  }

  .section-title {
    gap: 12px;
  }

  .section-title span {
    width: 44px;
  }

  .section-title h2 {
    font-size: 25px;
  }

  .section-intro {
    font-size: 17px;
  }

  .product-grid,
  .capability-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    height: 285px;
  }

  .product-card h3 {
    font-size: 20px;
  }

  .product-card img {
    height: 190px !important;
  }

  .capability-card {
    min-height: auto;
  }

  .why-card {
    min-height: auto;
  }

  .contact-left {
    padding: 42px 22px;
  }

  .contact-left h2 {
    font-size: 29px;
  }

  .contact-lines p {
    font-size: 16px;
    word-break: break-word;
  }

  .contact-middle {
    padding: 30px 22px;
  }

  .contact-image::before {
    display: none;
  }
  .contact-left {
  padding: 42px 22px;
}

.contact-left h2 {
  font-size: 29px;
}

.contact-lines p {
  font-size: 16px;
  word-break: break-word;
}

.lead-form-wrap {
  padding: 38px 22px;
}

.lead-form-wrap h3 {
  font-size: 25px;
}

.form-row {
  grid-template-columns: 1fr;
}
@media (max-width: 640px) {
  .header-inner {
    padding: 14px 18px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    justify-content: center;
    gap: 18px;
    padding-bottom: 4px;
  }

  .header-cta {
    padding: 10px 18px;
  }
}
.form-status {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.form-status.success {
  color: #127a3a;
  background: #eaf8ef;
  border: 1px solid #bde8ca;
  padding: 12px 14px;
  border-radius: 10px;
}

.form-status.error {
  color: #9b1c1c;
  background: #fff0f0;
  border: 1px solid #f2b8b8;
  padding: 12px 14px;
  border-radius: 10px;
}

.lead-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
/* FINAL FORM STATUS + INTERNATIONAL PHONE INPUT FIX */

.form-status {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.form-status.success {
  color: #127a3a;
  background: #eaf8ef;
  border: 1px solid #bde8ca;
  padding: 12px 14px;
  border-radius: 10px;
}

.form-status.error {
  color: #9b1c1c;
  background: #fff0f0;
  border: 1px solid #f2b8b8;
  padding: 12px 14px;
  border-radius: 10px;
}

.lead-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Intl phone wrapper should behave like a normal input */
.iti {
  width: 100% !important;
  display: block !important;
}

/* The actual phone input */
.iti input,
.iti input[type="tel"] {
  width: 100% !important;
  height: 58px !important;
  min-height: 58px !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  background: #fbfcfe !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 15px !important;
  color: var(--text) !important;
  outline: none !important;
}

/* Country-code section */
.iti--separate-dial-code .iti__selected-country {
  height: 58px !important;
  padding-left: 12px !important;
  padding-right: 6px !important;
  background: transparent !important;
  border-radius: 10px 0 0 10px !important;
}

/* Text of the dial code */
.iti--separate-dial-code .iti__selected-dial-code {
  font-size: 15px !important;
  color: #071f3d !important;
  margin-left: 6px !important;
}

/* This controls where the typed phone number starts */
.iti--separate-dial-code input[type="tel"] {
  padding-left: 78px !important;
}

/* Dropdown list should appear above form */
.iti__country-list {
  z-index: 9999 !important;
}

/* Keep other form fields consistent */
.lead-form input,
.lead-form select {
  min-height: 58px;
}

.lead-form textarea {
  min-height: 145px;
}

/* Mobile */
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .iti--separate-dial-code input[type="tel"] {
    padding-left: 60px !important;
  }
  /* FINAL PHONE FIELD VERTICAL ALIGNMENT FIX */

.iti {
  width: 100% !important;
  display: block !important;
}

.iti input,
.iti input[type="tel"],
.iti--separate-dial-code input[type="tel"] {
  height: 58px !important;
  min-height: 58px !important;
  line-height: 58px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  font-size: 15px !important;
  display: block !important;
}

/* Keeps flag + country code vertically centered */
.iti__selected-country,
.iti--separate-dial-code .iti__selected-country {
  height: 58px !important;
  display: flex !important;
  align-items: center !important;
}

/* Keeps +1 text centered */
.iti__selected-dial-code,
.iti--separate-dial-code .iti__selected-dial-code {
  line-height: 58px !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* Keep the number starting position */
.iti--separate-dial-code input[type="tel"] {
  padding-left: 78px !important;
}
}