:root {
  --blue: #07316f;
  --dark: #071f4b;
  --orange: #f15331;
  --purple: #8b35ed;
  --pink: #f28473;
  --soft: #f3f4f5;
  --text: #111827;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial,Helvetica,sans-serif;
  color: var(--text);
  background: #fff;
}

button,input,select,textarea {
  font: inherit;
}

.container {
  width: min(94%,1180px);
  margin: auto;
}

.heading {
  text-align: center;
}

.heading h2 {
  font-size: 30px;
  letter-spacing: -.7px;
}

.heading p {
  margin-top: 8px;
  color: #68707e;
  font-size: 15px;
  line-height: 1.45;
}

.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.site-header {
  height: 72px;
  border-top: 2px solid #8b35ed;
  background: #fff;
  box-shadow: 0 1px 8px rgba(16,24,40,.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header-inner:after {
  display: none;
}

.wordmark {
  display: flex;
  align-items: center;
  width: 220px;
  min-height: 44px;
  color: #0b3472;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
}

.header-logo {
  display: block;
  width: auto;
  max-width: 190px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.wordmark-fallback {
  display: inline-block;
}

.wordmark-ring {
  display: inline-block;
  color: #8b35ed;
  border: 2px solid #f15331;
  border-top-color: #8b35ed;
  border-right-color: #8b35ed;
  border-radius: 50%;
  font-size: 0;
  width: 15px;
  height: 15px;
  margin: 0 1px -1px;
}

.header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 44px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #101828;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.header-phone-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 15px;
  box-shadow: 0 3px 8px rgba(241,83,49,.25);
}

.header-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 36px;
  color: #fff;
  background: var(--orange);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(241,83,49,.22);
  transition: background .2s ease, transform .2s ease;
}

.header-quote:hover {
  background: #d94426;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg,#fff 0 48%,#deecfa 76%,#b8d1e9);
  min-height: 650px;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: linear-gradient(#7ba2c7 1px,transparent 1px),linear-gradient(90deg,#7ba2c7 1px,transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg,transparent 25%,#000);
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(0deg,rgba(46,103,159,.33),transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 60px;
  min-height: 650px;
  align-items: center;
}

.hero-copy {
  padding: 45px 0;
}

.hero h1 {
  font-size: 43px;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #101828;
}

.hero h1 span {
  display: inline-block;
  margin-top: 7px;
  color: var(--orange);
  border-bottom: 4px solid var(--purple);
}

.intro {
  max-width: 590px;
  margin: 21px 0 17px;
  font-size: 14px;
  line-height: 1.55;
}

.language-badge {
  display: inline-block;
  margin: 0 0 19px 105px;
  padding: 8px 24px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background: linear-gradient(135deg,#ae50f5,#7730dd);
  box-shadow: 0 5px 14px #7d37ca55;
}

.language-badge small {
  display: block;
  font-size: 8px;
}

.language-badge b {
  display: block;
  font-size: 31px;
  line-height: 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  max-width: 610px;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 5px 18px #00000014;
}

.stat {
  text-align: center;
  padding: 14px 3px;
  border-right: 1px solid #eee;
}

.stat:last-child {
  border: 0;
}

.stat b {
  display: block;
  color: var(--orange);
  font-size: 14px;
}

.stat span {
  display: block;
  margin-top: 2px;
  font-size: 7px;
  line-height: 1.2;
}

.contacts {
  display: flex;
  gap: 30px;
  margin-bottom: 17px;
}

.contact {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
}

.contact i {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-style: normal;
}

.contact b {
  display: block;
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 42px;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.quote {
  align-self: start;
  min-height: 610px;
  padding: 25px 22px;
  color: #fff;
  background: var(--blue);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 14px 32px #001c4760;
}

.quote h2 {
  font-size: 27px;
}

.quote>p {
  margin: 5px 0 14px;
  font-size: 8px;
  color: #dce8f8;
}

.quote input,.quote select,.quote textarea {
  display: block;
  width: 100%;
  margin-bottom: 9px;
  padding: 0 10px;
  color: #344054;
  background: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 3px;
  font-size: 9px;
  outline: none;
}

.quote input,.quote select {
  height: 39px;
}

.quote textarea {
  height: 82px;
  padding-top: 9px;
  resize: none;
}

.quote button {
  width: 100%;
  height: 38px;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.secure {
  text-align: center;
  margin-top: 8px;
  font-size: 7px;
  color: #dbe7f8;
}

/* Logos and services */
.trusted {
  padding: 40px 0 37px;
}

.logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 132px;
  height: 38px;
  object-fit: contain;
}

.brand-logo-jio {
  height: 44px;
}

.services {
  padding: 32px 0 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 28px;
}

.service {
  min-height: 155px;
  padding: 23px 16px;
  text-align: center;
  background: #f0f1f2;
  border-radius: 6px;
}

.service .icon {
  color: var(--orange);
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}

.service-image {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.service h3 {
  font-size: 16px;
}

.service p {
  max-width: 280px;
  margin: 8px auto 0;
  color: #525866;
  font-size: 13px;
  line-height: 1.45;
}

/* Industries and benefits */
.industries {
  padding: 45px 0 58px;
  background: #f0f2f5;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 42px 12px;
  margin-top: 40px;
}

.industry {
  text-align: center;
}

.industry-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 11px;
  color: #df7563;
  background: #ffddd7;
  border-radius: 50%;
}

.industry-icon .icon {
  width: 26px;
  height: 26px;
}

.industry-icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.industry h3 {
  font-size: 13px;
  line-height: 1.35;
}

.why {
  color: #fff;
  background: linear-gradient(90deg,#071f4bee,#082d63dd),radial-gradient(circle at 85% 20%,#547ba7,#0b2d59);
}

.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 42px;
  min-height: 245px;
  align-items: center;
}

.why h2 {
  font-size: 28px;
  line-height: 1.15;
}

.why-copy p {
  max-width: 350px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #d8e3f2;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px 20px;
}

.reason {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.35;
}

.reason-icon {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff77;
  border-radius: 50%;
}

.reason-icon .icon {
  width: 21px;
  height: 21px;
}

/* Process and CTA */
.process {
  padding: 24px 0 52px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  margin-top: 61px;
}

.steps:before {
  display: none;
}

.step {
  position: relative;
  text-align: center;
}

.step:not(:last-child):after {
  content: "\2192";
  position: absolute;
  top: 38px;
  left: calc(50% + 56px);
  width: calc(100% - 112px);
  overflow: hidden;
  color: #555;
  font-size: 26px;
  line-height: 12px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.step:not(:last-child):before {
  content: "................................";
  position: absolute;
  top: 30px;
  left: calc(50% + 52px);
  width: calc(100% - 92px);
  overflow: hidden;
  color: #555;
  font-size: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  color: #4477b9;
  background: #edf5ff;
  border: 1px solid #d1e2f7;
  border-radius: 50%;
}

.step-icon .icon {
  width: 31px;
  height: 31px;
}

.step-icon img {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.step h3 {
  font-size: 14px;
  line-height: 1.35;
}

.cta {
  padding: 0 0 35px;
  border-top: 0;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 205px;
  padding: 36px 34px;
  color: #fff;
  border-radius: 28px;
  background-image: linear-gradient(90deg,rgba(4,48,111,.98) 0%,rgba(4,48,111,.92) 34%,rgba(4,48,111,.36) 100%),url("assets/ready_to_go_global.jpg");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.cta h2 {
  font-size: 31px;
}

.cta p {
  margin: 11px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: #e4edf7;
}

.cta-actions {
  display: grid;
  grid-template-columns: 185px 185px;
  gap: 10px;
  margin-right: 18px;
}

.cta-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
}

.cta-primary {
  background: var(--orange);
}

.cta-phone {
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(7,49,111,.18);
}

.form-message {
  display: none;
  margin-top: 8px;
  text-align: center;
  font-size: 11px;
  color: #fff;
}

.form-message.success {
  color: #c9ffd9;
}

.form-message.error {
  color: #ffd0cb;
}

.quote button:disabled {
  cursor: wait;
  opacity: .7;
}

/* Hero section matched to the supplied reference */
.hero {
  min-height: 497px;
  background-image: linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.94) 29%,rgba(234,242,251,.80) 50%,rgba(83,130,178,.36) 100%),url("assets/enterprise-city-hero.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero:before {
  opacity: .08;
  background-size: 80px 80px;
}

.hero:after {
  height: 115px;
  background: linear-gradient(0deg,rgba(24,91,151,.20),transparent);
}

.hero-inner {
  grid-template-columns: minmax(0,1fr) 428px;
  gap: 48px;
  min-height: 497px;
  align-items: start;
}

.hero-copy {
  position: relative;
  padding: 52px 0 0;
}

.hero-copy:after {
  display: none;
}

.hero h1 {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -1.1px;
  color: #050505;
}

.hero-subtitle {
  margin-top: 24px;
  font-size: 29px;
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero-subtitle span {
  color: #f45118;
}

.intro {
  max-width: none;
  margin: 24px 0 29px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #161616;
}

.stats {
  width: 414px;
  max-width: 100%;
  height: 97px;
  margin-bottom: 34px;
  border-radius: 0 14px 14px 14px;
  box-shadow: 0 2px 2px #0003;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7px 4px;
}

.stat b {
  min-height: 23px;
  line-height: 23px;
  font-size: 19px;
  color: #ed4c2d;
}

.stat span {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 31px;
  margin-top: 7px;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

.contacts {
  gap: 21px;
  margin-bottom: 27px;
}

.contact {
  gap: 10px;
  font-size: 11px;
}

.contact i {
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  outline: 1px solid var(--orange);
  font-size: 21px;
}

.contact small {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
}

.contact b {
  font-size: 16px;
  font-weight: 500;
  color: #ed4c2d;
  white-space: nowrap;
}

.hero-btn {
  width: 414px;
  height: 36px;
  padding: 0;
  font-size: 15px;
}

.quote {
  align-self: start;
  width: 428px;
  min-height: 470px;
  margin-top: 17px;
  padding: 16px 15px 15px;
  background: #0b3779;
  border-radius: 20px;
  box-shadow: 0 12px 24px #08336855;
}

.quote h2 {
  font-size: 32px;
  line-height: 1.1;
}

.quote>p {
  margin: 11px 0 20px;
  font-size: 13px;
  color: #eef5ff;
}

.quote input,.quote select,.quote textarea {
  margin-bottom: 6px;
  padding: 0 16px;
  border: 0;
  border-radius: 4px;
  font-size: 12px;
}

.quote input,.quote select {
  height: 37px;
}

.quote textarea {
  height: 70px;
  padding-top: 13px;
}

.quote button {
  height: 36px;
  margin-top: 3px;
  font-size: 14px;
  background: #ed4c2d;
}

.secure {
  margin-top: 11px;
  font-size: 12px;
  color: #f0f5ff;
}

@media(max-width:760px) {
  .header-inner:after {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 0 35px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 35px;
  }

  .hero-copy:after {
    display: none;
  }

  .intro br {
    display: none;
  }

  .stats,.hero-btn,.quote {
    width: 100%;
  }

  .quote {
    min-height: auto;
    margin-top: 0;
    border-radius: 15px;
  }

  .contacts {
    flex-wrap: wrap;
  }

  .service-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .why-inner {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .steps {
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
  }

  .steps:before {
    display: none;
  }

  .step:before,
  .step:after {
    display: none;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .cta-actions {
    width: 100%;
    margin-right: 0;
  }


}

@media(max-width:430px) {
  .wordmark {
    font-size: 15px;
    letter-spacing: 1px;
  }

  .wordmark-ring {
    width: 11px;
    height: 11px;
  }

  .header-phone span:last-child {
    display: none;
  }

  .header-quote {
    width: 135px;
    height: 34px;
    font-size: 9px;
  }

  .heading h2 {
    font-size: 24px;
  }

  .heading p {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 27px;
  }

  .hero-subtitle {
    font-size: 26px;
  }

  .intro {
    font-size: 14px;
  }

  .stats {
    grid-template-columns: repeat(5,1fr);
  }

  .stat b {
    font-size: 14px;
  }

  .stat span {
    font-size: 7px;
  }

  .contacts {
    gap: 16px;
  }

  .contact b {
    font-size: 14px;
  }

  .service-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .industry-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 28px 8px;
  }

  .industry h3 {
    font-size: 12px;
  }

  .reasons {
    grid-template-columns: repeat(2,1fr);
  }

  .step h3 {
    font-size: 11px;
  }

  .cta-box {
    min-height: 170px;
  }

  .cta-actions {
    grid-template-columns: 1fr;
  }

  .cta p {
    font-size: 13px;
  }


}

/* Complete responsive layout */
img {
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

@media (max-width: 1100px) {
  .container {
    width: min(92%, 960px);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 32px;
  }

  .quote {
    width: 400px;
  }

  .hero h1 {
    font-size: 27px;
  }

  .hero-subtitle {
    font-size: 26px;
  }

  .intro {
    font-size: 14px;
  }

  .stats,
  .hero-btn {
    width: 100%;
  }

  .contact b {
    font-size: 14px;
  }

  .cta-actions {
    grid-template-columns: 170px 170px;
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  .site-header,
  .header-inner {
    height: 68px;
  }

  .wordmark {
    width: auto;
  }

  .header-logo {
    max-width: 170px;
    height: 40px;
  }

  .header-actions {
    gap: 14px;
  }

  .header-phone {
    font-size: 13px;
  }

  .header-quote {
    width: 165px;
    height: 36px;
    font-size: 10px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 0 42px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(30px, 5vw, 42px);
  }

  .hero-subtitle {
    font-size: clamp(28px, 4.5vw, 39px);
  }

  .intro {
    max-width: 650px;
    font-size: 16px;
  }

  .intro br {
    display: none;
  }

  .stats,
  .hero-btn,
  .quote {
    width: 100%;
    max-width: none;
  }

  .quote {
    min-height: auto;
    margin-top: 0;
    border-radius: 18px;
  }

  .contacts {
    flex-wrap: wrap;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 0;
  }

  .why-copy p {
    max-width: 600px;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px 12px;
  }

  .step:before,
  .step:after {
    display: none;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .cta-actions {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .container {
    width: 90%;
  }

  .site-header,
  .header-inner {
    height: 62px;
  }

  .wordmark {
    width: auto;
    min-height: 40px;
    font-size: 15px;
  }

  .header-logo {
    max-width: 135px;
    height: 36px;
  }

  .header-phone span:last-child {
    display: none;
  }

  .header-phone-icon {
    width: 30px;
    height: 30px;
  }

  .header-quote {
    width: 142px;
    height: 34px;
    font-size: 9px;
  }

  .hero-inner {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero-subtitle {
    margin-top: 14px;
    font-size: 27px;
  }

  .intro {
    margin: 18px 0 24px;
    font-size: 14px;
    line-height: 1.6;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
    border-radius: 12px;
  }

  .stat {
    min-height: 82px;
    border-bottom: 1px solid #eee;
  }

  .stat:nth-child(3) {
    border-right: 0;
  }

  .stat:nth-child(4),
  .stat:nth-child(5) {
    border-bottom: 0;
  }

  .contacts {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact {
    width: 100%;
  }

  .quote {
    padding: 22px 18px;
  }

  .quote h2 {
    font-size: 28px;
  }

  .quote input,
  .quote select {
    height: 44px;
  }

  .logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 28px 18px;
  }

  .service-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reasons {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-box {
    min-height: 250px;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .cta-copy br {
    display: none;
  }

  .cta-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .container {
    width: 92%;
  }

  .header-actions {
    gap: 7px;
  }

  .header-quote {
    width: 120px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: 25px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2),
  .stat:nth-child(4) {
    border-right: 0;
  }

  .stat:nth-child(3) {
    border-right: 1px solid #eee;
  }

  .service-grid,
  .industry-grid,
  .reasons {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 32px 8px;
  }
}
