/* =========================
   MONTNOIR CREATION
   GLOBAL STYLE
========================= */

:root {
  --orange: #ff6500;
  --orange-dark: #e95600;
  --black: #171717;
  --dark-gray: #333333;
  --gray: #777777;
  --light-gray: #f5f5f5;
  --border: #e9e9e9;
  --white: #ffffff;

  --container: 1180px;
  --radius: 20px;

  --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}


/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: 155px;
  max-height: 68px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu > a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-gray);
  transition: 0.25s ease;
}

.nav-menu > a:not(.btn-nav)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.25s ease;
}

.nav-menu > a:hover,
.nav-menu > a.active {
  color: var(--orange);
}

.nav-menu > a:hover::after,
.nav-menu > a.active::after {
  width: 100%;
}

.btn-nav {
  padding: 12px 19px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(255, 101, 0, 0.25);
}

.btn-nav:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 25px;
  color: var(--black);
  cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;
  padding: 110px 0 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 101, 0, 0.11), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 101, 0, 0.12);
  border-radius: 50%;
  right: -180px;
  top: -150px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  background: rgba(255, 101, 0, 0.035);
  border-radius: 50%;
  left: -120px;
  bottom: -140px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-label,
.section-label {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.hero-text h1 {
  max-width: 650px;
  font-size: clamp(45px, 6vw, 78px);
  line-height: 1.03;
  letter-spacing: -3px;
  margin-bottom: 25px;
}

.hero-text h1 span {
  color: var(--orange);
}

.hero-text > p {
  max-width: 620px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 35px;
}

.btn-primary,
.btn-secondary,
.btn-white {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(255, 101, 0, 0.22);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-primary i {
  transition: 0.25s ease;
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
  color: var(--dark-gray);
  font-size: 14px;
  font-weight: 700;
}

.hero-features div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-features i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 101, 0, 0.1);
  color: var(--orange);
  font-size: 10px;
}


/* =========================
   HERO MOCKUP
========================= */

.hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.browser-window {
  width: 100%;
  max-width: 570px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.browser-top {
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: #f3f3f3;
  border-bottom: 1px solid #e7e7e7;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfcfcf;
}

.browser-dots span:first-child {
  background: var(--orange);
}

.browser-url {
  flex: 1;
  background: var(--white);
  border-radius: 7px;
  padding: 7px 14px;
  text-align: center;
  font-size: 11px;
  color: #999;
}

.browser-content {
  min-height: 365px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(255, 101, 0, 0.035), transparent 50%),
    #fff;
}

.mock-header {
  width: 100%;
  height: 18px;
  border-radius: 20px;
  background: #ededed;
  margin-bottom: 55px;
}

.mock-title {
  width: 72%;
  height: 34px;
  border-radius: 8px;
  background: var(--black);
  margin-bottom: 18px;
}

.mock-text {
  width: 83%;
  height: 11px;
  border-radius: 10px;
  background: #dddddd;
  margin-bottom: 10px;
}

.mock-text.short {
  width: 56%;
}

.mock-button {
  width: 130px;
  height: 42px;
  border-radius: 8px;
  background: var(--orange);
  margin-top: 28px;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.mock-cards div {
  height: 82px;
  border-radius: 13px;
  background: #f1f1f1;
}

.mock-cards div:nth-child(2) {
  background: rgba(255, 101, 0, 0.11);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 180px;
  padding: 15px 17px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.floating-card i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 101, 0, 0.1);
  color: var(--orange);
  border-radius: 10px;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 14px;
}

.floating-card span {
  color: var(--gray);
  font-size: 12px;
}

.floating-card-one {
  left: -25px;
  bottom: 60px;
}

.floating-card-two {
  right: -15px;
  top: 75px;
}


/* =========================
   SECTION HEADINGS
========================= */

.section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading h2,
.why-content h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.14;
  letter-spacing: -1.8px;
}

.section-heading h2 span,
.why-content h2 span {
  color: var(--orange);
}

.section-heading > p {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--gray);
  font-size: 17px;
}


/* =========================
   SERVICES
========================= */

.services-section {
  padding: 105px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 101, 0, 0.35);
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
  border-radius: 14px;
  background: rgba(255, 101, 0, 0.1);
  color: var(--orange);
  font-size: 23px;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.service-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
}

.service-card > a:not(.service-cta) {
  position: absolute;
  left: 34px;
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-weight: 800;
  font-size: 14px;
}

.service-card > a i {
  transition: 0.25s ease;
}

.service-card > a:hover i {
  transform: translateX(4px);
}

.service-card-highlight {
  color: var(--white);
  border-color: var(--black);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 101, 0, 0.28), transparent 38%),
    var(--black);
}

.service-card-highlight:hover {
  border-color: var(--black);
}

.service-card-highlight p {
  color: #c5c5c5;
}

.mini-label {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.service-cta {
  position: absolute;
  bottom: 30px;
  left: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 800;
}


/* =========================
   WHY US
========================= */

.why-section {
  padding: 110px 0;
  background: var(--light-gray);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 85px;
  align-items: center;
}

.why-content > p {
  max-width: 630px;
  margin-top: 20px;
  color: var(--gray);
  font-size: 17px;
}

.why-list {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.035);
}

.why-number {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.why-item h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.why-item p {
  color: var(--gray);
  font-size: 14px;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-card {
  min-height: 180px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.stat-card:nth-child(2),
.stat-card:nth-child(3) {
  background: var(--black);
  color: var(--white);
}

.stat-card strong {
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -2px;
}

.stat-card span {
  margin-top: 12px;
  color: var(--gray);
  font-size: 14px;
  font-weight: 700;
}

.stat-card:nth-child(2) span,
.stat-card:nth-child(3) span {
  color: #bdbdbd;
}


/* =========================
   PROCESS
========================= */

.process-section {
  padding: 110px 0;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 56px;
  height: 1px;
  background: #e7e7e7;
  z-index: 0;
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 30px 24px;
  text-align: center;
}

.process-card > span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 19px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.process-card i {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(255, 101, 0, 0.09);
  color: var(--orange);
  font-size: 24px;
}

.process-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--gray);
  font-size: 14px;
}


/* =========================
   CTA
========================= */

.cta-section {
  padding: 35px 0 95px;
}

.cta-content {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-radius: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 30%, rgba(255, 101, 0, 0.38), transparent 32%),
    var(--black);
}

.cta-content::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-content > div,
.cta-content > a {
  position: relative;
  z-index: 2;
}

.cta-content span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 900;
}

.cta-content h2 {
  max-width: 650px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -1.5px;
}

.cta-content p {
  margin-top: 17px;
  color: #bdbdbd;
}

.btn-white {
  flex-shrink: 0;
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  color: var(--orange);
  transform: translateY(-2px);
}


/* =========================
   FOOTER
========================= */

.footer {
  padding-top: 75px;
  color: #d0d0d0;
  background: #111111;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 65px;
}

.footer-brand img {
  width: 165px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 8px;
  padding: 4px;
}

.footer-brand p {
  max-width: 310px;
  color: #9f9f9f;
  font-size: 14px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column h4 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 15px;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #999999;
  font-size: 14px;
  transition: 0.2s ease;
}

.footer-column a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  min-height: 70px;
  display: flex;
  align-items: center;
}

.footer-bottom p {
  color: #777;
  font-size: 13px;
}


/* =========================
   WHATSAPP
========================= */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 29px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.42);
}


/* =========================
   RESPONSIVE - TABLET
========================= */

@media (max-width: 1050px) {

  .nav-menu {
    gap: 18px;
  }

  .nav-menu > a {
    font-size: 14px;
  }

  .hero-content {
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    gap: 45px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}


/* =========================
   MOBILE NAV
========================= */

@media (max-width: 850px) {

  .navbar {
    min-height: 76px;
  }

  .logo img {
    width: 135px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 4%;
    border-top: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu > a {
    padding: 14px 5px;
  }

  .nav-menu > a:not(.btn-nav)::after {
    display: none;
  }

  .btn-nav {
    margin-top: 9px;
    text-align: center;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text > p {
    margin-inline: auto;
  }

  .hero-buttons,
  .hero-features {
    justify-content: center;
  }

  .hero-visual {
    min-height: 450px;
  }

  .browser-window {
    max-width: 630px;
    transform: none;
  }

  .floating-card-one {
    left: 10px;
  }

  .floating-card-two {
    right: 10px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-content {
    text-align: center;
  }

  .why-content > p {
    margin-inline: auto;
  }

  .why-item {
    text-align: left;
  }

  .cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 620px) {

  :root {
    --radius: 16px;
  }

  .hero {
    padding: 62px 0 70px;
  }

  .hero-text h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .hero-text > p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-features {
    gap: 13px;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    min-height: 385px;
  }

  .browser-content {
    padding: 24px;
    min-height: 300px;
  }

  .floating-card {
    min-width: auto;
    padding: 10px 12px;
  }

  .floating-card i {
    width: 36px;
    height: 36px;
  }

  .floating-card-one {
    left: -3px;
    bottom: 25px;
  }

  .floating-card-two {
    right: -3px;
    top: 50px;
  }

  .services-section,
  .why-section,
  .process-section {
    padding: 75px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 310px;
  }

  .why-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card {
    min-height: 150px;
    padding: 20px;
  }

  .stat-card strong {
    font-size: 34px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding-bottom: 70px;
  }

  .cta-content {
    padding: 42px 28px;
    border-radius: 20px;
  }

  .btn-white {
    width: 100%;
  }

  .footer {
    padding-top: 55px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom .container {
    justify-content: center;
    text-align: center;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    right: 18px;
    bottom: 18px;
    font-size: 26px;
  }
}
/* =========================
   PAGE HERO
========================= */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 90px;
  text-align: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 101, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 1px solid rgba(255, 101, 0, 0.12);
  right: -130px;
  top: -150px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-inline: auto;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 67px);
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.page-hero h1 span {
  color: var(--orange);
}

.page-hero p {
  max-width: 680px;
  margin: 23px auto 0;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.8;
}


/* =========================
   SERVICE DETAILS
========================= */

.service-details-section {
  padding: 105px 0;
}

.service-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.service-detail-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  transition: 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(255, 101, 0, 0.35);
}

.service-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.service-detail-top > span {
  color: #d5d5d5;
  font-size: 35px;
  font-weight: 900;
}

.service-icon.large {
  width: 64px;
  height: 64px;
  margin: 0;
  font-size: 25px;
}

.service-detail-card h2 {
  margin-bottom: 15px;
  font-size: 27px;
}

.service-detail-card > p {
  margin-bottom: 25px;
  color: var(--gray);
  line-height: 1.8;
}

.service-detail-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin-bottom: 32px;
}

.service-detail-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-gray);
  font-size: 14px;
}

.service-detail-card li i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 101, 0, 0.1);
  color: var(--orange);
  font-size: 10px;
}

.service-detail-card > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 800;
  font-size: 14px;
}

.service-detail-card > a i {
  transition: 0.25s ease;
}

.service-detail-card > a:hover i {
  transform: translateX(4px);
}

.service-detail-dark {
  color: var(--white);
  border-color: var(--black);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 101, 0, 0.25), transparent 35%),
    var(--black);
}

.service-detail-dark > p {
  color: #bcbcbc;
}

.service-detail-dark li {
  color: #d5d5d5;
}

.service-detail-dark .service-detail-top > span {
  color: #444444;
}


/* =========================
   EXTRA SERVICES
========================= */

.extra-services-section {
  padding: 105px 0;
  background: var(--light-gray);
}

.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.extra-service {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 27px;
  border-radius: 17px;
  background: var(--white);
  transition: 0.25s ease;
}

.extra-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.extra-service > i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 101, 0, 0.1);
  color: var(--orange);
  font-size: 20px;
}

.extra-service h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.extra-service p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}


/* =========================
   SERVICES RESPONSIVE
========================= */

@media (max-width: 850px) {

  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .extra-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 620px) {

  .page-hero {
    padding: 75px 0 65px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .service-details-section,
  .extra-services-section {
    padding: 75px 0;
  }

  .service-detail-card {
    padding: 28px;
  }

  .extra-services-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   PROJECTS PAGE
========================= */

.projects-section {
  padding: 95px 0 110px;
}

.projects-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark-gray);
  padding: 11px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  transition: 0.3s ease;
}

.project-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 101, 0, 0.3);
  box-shadow: var(--shadow-md);
}

.project-card.hide {
  display: none;
}

.project-image {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #efefef;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.045);
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    transparent 60%
  );
  transition: 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  transition: 0.25s ease;
}

.project-overlay a:hover {
  transform: scale(1.08);
}

.project-content {
  padding: 28px;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.project-meta span:first-child {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.project-meta span:last-child {
  color: #aaa;
  font-size: 12px;
  font-weight: 700;
}

.project-content h2 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.3;
}

.project-content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.project-tags span {
  padding: 7px 11px;
  border-radius: 7px;
  background: var(--light-gray);
  color: var(--dark-gray);
  font-size: 11px;
  font-weight: 800;
}


/* =========================
   PROJECT RESPONSIVE
========================= */

@media (max-width: 850px) {

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-image {
    height: 390px;
  }
}


@media (max-width: 620px) {

  .projects-section {
    padding: 70px 0;
  }

  .projects-filter {
    justify-content: flex-start;
    margin-bottom: 35px;
  }

  .filter-btn {
    padding: 9px 15px;
    font-size: 12px;
  }

  .project-image {
    height: 240px;
  }

  .project-content {
    padding: 22px;
  }

  .project-content h2 {
    font-size: 20px;
  }
}
/* =========================
   ABOUT PAGE
========================= */

.about-intro {
  padding: 110px 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 85px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-main-box {
  position: relative;
  width: 100%;
  max-width: 510px;
  height: 450px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(255, 101, 0, 0.22),
      transparent 35%
    ),
    #171717;
  box-shadow: var(--shadow-md);
}

.about-main-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -90px;
  right: -70px;
}

.about-main-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 101, 0, 0.25);
  border-radius: 50%;
  left: -60px;
  bottom: -60px;
}

.about-logo-box {
  position: absolute;
  top: 55px;
  left: 50%;
  width: 245px;
  transform: translateX(-50%);
  padding: 20px;
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.about-logo-box img {
  width: 100%;
}

.about-code-lines {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 65px;
  display: grid;
  gap: 13px;
}

.about-code-lines span {
  display: block;
  height: 9px;
  border-radius: 20px;
  background: #343434;
}

.about-code-lines span:nth-child(1) {
  width: 75%;
}

.about-code-lines span:nth-child(2) {
  width: 52%;
  background: var(--orange);
}

.about-code-lines span:nth-child(3) {
  width: 85%;
}

.about-code-lines span:nth-child(4) {
  width: 62%;
}

.about-code-lines span:nth-child(5) {
  width: 38%;
  background: rgba(255, 101, 0, 0.6);
}

.about-floating-card {
  position: absolute;
  right: -20px;
  bottom: 25px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.about-floating-card i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 11px;
  color: var(--orange);
  background: rgba(255, 101, 0, 0.1);
}

.about-floating-card strong,
.about-floating-card span {
  display: block;
}

.about-floating-card strong {
  font-size: 14px;
}

.about-floating-card span {
  margin-top: 2px;
  color: var(--gray);
  font-size: 12px;
}

.about-content h2,
.mission-content h2 {
  font-size: clamp(35px, 4.5vw, 55px);
  line-height: 1.14;
  letter-spacing: -2px;
}

.about-content h2 span,
.mission-content h2 span {
  color: var(--orange);
}

.about-content > p {
  margin-top: 20px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.9;
}

.about-content .btn-primary {
  margin-top: 30px;
}


/* =========================
   VALUES
========================= */

.values-section {
  padding: 105px 0;
  background: var(--light-gray);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  min-height: 285px;
  padding: 30px;
  border-radius: 19px;
  background: var(--white);
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 14px;
  color: var(--orange);
  background: rgba(255, 101, 0, 0.1);
  font-size: 22px;
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.value-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
}


/* =========================
   MISSION
========================= */

.mission-section {
  padding: 110px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 85px;
  align-items: center;
}

.mission-content > p {
  max-width: 670px;
  margin-top: 20px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.9;
}

.mission-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.mission-list > div {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 700;
  font-size: 14px;
}

.mission-list i {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 101, 0, 0.1);
  color: var(--orange);
  font-size: 11px;
}

.mission-box {
  position: relative;
  overflow: hidden;
  padding: 42px;
  min-height: 390px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(255, 101, 0, 0.32),
      transparent 38%
    ),
    var(--black);
}

.mission-box::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: -100px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mission-box-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-box-top i {
  font-size: 21px;
}

.mission-box h3 {
  max-width: 420px;
  font-size: 30px;
  line-height: 1.25;
}

.mission-box p {
  margin-top: 17px;
  color: #bdbdbd;
  line-height: 1.8;
  font-size: 15px;
}

.mission-box a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}


/* =========================
   ABOUT PROCESS
========================= */

.about-process-section {
  padding: 105px 0;
  background: var(--light-gray);
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-process-grid article {
  padding: 30px;
  border-radius: 17px;
  background: var(--white);
  border-top: 3px solid transparent;
  transition: 0.25s ease;
}

.about-process-grid article:hover {
  transform: translateY(-5px);
  border-top-color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.about-process-grid article > span {
  display: block;
  margin-bottom: 35px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

.about-process-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.about-process-grid p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
}


/* =========================
   ABOUT RESPONSIVE
========================= */

@media (max-width: 950px) {

  .about-intro-grid,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-visual {
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

  .values-grid,
  .about-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 620px) {

  .about-intro,
  .values-section,
  .mission-section,
  .about-process-section {
    padding: 75px 0;
  }

  .about-visual {
    min-height: 420px;
  }

  .about-main-box {
    height: 375px;
  }

  .about-logo-box {
    width: 200px;
  }

  .about-floating-card {
    right: 5px;
  }

  .values-grid,
  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .mission-box {
    padding: 30px;
  }

  .mission-box h3 {
    font-size: 26px;
  }
}
/* =========================
   CONTACT PAGE
========================= */

.contact-section {
  padding: 110px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.contact-intro {
  margin-top: 20px;
  max-width: 550px;
  color: var(--gray);
  line-height: 1.9;
}

.contact-info-list {
  display: grid;
  gap: 15px;
  margin-top: 38px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  transition: 0.25s ease;
}

.contact-info-card:hover {
  transform: translateX(5px);
  border-color: rgba(255, 101, 0, 0.35);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 13px;
  background: rgba(255, 101, 0, 0.1);
  color: var(--orange);
  font-size: 20px;
}

.contact-info-card span,
.contact-info-card strong {
  display: block;
}

.contact-info-card span {
  color: var(--gray);
  font-size: 12px;
  margin-bottom: 3px;
}

.contact-info-card strong {
  font-size: 15px;
}

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 25px;
  padding: 18px;
  border-radius: 12px;
  background: var(--light-gray);
}

.contact-note i {
  margin-top: 4px;
  color: var(--orange);
}

.contact-note p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.7;
}


/* =========================
   CONTACT FORM
========================= */

.contact-form-wrapper {
  padding: 42px;
  border-radius: 24px;
  background: var(--light-gray);
}

.contact-form-header > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.contact-form-header h2 {
  margin-top: 9px;
  font-size: 32px;
}

.contact-form-header p {
  margin-top: 8px;
  color: var(--gray);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--dark-gray);
  font-size: 13px;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dedede;
  outline: none;
  border-radius: 10px;
  background: var(--white);
  padding: 14px 15px;
  color: var(--black);
  transition: 0.2s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.08);
}

.contact-submit-btn {
  min-height: 55px;
  border: 0;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.contact-submit-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.contact-submit-btn i {
  font-size: 20px;
}


/* =========================
   QUICK CONTACT
========================= */

.contact-quick-section {
  padding: 95px 0;
  background: var(--light-gray);
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-quick-card {
  padding: 32px;
  border-radius: 18px;
  background: var(--white);
}

.contact-quick-card > i {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 13px;
  background: rgba(255, 101, 0, 0.1);
  color: var(--orange);
  font-size: 22px;
}

.contact-quick-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.contact-quick-card p {
  min-height: 50px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.contact-quick-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 19px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.contact-quick-card a i {
  transition: 0.2s ease;
}

.contact-quick-card a:hover i {
  transform: translateX(4px);
}


/* =========================
   CONTACT RESPONSIVE
========================= */

@media (max-width: 900px) {

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-quick-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 620px) {

  .contact-section,
  .contact-quick-section {
    padding: 75px 0;
  }

  .contact-form-wrapper {
    padding: 27px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-header h2 {
    font-size: 27px;
  }
}
/* =========================
   DEVIS PAGE
========================= */

.devis-section {
  padding: 110px 0;
  background: #f8f8f8;
}

.devis-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: start;
}


/* =========================
   DEVIS SIDEBAR
========================= */

.devis-sidebar {
  position: sticky;
  top: 115px;
}

.devis-sidebar h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.devis-sidebar > p {
  margin-top: 20px;
  color: var(--gray);
  line-height: 1.9;
}

.devis-benefits {
  display: grid;
  gap: 15px;
  margin-top: 35px;
}

.devis-benefits > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.devis-benefits i {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 101, 0, 0.11);
  color: var(--orange);
  font-size: 11px;
}

.devis-contact-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 35px;
  padding: 21px;
  border-radius: 15px;
  background: var(--black);
  color: var(--white);
}

.devis-contact-box > i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: #25d366;
  font-size: 24px;
}

.devis-contact-box span,
.devis-contact-box a {
  display: block;
}

.devis-contact-box span {
  color: #a9a9a9;
  font-size: 12px;
}

.devis-contact-box a {
  margin-top: 3px;
  color: var(--white);
  font-weight: 800;
}


/* =========================
   DEVIS FORM
========================= */

.devis-form-wrapper {
  padding: 45px;
  border-radius: 25px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.devis-form {
  display: grid;
  gap: 0;
}

.devis-form-section {
  padding: 0 0 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--border);
}

.devis-form-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.devis-form-title > span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.devis-form-title h3 {
  font-size: 21px;
}

.devis-form-title p {
  margin-top: 3px;
  color: var(--gray);
  font-size: 13px;
}


/* =========================
   CHOICES
========================= */

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.choice-card {
  position: relative;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-content {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  transition: 0.25s ease;
}

.choice-content i {
  margin-bottom: 17px;
  color: var(--orange);
  font-size: 23px;
}

.choice-content strong {
  font-size: 16px;
}

.choice-content small {
  margin-top: 6px;
  color: var(--gray);
  line-height: 1.55;
}

.choice-card:hover .choice-content {
  border-color: rgba(255, 101, 0, 0.45);
}

.choice-card input:checked + .choice-content {
  border-color: var(--orange);
  background: rgba(255, 101, 0, 0.055);
  box-shadow: 0 0 0 2px rgba(255, 101, 0, 0.08);
}


/* =========================
   CHECKBOXES
========================= */

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.checkbox-grid label {
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  color: var(--dark-gray);
  font-size: 13px;
  font-weight: 700;
}

.checkbox-grid input {
  width: 17px;
  height: 17px;
  accent-color: var(--orange);
}


/* =========================
   DEVIS SUBMIT
========================= */

.devis-submit-btn {
  min-height: 60px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  cursor: pointer;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  font-size: 15px;
  transition: 0.25s ease;
}

.devis-submit-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 101, 0, 0.22);
}

.devis-submit-btn i {
  font-size: 21px;
}

.devis-form-note {
  margin-top: 13px;
  text-align: center;
  color: #999;
  font-size: 12px;
}


/* =========================
   DEVIS RESPONSIVE
========================= */

@media (max-width: 950px) {

  .devis-grid {
    grid-template-columns: 1fr;
  }

  .devis-sidebar {
    position: static;
  }

}


@media (max-width: 650px) {

  .devis-section {
    padding: 75px 0;
  }

  .devis-form-wrapper {
    padding: 27px 19px;
  }

  .choice-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .choice-content {
    min-height: auto;
  }

}
/* =========================
   LANGUAGE SWITCHER
========================= */

.language-switcher {
  position: relative;
}

.language-current {
  height: 42px;
  padding: 0 12px;

  display: flex;
  align-items: center;
  gap: 7px;

  border: 1px solid var(--border);
  border-radius: 9px;

  background: var(--white);
  color: var(--dark-gray);

  font-size: 13px;
  font-weight: 800;

  cursor: pointer;
  transition: 0.25s ease;
}

.language-current:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.language-current > i:first-child {
  color: var(--orange);
}

.language-arrow {
  font-size: 9px;
  transition: 0.25s ease;
}

.language-switcher.open .language-arrow {
  transform: rotate(180deg);
}


/* DROPDOWN */

.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;

  width: 165px;

  padding: 7px;

  border: 1px solid var(--border);
  border-radius: 12px;

  background: var(--white);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.12);

  opacity: 0;
  visibility: hidden;

  transform: translateY(-5px);

  transition: 0.2s ease;

  z-index: 2000;
}

.language-switcher.open .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-dropdown button {
  width: 100%;

  padding: 10px 11px;

  display: flex;
  align-items: center;
  gap: 9px;

  border: 0;
  border-radius: 8px;

  background: transparent;
  color: var(--dark-gray);

  text-align: left;

  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.2s ease;
}

.language-dropdown button:hover {
  background: rgba(255, 101, 0, 0.08);
  color: var(--orange);
}

.language-dropdown button.active {
  background: var(--orange);
  color: var(--white);
}


/* MOBILE */

@media (max-width: 850px) {

  .language-switcher {
    width: 100%;
    margin: 8px 0;
  }

  .language-current {
    width: 100%;
    justify-content: center;
  }

  .language-dropdown {
    position: static;

    width: 100%;

    margin-top: 7px;

    display: none;

    opacity: 1;
    visibility: visible;

    transform: none;

    box-shadow: none;
  }

  .language-switcher.open .language-dropdown {
    display: block;
  }

}
/* =========================================================
   MONTNOIR CREATION
   FINAL RESPONSIVE SYSTEM
   Desktop / Tablet / Mobile
========================================================= */


/* =========================================================
   GLOBAL SAFETY
========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

input,
select,
textarea,
button {
  max-width: 100%;
}

a,
p,
h1,
h2,
h3,
h4,
span,
strong,
small,
label {
  overflow-wrap: break-word;
}

.container {
  width: min(92%, var(--container));
}


/* =========================================================
   MEDIUM DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1150px) {

  .container {
    width: 94%;
  }


  /* HEADER */

  .navbar {
    gap: 18px;
  }

  .nav-menu {
    gap: 17px;
  }

  .nav-menu > a {
    font-size: 13px;
  }

  .btn-nav {
    padding: 11px 14px;
  }

  .language-current {
    padding-inline: 10px;
  }


  /* HOME HERO */

  .hero-content {
    gap: 45px;
  }

  .hero-text h1 {
    font-size: clamp(47px, 5.7vw, 68px);
  }


  /* SERVICES */

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  /* WHY */

  .why-grid {
    gap: 55px;
  }


  /* FOOTER */

  .footer-grid {
    gap: 40px;
  }


  /* ABOUT */

  .about-intro-grid,
  .mission-grid {
    gap: 55px;
  }


  /* CONTACT */

  .contact-grid {
    gap: 45px;
  }


  /* DEVIS */

  .devis-grid {
    gap: 40px;
  }

}


/* =========================================================
   TABLET / MOBILE NAVIGATION
========================================================= */

@media (max-width: 900px) {

  /* =========================
     HEADER
  ========================= */

  .header {
    position: sticky;
    top: 0;
    z-index: 5000;
  }

  .navbar {
    min-height: 74px;
    position: relative;
  }

  .logo img {
    width: 132px;
    max-height: 58px;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: var(--light-gray);

    font-size: 21px;
  }


  /* =========================
     MOBILE MENU
  ========================= */

  .nav-menu {
    position: absolute;

    top: 74px;
    left: 0;
    right: 0;

    width: 100%;

    max-height: calc(100vh - 74px);
    overflow-y: auto;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding:
      12px
      max(4%, calc((100% - var(--container)) / 2))
      20px;

    border-top: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.99);

    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.09);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu > a {
    width: 100%;

    min-height: 48px;

    display: flex;
    align-items: center;

    padding: 10px 5px;

    border-bottom: 1px solid #eeeeee;

    font-size: 15px;
  }

  .nav-menu > a:not(.btn-nav)::after {
    display: none;
  }

  .nav-menu > a.active {
    color: var(--orange);
  }

  .btn-nav {
    width: 100%;

    min-height: 50px;

    margin-top: 10px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    border-bottom: 0 !important;
  }


  /* =========================
     LANGUAGE
  ========================= */

  .language-switcher {
    width: 100%;
    margin: 10px 0 2px;
  }

  .language-current {
    width: 100%;
    height: 48px;

    justify-content: space-between;

    padding: 0 15px;
  }

  .language-dropdown {
    position: static;

    width: 100%;

    margin-top: 6px;

    display: none;

    opacity: 1;
    visibility: visible;
    transform: none;

    box-shadow: none;
  }

  .language-switcher.open .language-dropdown {
    display: block;
  }

  .language-dropdown button {
    min-height: 44px;
  }


  /* =====================================================
     HOME HERO
  ===================================================== */

  .hero {
    padding: 75px 0 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-text {
    max-width: 760px;

    margin-inline: auto;

    text-align: center;
  }

  .hero-text h1 {
    max-width: 760px;

    margin-inline: auto;

    font-size: clamp(45px, 8vw, 66px);
  }

  .hero-text > p {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;

    max-width: 700px;

    min-height: 430px;

    margin-inline: auto;
  }

  .browser-window {
    max-width: 620px;
    transform: none;
  }

  .floating-card-one {
    left: 5px;
  }

  .floating-card-two {
    right: 5px;
  }


  /* =====================================================
     PAGE HERO
  ===================================================== */

  .page-hero {
    padding: 80px 0 70px;
  }

  .page-hero-content {
    max-width: 760px;
  }

  .page-hero h1 {
    font-size: clamp(40px, 8vw, 58px);
  }


  /* =====================================================
     SERVICES
  ===================================================== */

  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .extra-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-card {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }


  /* =====================================================
     WHY
  ===================================================== */

  .why-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .why-content {
    max-width: 760px;

    margin-inline: auto;

    text-align: center;
  }

  .why-content > p {
    margin-inline: auto;
  }

  .why-list {
    max-width: 720px;

    margin-inline: auto;
    margin-top: 42px;
  }

  .why-item {
    text-align: left;
  }

  .why-stats {
    max-width: 650px;

    width: 100%;

    margin-inline: auto;
  }


  /* =====================================================
     PROCESS
  ===================================================== */

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }


  /* =====================================================
     PROJECTS
  ===================================================== */

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    max-width: 760px;

    width: 100%;

    margin-inline: auto;
  }

  .project-image {
    height: 390px;
  }

  .project-overlay {
    opacity: 1;

    background:
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.32),
        transparent 45%
      );
  }


  /* =====================================================
     ABOUT
  ===================================================== */

  .about-intro-grid,
  .mission-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .about-visual {
    width: 100%;

    max-width: 620px;

    margin-inline: auto;
  }

  .about-content,
  .mission-content {
    max-width: 760px;

    width: 100%;

    margin-inline: auto;
  }

  .values-grid,
  .about-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-box {
    max-width: 700px;

    width: 100%;

    margin-inline: auto;
  }


  /* =====================================================
     CONTACT
  ===================================================== */

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .contact-info,
  .contact-form-wrapper {
    width: 100%;

    max-width: 760px;

    margin-inline: auto;
  }

  .contact-quick-grid {
    grid-template-columns: 1fr;
  }

  .contact-quick-card {
    max-width: 760px;

    width: 100%;

    margin-inline: auto;
  }


  /* =====================================================
     DEVIS
  ===================================================== */

  .devis-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .devis-sidebar {
    position: static;

    max-width: 760px;

    width: 100%;

    margin-inline: auto;
  }

  .devis-form-wrapper {
    max-width: 760px;

    width: 100%;

    margin-inline: auto;
  }


  /* =====================================================
     CTA
  ===================================================== */

  .cta-content {
    min-height: auto;

    flex-direction: column;
    align-items: flex-start;

    gap: 30px;
  }


  /* =====================================================
     FOOTER
  ===================================================== */

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 42px;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px) {

  :root {
    --radius: 15px;
  }


  /* =========================
     GLOBAL
  ========================= */

  .container {
    width: 91%;
  }

  body {
    font-size: 15px;
  }


  /* =========================
     HEADER
  ========================= */

  .navbar {
    min-height: 68px;
  }

  .logo img {
    width: 116px;
    max-height: 52px;
  }

  .mobile-menu-btn {
    width: 42px;
    height: 42px;
  }

  .nav-menu {
    top: 68px;

    max-height: calc(100vh - 68px);

    padding-inline: 4.5%;
  }


  /* =========================
     HOME HERO
  ========================= */

  .hero {
    padding: 52px 0 65px;
  }

  .hero-text h1 {
    font-size: clamp(38px, 11vw, 48px);

    line-height: 1.06;

    letter-spacing: -1.8px;
  }

  .hero-label,
  .section-label {
    margin-bottom: 13px;

    font-size: 10px;
    letter-spacing: 1.7px;
  }

  .hero-text > p {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-buttons {
    width: 100%;

    flex-direction: column;

    gap: 11px;
  }

  .hero-buttons a,
  .btn-primary,
  .btn-secondary,
  .btn-white {
    width: 100%;

    min-height: 51px;

    padding-inline: 18px;
  }

  .hero-features {
    flex-direction: column;

    align-items: center;

    gap: 11px;
  }


  /* =========================
     HERO MOCKUP
  ========================= */

  .hero-visual {
    min-height: 330px;
  }

  .browser-window {
    border-radius: 14px;
  }

  .browser-top {
    height: 41px;

    padding: 0 10px;

    gap: 10px;
  }

  .browser-dots {
    gap: 4px;
  }

  .browser-dots span {
    width: 8px;
    height: 8px;
  }

  .browser-url {
    min-width: 0;

    overflow: hidden;

    padding: 6px 8px;

    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .browser-content {
    min-height: 250px;

    padding: 20px;
  }

  .mock-header {
    margin-bottom: 35px;
  }

  .mock-title {
    height: 25px;
  }

  .mock-button {
    width: 105px;
    height: 36px;
  }

  .mock-cards {
    gap: 7px;

    margin-top: 30px;
  }

  .mock-cards div {
    height: 54px;

    border-radius: 9px;
  }

  .floating-card {
    min-width: 130px;

    max-width: 160px;

    gap: 8px;

    padding: 8px 9px;

    border-radius: 10px;
  }

  .floating-card i {
    width: 31px;
    height: 31px;

    font-size: 13px;
  }

  .floating-card strong {
    font-size: 10px;
  }

  .floating-card span {
    font-size: 9px;
  }

  .floating-card-one {
    left: -3px;
    bottom: 12px;
  }

  .floating-card-two {
    right: -3px;
    top: 33px;
  }


  /* =========================
     SECTION HEADINGS
  ========================= */

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2,
  .why-content h2,
  .about-content h2,
  .mission-content h2,
  .contact-info h2,
  .devis-sidebar h2 {
    font-size: clamp(30px, 9vw, 39px);

    line-height: 1.13;

    letter-spacing: -1px;
  }

  .section-heading > p,
  .page-hero p {
    font-size: 15px;
  }


  /* =========================
     PAGE HERO
  ========================= */

  .page-hero {
    padding: 58px 0 52px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 44px);

    line-height: 1.08;

    letter-spacing: -1.4px;
  }


  /* =========================
     SECTIONS
  ========================= */

  .services-section,
  .why-section,
  .process-section,
  .service-details-section,
  .extra-services-section,
  .projects-section,
  .about-intro,
  .values-section,
  .mission-section,
  .about-process-section,
  .contact-section,
  .contact-quick-section,
  .devis-section {
    padding: 65px 0;
  }


  /* =========================
     SERVICES HOME
  ========================= */

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 300px;

    padding: 27px;

    padding-bottom: 73px;
  }

  .service-card > a:not(.service-cta),
  .service-cta {
    left: 27px;
    bottom: 25px;
  }


  /* =========================
     SERVICES PAGE
  ========================= */

  .service-detail-card {
    padding: 25px 21px;

    border-radius: 17px;
  }

  .service-detail-card h2 {
    font-size: 23px;
  }

  .service-detail-top > span {
    font-size: 29px;
  }

  .service-icon.large {
    width: 55px;
    height: 55px;

    font-size: 21px;
  }

  .service-detail-card li {
    align-items: flex-start;
  }

  .extra-services-grid {
    grid-template-columns: 1fr;
  }

  .extra-service {
    padding: 21px 18px;
  }


  /* =========================
     WHY
  ========================= */

  .why-list {
    gap: 14px;
  }

  .why-item {
    gap: 13px;

    padding: 16px;
  }

  .why-number {
    min-width: 40px;
    height: 40px;

    border-radius: 10px;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
  }

  .stat-card {
    min-height: 125px;

    padding: 16px;

    border-radius: 14px;
  }

  .stat-card strong {
    font-size: 29px;
    letter-spacing: -1px;
  }

  .stat-card span {
    font-size: 12px;
  }


  /* =========================
     PROCESS
  ========================= */

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 20px 10px;
  }


  /* =========================
     PROJECTS
  ========================= */

  .projects-filter {
    justify-content: flex-start;

    flex-wrap: nowrap;

    overflow-x: auto;

    margin-inline: -4.5%;

    padding: 0 4.5% 8px;

    scrollbar-width: none;
  }

  .projects-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;

    padding: 9px 14px;

    font-size: 12px;
  }

  .project-image {
    height: 235px;
  }

  .project-content {
    padding: 20px;
  }

  .project-content h2 {
    font-size: 20px;
  }

  .project-content p {
    line-height: 1.7;
  }

  .project-overlay {
    padding: 14px;
  }

  .project-overlay a {
    width: 42px;
    height: 42px;
  }


  /* =========================
     ABOUT
  ========================= */

  .about-visual {
    min-height: 350px;
  }

  .about-main-box {
    height: 330px;

    border-radius: 20px;
  }

  .about-logo-box {
    top: 40px;

    width: 175px;

    padding: 15px;
  }

  .about-code-lines {
    left: 28px;
    right: 28px;
    bottom: 42px;
  }

  .about-floating-card {
    right: 0;
    bottom: 4px;

    max-width: 205px;

    padding: 11px 12px;
  }

  .about-floating-card i {
    width: 35px;
    height: 35px;
  }

  .values-grid,
  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;

    padding: 25px;
  }

  .mission-list > div {
    align-items: flex-start;
  }

  .mission-box {
    min-height: auto;

    padding: 28px 22px;
  }

  .mission-box h3 {
    font-size: 25px;
  }


  /* =========================
     CONTACT
  ========================= */

  .contact-grid {
    gap: 42px;
  }

  .contact-info-list {
    margin-top: 28px;
  }

  .contact-info-card {
    gap: 12px;

    padding: 16px;
  }

  .contact-info-icon {
    width: 44px;
    height: 44px;

    font-size: 17px;
  }

  .contact-info-card strong {
    font-size: 14px;
  }

  .contact-form-wrapper {
    padding: 24px 17px;

    border-radius: 17px;
  }

  .contact-form-header h2 {
    font-size: 27px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 48px;

    padding: 13px 12px;

    font-size: 16px;
  }

  .form-group textarea {
    min-height: 145px;
  }

  .contact-quick-card {
    padding: 24px 20px;
  }

  .contact-quick-card p {
    min-height: auto;
  }


  /* =========================
     DEVIS
  ========================= */

  .devis-grid {
    gap: 38px;
  }

  .devis-contact-box {
    padding: 17px;
  }

  .devis-form-wrapper {
    padding: 24px 16px;

    border-radius: 18px;
  }

  .devis-form-section {
    padding-bottom: 30px;

    margin-bottom: 30px;
  }

  .devis-form-title {
    gap: 12px;

    margin-bottom: 22px;
  }

  .devis-form-title > span {
    width: 35px;
    height: 35px;
  }

  .devis-form-title h3 {
    font-size: 19px;
  }

  .choice-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .choice-content {
    min-height: auto;

    padding: 18px;
  }

  .choice-content i {
    margin-bottom: 12px;
  }

  .checkbox-grid label {
    min-height: 49px;
  }

  .devis-submit-btn {
    min-height: 55px;
  }


  /* =========================
     CTA
  ========================= */

  .cta-section {
    padding: 25px 0 65px;
  }

  .cta-content {
    min-height: auto;

    padding: 35px 23px;

    border-radius: 18px;

    gap: 25px;
  }

  .cta-content h2 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .cta-content p {
    font-size: 14px;
  }


  /* =========================
     FOOTER
  ========================= */

  .footer {
    padding-top: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 31px;

    padding-bottom: 45px;
  }

  .footer-brand img {
    width: 145px;
  }

  .footer-column {
    gap: 10px;
  }

  .footer-bottom .container {
    min-height: 62px;

    justify-content: center;

    padding-block: 15px;

    text-align: center;
  }


  /* =========================
     WHATSAPP
  ========================= */

  .whatsapp-float {
    width: 52px;
    height: 52px;

    right: 14px;
    bottom: 14px;

    font-size: 24px;
  }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 390px) {

  .container {
    width: 90%;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .page-hero h1 {
    font-size: 33px;
  }

  .hero-visual {
    min-height: 305px;
  }

  .floating-card {
    max-width: 140px;
  }

  .floating-card-two {
    top: 26px;
  }

  .why-stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 110px;
  }

  .about-main-box {
    height: 300px;
  }

  .about-logo-box {
    width: 155px;
  }

  .about-floating-card {
    max-width: 180px;
  }

  .devis-contact-box {
    align-items: flex-start;
  }

}