:root {
  --blue: #0a62e8;
  --deep: #061a4e;
  --navy: #071331;
  --ink: #101c38;
  --muted: #667085;
  --pale: #f5f8ff;
  --line: #e4e9f2;
  --white: #fff;
  --shadow: 0 25px 70px rgba(12, 34, 76, .12);
}

/* =========================
   RESET
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}


/* =========================
   ANNOUNCEMENT BAR
========================= */

.announcement {
  background: var(--deep);
  color: #dfe9ff;
  font-size: 11px;
  letter-spacing: .3px;
}

.announcement-inner {
  height: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement b {
  color: #65a2ff;
}

.announcement a {
  color: #fff;
  white-space: nowrap;
}

.announcement a span {
  color: #61a3ff;
}


/* =========================
   HEADER
========================= */

.header {
  height: 82px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #edf0f5;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}


/* =========================
   INNOVAASH BRAND
========================= */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;

  /* IMPORTANT */
  width: auto;
  min-width: max-content;
  height: auto;

  text-decoration: none;
  color: #071b52;

  flex-shrink: 0;
  overflow: visible;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;

  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-text strong {
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .5px;
  line-height: 1.1;

  color: #071b52;
  white-space: nowrap;
}

.brand-text span {
  margin-top: 5px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;

  color: #555;
  white-space: nowrap;
}


/* =========================
   NAVIGATION
========================= */

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 29px;

  font-size: 13px;
  font-weight: 700;
  color: #43506a;

  flex-shrink: 0;
}

.nav-menu a {
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--blue);
}

.nav-button {
  background: var(--blue);
  color: #fff !important;

  padding: 13px 18px;
  border-radius: 100px;

  box-shadow: 0 8px 20px rgba(10, 98, 232, .2);
}

.nav-button span {
  margin-left: 9px;
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
  color: var(--deep);
  cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    #fff 100%
  );

  padding: 90px 0 80px;
}

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

.eyebrow,
label {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--blue);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);

  box-shadow:
    0 0 0 7px rgba(10, 98, 232, .1);
}

.hero h1 {
  font: 800 clamp(52px, 6vw, 78px)/1.01 "Manrope";
  letter-spacing: -4px;
  margin: 22px 0;
  color: #071331;
}

.hero h1 span {
  background: linear-gradient(
    90deg,
    #075fe3,
    #2692ff
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 600px;

  font-size: 17px;
  line-height: 1.8;

  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  border-radius: 100px;
  padding: 15px 22px;

  font-size: 13px;
  font-weight: 800;

  transition: .25s;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--blue);
  color: #fff;

  box-shadow:
    0 14px 30px rgba(10, 98, 232, .22);
}

.button.primary b {
  font-size: 15px;
}

.button.secondary {
  border: 1px solid #d8deea;
  color: #1c2942;
  background: #fff;
}

.hero-proof {
  display: flex;
  gap: 25px;

  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  font-size: 11px;
}

.hero-proof small {
  font-size: 10px;
  color: #7b8494;
  margin-top: 2px;
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
  height: 500px;
  display: grid;
  place-items: center;
  position: relative;
}

.glow {
  position: absolute;

  width: 430px;
  height: 430px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(10, 98, 232, .2),
      rgba(10, 98, 232, 0) 67%
    );
}

.browser-card {
  width: min(500px, 94%);
  height: 370px;

  background: #fff;

  border-radius: 22px;
  border: 1px solid #dce5f2;

  box-shadow:
    0 35px 80px rgba(16, 50, 106, .2);

  position: relative;

  transform: rotate(2deg);
  overflow: visible;
}

.browser-top {
  height: 42px;

  border-bottom: 1px solid #e6ebf2;

  display: flex;
  align-items: center;

  padding: 0 15px;
  gap: 6px;

  color: #8993a4;
  font-size: 9px;
}

.browser-top > span {
  width: 7px;
  height: 7px;

  border-radius: 50%;
  background: #d9e0eb;
}

.browser-top div {
  margin: auto;
  letter-spacing: .6px;
}

.browser-content {
  margin: 15px;

  border-radius: 13px;

  background:
    linear-gradient(
      135deg,
      #071a4b,
      #0a63e8
    );

  height: 298px;

  overflow: hidden;

  color: #fff;

  position: relative;
}

.mini-nav {
  height: 44px;

  border-bottom:
    1px solid rgba(255, 255, 255, .15);

  display: flex;
  align-items: center;

  gap: 17px;
  padding: 0 18px;

  font-size: 8px;
  color: #bdd4ff;
}

.mini-nav b {
  color: #fff;
  margin-right: auto;
}

.mini-nav strong {
  background: #fff;
  color: #0b4cae;

  padding: 7px 9px;

  border-radius: 50px;
}

.mini-main {
  padding: 40px 28px;
}

.mini-main small {
  font-size: 7px;
  letter-spacing: 1.5px;
  color: #a9c8ff;
}

.mini-main h3 {
  font: 700 35px/1.03 "Manrope";

  letter-spacing: -2px;

  margin: 11px 0;
}

.mini-main h3 em {
  font-style: normal;
  color: #74b4ff;
}

.mini-main button {
  border: 0;

  background: #fff;
  color: #0a52bb;

  border-radius: 50px;

  padding: 9px 13px;

  font-weight: 800;
  font-size: 8px;
}

.mini-stats {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  display: flex;

  border-top:
    1px solid rgba(255, 255, 255, .14);
}

.mini-stats div {
  flex: 1;

  padding: 12px 17px;

  border-right:
    1px solid rgba(255, 255, 255, .14);

  display: flex;
  flex-direction: column;
}

.mini-stats b {
  font-size: 11px;
}

.mini-stats span {
  font-size: 7px;
  color: #a8c8ff;
}


/* =========================
   FLOATING NOTES
========================= */

.floating-note {
  position: absolute;

  background: #fff;
  color: #14203a;

  padding: 11px 14px;

  border-radius: 12px;

  box-shadow:
    0 12px 28px rgba(14, 41, 87, .18);

  font-size: 10px;
  font-weight: 800;
}

.note-a {
  left: -30px;
  top: 82px;
}

.note-b {
  right: -30px;
  bottom: 55px;
}

.logo-badge {
  position: absolute;

  right: 18px;
  top: 0;

  width: 112px;
  height: 72px;

  background: #fff;

  border-radius:
    0 0 15px 15px;

  box-shadow:
    0 10px 25px rgba(20, 48, 93, .12);

  padding: 7px;
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* =========================
   HERO SHAPES
========================= */

.hero-shape {
  position: absolute;

  border:
    1px solid rgba(10, 98, 232, .08);

  border-radius: 50%;
}

.shape-one {
  width: 580px;
  height: 580px;

  right: -250px;
  top: -170px;
}

.shape-two {
  width: 350px;
  height: 350px;

  left: -240px;
  bottom: -200px;
}


/* =========================
   BLUE STRIP
========================= */

.blue-strip {
  background: var(--blue);
  color: #fff;

  padding: 17px 0;
}

.strip-grid {
  display: flex;

  justify-content: space-between;
  align-items: center;

  font: 700 10px "Manrope";

  letter-spacing: 1.3px;
}

.strip-grid i {
  font-style: normal;
  color: #9dc8ff;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
  padding: 115px 0;
}

.section-heading {
  display: grid;

  grid-template-columns: 1.1fr .9fr;

  gap: 80px;

  align-items: end;

  margin-bottom: 52px;
}

.section-heading h2,
.about-section h2,
.contact h2 {
  font:
    800 clamp(42px, 5vw, 62px)/1.02
    "Manrope";

  letter-spacing: -3px;

  margin-top: 13px;
}

.section-heading h2 span,
.about-section h2 span,
.contact h2 span {
  color: var(--blue);
}

.section-heading > p {
  color: var(--muted);

  font-size: 14px;
  line-height: 1.85;

  max-width: 500px;
}


/* =========================
   SERVICES
========================= */

.services {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 13px;
}

.service-card {
  background: #f7f9fc;

  border: 1px solid #e4e9f2;

  border-radius: 22px;

  padding: 27px;

  min-height: 430px;

  display: flex;
  flex-direction: column;

  transition: .25s;
}

.service-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow);

  background: #fff;
}

.service-card.main-card {
  background:
    linear-gradient(
      150deg,
      #071a4c,
      #0b64e8
    );

  color: #fff;

  border-color: #0b64e8;
}

.service-card small {
  font-size: 9px;

  letter-spacing: 1.5px;

  margin: 22px 0 14px;

  color: #7d889a;
}

.main-card small {
  color: #9ec5ff;
}

.service-icon {
  width: 43px;
  height: 43px;

  border-radius: 13px;

  display: grid;
  place-items: center;

  background: #e7f0ff;
  color: var(--blue);

  font-size: 20px;
}

.main-card .service-icon {
  background: rgba(255, 255, 255, .13);
  color: #fff;
}

.service-card h3 {
  font: 800 23px/1.1 "Manrope";

  letter-spacing: -1.2px;
}

.service-card p {
  font-size: 12px;

  color: #687387;

  margin-top: 14px;

  line-height: 1.7;
}

.main-card p {
  color: #c6dbff;
}

.tags {
  display: flex;

  flex-wrap: wrap;

  gap: 6px;

  margin-top: 18px;
}

.tags span {
  border: 1px solid #dce3ed;

  padding: 5px 7px;

  border-radius: 7px;

  font-size: 9px;

  color: #5e697b;
}

.main-card .tags span {
  border-color: rgba(255, 255, 255, .18);
  color: #d6e6ff;
}

.service-card > a {
  font-size: 11px;
  font-weight: 800;

  margin-top: auto;
  padding-top: 24px;
}

.service-card > a:hover {
  text-decoration: underline;
}


/* =========================
   WORK SECTION
========================= */

.work-section {
  background: var(--navy);
  color: #fff;

  padding: 115px 0;
}

.section-heading.light > div label {
  color: #65a9ff;
}

.section-heading.light > p {
  color: #98a6c0;
}

.section-heading.light h2 span {
  color: #62a8ff;
}

.portfolio-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.project {
  border:
    1px solid rgba(255, 255, 255, .11);

  border-radius: 22px;

  overflow: hidden;

  background: #0c1a35;

  transition: .3s;
}

.project:hover {
  transform: translateY(-6px);

  border-color:
    rgba(90, 164, 255, .5);
}

.project-screen {
  height: 335px;

  position: relative;

  overflow: hidden;
}

.fake-browser {
  height: 34px;

  background: rgba(255, 255, 255, .92);

  color: #34415b;

  display: flex;
  align-items: center;

  gap: 5px;

  padding: 0 12px;

  font-size: 8px;

  position: relative;

  z-index: 5;
}

.fake-browser span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #bdc7d6;
}

.fake-browser b {
  margin: auto;

  font-size: 8px;

  letter-spacing: .5px;
}

.project-info {
  display: flex;

  justify-content: space-between;

  padding: 22px 24px;
}

.project-info small {
  font-size: 8px;

  letter-spacing: 1.4px;

  color: #7890b7;
}

.project-info h3 {
  font: 700 21px "Manrope";

  letter-spacing: -.7px;

  margin-top: 4px;
}

.project-info > span {
  color: #5e79a5;

  font: 700 12px "Manrope";
}


/* =========================
   PORTFOLIO IMAGE PREVIEW
========================= */

.image-preview {
  position: relative;

  overflow: hidden;

  background: #eef2f7;
}

.image-preview .fake-browser {
  position: absolute;

  z-index: 5;

  top: 0;
  left: 0;
  right: 0;

  height: 34px;

  background: rgba(255, 255, 255, .96);

  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;

  gap: 5px;

  padding: 0 12px;

  color: #34415b;

  font-size: 8px;
}

.image-preview .fake-browser > span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #bdc7d6;
}

.image-preview .fake-browser b {
  margin: auto;

  font-size: 8px;

  letter-spacing: .5px;
}

.project-image {
  position: absolute;

  top: 34px;
  left: 0;

  width: 100%;
  height: calc(100% - 34px);

  object-fit: cover;

  object-position: top center;

  display: block;

  transition:
    transform .5s ease;
}

.project:hover .project-image {
  transform: scale(1.03);
}

.preview-overlay {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 45%;

  display: flex;

  align-items: flex-end;

  justify-content: center;

  padding-bottom: 25px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(3, 15, 40, .85)
    );

  opacity: 0;

  transition: opacity .3s ease;

  z-index: 10;
}

.project:hover .preview-overlay {
  opacity: 1;
}

.view-demo {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  background: #fff;

  color: #075fda;

  padding: 12px 18px;

  border-radius: 100px;

  font-size: 11px;

  font-weight: 800;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .2);

  transition:
    transform .2s ease,
    background .2s ease;
}

.view-demo span {
  font-size: 15px;
}

.view-demo:hover {
  transform: translateY(-3px);

  background: #eaf3ff;
}

.portfolio-note {
  text-align: center;

  color: #8191ae;

  font-size: 11px;

  margin-top: 30px;
}

.portfolio-note a {
  color: #67aaff;
  font-weight: 800;
}


/* =========================
   BUSINESS HUB
========================= */

.project-business .project-screen {
  background: #f2f5fa;
}

.biz-ui {
  height: 100%;

  display: flex;

  padding: 35px;
}

.ui-side {
  width: 65px;

  background: #0b1e51;

  border-radius:
    12px 0 0 12px;
}

.ui-body {
  flex: 1;

  background: #fff;

  padding: 28px;
}

.ui-body small {
  font-size: 7px;

  letter-spacing: 1.2px;

  color: #7e899b;
}

.ui-body h3 {
  font: 800 28px/1 "Manrope";

  letter-spacing: -1.5px;

  margin: 10px 0 18px;
}

.chart {
  height: 65px;

  display: flex;

  align-items: end;

  gap: 7px;

  border-bottom: 1px solid #e5e9ef;
}

.chart i {
  width: 12%;

  background: #5b9cff;

  border-radius:
    4px 4px 0 0;
}

.chart i:nth-child(1) {
  height: 35%;
}

.chart i:nth-child(2) {
  height: 52%;
}

.chart i:nth-child(3) {
  height: 42%;
}

.chart i:nth-child(4) {
  height: 72%;
}

.chart i:nth-child(5) {
  height: 58%;
}

.chart i:nth-child(6) {
  height: 88%;
}

.ui-cards {
  display: flex;

  gap: 8px;

  margin-top: 14px;
}

.ui-cards span {
  background: #f2f5fa;

  border-radius: 7px;

  padding: 8px;

  font-size: 7px;

  color: #6e7787;

  flex: 1;
}

.ui-cards b {
  display: block;

  color: #0d214e;

  font-size: 12px;

  margin-top: 2px;
}


/* =========================
   BUSINESS TOOLS
========================= */

.tools-section {
  padding: 115px 0;

  background: #f7f9fd;
}

.tool-list {
  border-top: 1px solid #dfe5ee;
}

.tool-row {
  display: grid;

  grid-template-columns:
    50px 52px 1fr 25px;

  gap: 20px;

  align-items: center;

  padding: 23px 0;

  border-bottom: 1px solid #dfe5ee;
}

.tool-row > span {
  font: 700 10px "Manrope";

  color: #93a0b3;
}

.tool-symbol {
  width: 43px;
  height: 43px;

  border-radius: 12px;

  background: #fff;

  display: grid;
  place-items: center;

  color: var(--blue);

  font-weight: 800;

  box-shadow:
    0 7px 20px rgba(27, 57, 100, .06);
}

.tool-row h3 {
  font: 800 19px "Manrope";

  letter-spacing: -.5px;
}

.tool-row p {
  font-size: 11px;

  color: #778296;

  margin-top: 3px;
}

.tool-row > b {
  color: var(--blue);
}

.idea-box {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-top: 30px;

  padding: 24px 26px;

  background: #071a4b;

  color: #fff;

  border-radius: 17px;
}

.idea-box strong {
  font: 700 15px "Manrope";
}

.idea-box p {
  font-size: 11px;

  color: #adc1e4;

  margin-top: 4px;
}

.idea-box a {
  white-space: nowrap;

  background: #fff;

  color: #075fe0;

  border-radius: 50px;

  padding: 11px 15px;

  font-size: 10px;

  font-weight: 800;
}


/* =========================
   ABOUT
========================= */

.about-section {
  padding: 120px 0;

  background: #fff;
}

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;
}

.about-copy > p {
  font-size: 16px;

  line-height: 1.85;

  color: #667085;
}

.about-points {
  margin-top: 32px;
}

.about-points > div {
  display: grid;

  grid-template-columns: 38px 1fr;

  gap: 4px 13px;

  border-top: 1px solid var(--line);

  padding: 17px 0;
}

.about-points b {
  grid-row: span 2;

  font-size: 10px;

  color: var(--blue);
}

.about-points strong {
  font-size: 12px;
}

.about-points span {
  font-size: 10px;

  color: #7b8495;
}


/* =========================
   PROCESS
========================= */

.process {
  padding: 115px 0;

  background: #f7f9fc;
}

.steps {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 15px;
}

.steps > div {
  background: #fff;

  border: 1px solid #e3e8f0;

  border-radius: 18px;

  padding: 25px;

  min-height: 190px;
}

.steps b {
  color: var(--blue);

  font: 800 11px "Manrope";
}

.steps h3 {
  font: 800 22px "Manrope";

  margin: 35px 0 8px;
}

.steps p {
  font-size: 11px;

  color: #737e91;
}


/* =========================
   CONTACT
========================= */

.contact {
  padding: 80px 0;

  background: #fff;
}

.contact-box {
  background:
    linear-gradient(
      120deg,
      #061842,
      #0b62e8
    );

  border-radius: 28px;

  min-height: 400px;

  padding: 48px 55px;

  display: grid;

  grid-template-columns: 250px 1fr;

  align-items: center;

  gap: 55px;

  position: relative;

  overflow: hidden;
}

.contact-box::after {
  content: "";

  position: absolute;

  width: 430px;
  height: 430px;

  border:
    1px solid rgba(255, 255, 255, .1);

  border-radius: 50%;

  right: -130px;
  top: -120px;
}

.contact-logo {
  background: #fff;

  border-radius: 20px;

  padding: 12px;

  width: 220px;
  height: 220px;

  display: grid;
  place-items: center;

  z-index: 1;
}

.contact-logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.contact-copy {
  color: #fff;

  z-index: 1;
}

.contact-copy label {
  color: #9bc6ff;
}

.contact h2 {
  font-size: 52px;

  margin: 13px 0;
}

.contact h2 span {
  color: #72b5ff;
}

.contact-copy p {
  color: #c1d5f5;

  font-size: 13px;

  margin-bottom: 25px;
}

.button.white {
  background: #fff;

  color: #075dd1;
}

.button.white b {
  font-size: 14px;
}


/* =========================
   FOOTER
========================= */

footer {
  background: #061331;

  color: #a7b4ca;
}

.footer-top {
  min-height: 160px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}

.footer-brand img {
  width: 150px;
  height: 85px;

  object-fit: contain;

  background: #fff;

  border-radius: 10px;
}

.footer-brand p {
  font-size: 9px;

  letter-spacing: 2px;

  color: #6e83a7;

  margin-top: 5px;
}

.footer-links {
  display: flex;

  gap: 25px;

  font-size: 11px;
}

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

.footer-bottom {
  border-top:
    1px solid rgba(255, 255, 255, .09);

  padding: 18px 0;

  display: flex;

  justify-content: space-between;

  font-size: 9px;

  color: #6e7f9c;
}


/* =========================
   SCROLL ANIMATION
========================= */

.service-card,
.project,
.tool-row,
.steps > div {
  opacity: 0;

  transform: translateY(14px);
}

.service-card.visible,
.project.visible,
.tool-row.visible,
.steps > div.visible {
  opacity: 1;

  transform: none;

  transition:
    opacity .6s ease,
    transform .6s ease;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

  .nav-menu {
    gap: 18px;
    font-size: 12px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

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

  .hero-visual {
    margin-top: 10px;
  }

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

  .section-heading {
    gap: 40px;
  }

  .contact-box {
    grid-template-columns: 190px 1fr;
  }

  .contact-logo {
    width: 175px;
    height: 175px;
  }

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


/* =====================================================
   SMALL TABLET / MOBILE NAV
===================================================== */

@media (max-width: 850px) {

  .header {
    height: 72px;
  }

  .menu-btn {
    display: block;
  }

  .nav-menu {
    display: none;

    position: absolute;

    top: 72px;
    left: 0;
    right: 0;

    background: #fff;

    padding: 18px 20px 25px;

    flex-direction: column;

    align-items: stretch;

    gap: 4px;

    border-bottom:
      1px solid var(--line);

    box-shadow:
      0 20px 30px rgba(0, 0, 0, .08);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 10px 8px;
  }

  .nav-button {
    text-align: center;
    margin-top: 6px;
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

  .container {
    width: calc(100% - 28px);
  }


  /* Announcement */

  .announcement-inner {
    gap: 10px;
  }

  .announcement-inner > span {
    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
  }


  /* Brand */

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 17px;
    letter-spacing: .3px;
  }

  .brand-text span {
    font-size: 7px;
    letter-spacing: 1px;
  }


  /* Hero */

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 50px;

    letter-spacing: -3px;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 13px;
  }

  .hero-proof strong {
    font-size: 10px;
  }

  .hero-proof small {
    font-size: 8px;
  }


  /* Hero Visual */

  .hero-visual {
    height: 390px;
  }

  .browser-card {
    height: 300px;
  }

  .browser-content {
    height: 228px;
  }

  .mini-main {
    padding: 28px 20px;
  }

  .mini-main h3 {
    font-size: 27px;
  }

  .floating-note {
    font-size: 8px;
    padding: 9px;
  }

  .note-a {
    left: -4px;
  }

  .note-b {
    right: -4px;
  }

  .logo-badge {
    width: 90px;
    height: 58px;
  }


  /* Blue Strip */

  .strip-grid {
    gap: 14px;

    justify-content: flex-start;

    overflow: hidden;

    white-space: nowrap;

    font-size: 8px;
  }

  .strip-grid i {
    display: none;
  }


  /* Sections */

  .section,
  .work-section,
  .tools-section,
  .about-section,
  .process {
    padding: 80px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;

    gap: 16px;

    margin-bottom: 35px;
  }

  .section-heading h2,
  .about-section h2 {
    font-size: 45px;
  }


  /* Services */

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

  .service-card {
    min-height: 360px;
  }


  /* Portfolio */

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

  .project-screen {
    height: 290px;
  }

  .preview-overlay {
    opacity: 1;

    height: 35%;

    padding-bottom: 18px;
  }

  .view-demo {
    padding: 10px 15px;

    font-size: 10px;
  }


  /* Business Hub */

  .biz-ui {
    padding: 20px;
  }

  .ui-side {
    width: 45px;
  }

  .ui-body {
    padding: 20px;
  }

  .ui-body h3 {
    font-size: 22px;
  }


  /* Tools */

  .tool-row {
    grid-template-columns:
      30px 43px 1fr 18px;

    gap: 10px;
  }

  .tool-row h3 {
    font-size: 15px;
  }

  .tool-row p {
    font-size: 9px;
  }

  .idea-box {
    flex-direction: column;

    align-items: flex-start;
  }


  /* About */

  .about-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  /* Process */

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


  /* Contact */

  .contact-box {
    grid-template-columns: 1fr;

    padding: 30px;

    gap: 28px;
  }

  .contact-logo {
    width: 150px;
    height: 150px;
  }

  .contact h2 {
    font-size: 42px;
  }


  /* Footer */

  .footer-top {
    padding: 35px 0;

    flex-direction: column;

    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 7px;
  }
}


/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media (max-width: 400px) {

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text span {
    font-size: 6px;
    letter-spacing: .8px;
  }

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

  .hero-proof {
    gap: 9px;
  }

  .hero-proof strong {
    font-size: 9px;
  }

  .hero-proof small {
    font-size: 7px;
  }
}
