/* =============================================
   Viqsa Software Solutions - Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Clash+Grotesk:wght@400;500;600;700&display=swap');

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =============================================
   VARIABLES
   ============================================= */
:root {
  --orange: var(--text-brand, #D7923C);
  --orange-dark: #8D4B00;
  --orange-light: #F8B05E;
  --black: var(--text-primary, #121212);
  --dark: #1F1F1F;
  --white: #FFFFFF;
  --cream: #F5EBDE;
  --light-gray: #F3F3F3;
  --text-muted: rgba(18, 18, 18, 0.7);
  --orange-gradient: linear-gradient(359.26deg, #8D4B00 -24.88%, #F8B05E 124.51%);
  --container-max: 1400px;
  --hero-card-width: 415px;
  --hero-card-right: clamp(24px, 16.7vw, 320px);
  --hero-card-overlap: 52px;
  --hero-side-margin: 16px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 100px);
}

.navbar-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 70px;
  padding: 16px 52px;
  background: #FFFFFF24;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 22px 100%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 70px;
}

.nav-links--left {
  justify-content: flex-end;
}

.nav-links--right {
  justify-content: flex-start;
}

.nav-links a {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-self: center;
  flex-shrink: 0;
}

.nav-logo img {
  display: block;
  width: 110px;
  height: 46px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar.open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar.open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
}

.navbar.scrolled .navbar-bar {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(18, 18, 18, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled .nav-links a {
  color: #121212;
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--orange);
}

.navbar.scrolled .nav-hamburger span {
  background: #121212;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  margin: 13px 16px 0;
  border-radius: 30px;
  overflow: visible;
  height: var(--page-banner-height, 660px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  z-index: 0;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(102, 102, 102, 0) 100%),
    var(--hero-bg-url);
  background-size: 100% 100%, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  text-align: center;
  padding: 0 20px;
  max-width: 1200px;
  margin-top: 60px;
}

.hero-content h1 {
  margin-bottom: 12px;
}

.hero-subtitle {
  margin-bottom: 8px;
}

.hero-description {
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid #ffffff;
  border-radius: 13px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.48px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: inherit;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.hero-btn img {
  width: 20px;
  height: 20px;
}

/* Hero floating card (overlaps section break ~20% into About) */
.hero-float {
  position: absolute;
  right: var(--hero-card-right);
  bottom: calc(-1 * var(--hero-card-overlap));
  z-index: 5;
  width: var(--hero-card-width);
  height: 252px;
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 3;
  top: 50px;
  right: 0;
  box-sizing: border-box;
  width: 394px;
  height: 232px;
  border-radius: 15px;
  opacity: 1;
  background: #B19F6F99;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: visible;
  display: grid;
  grid-template-columns: 146px 1fr;
  grid-template-rows: 1fr 44px;
  padding: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

.hero-card-icon {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  margin-top: 17px;
  object-fit: contain;
  transform-origin: center center;
}

.hero-card-body {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding: 29px 0 0 0;
  min-width: 0;
}

.hero-card h3 {
  width: 205px;
  margin: 0;
}

.hero-card p {
  width: 202px;
  margin: 8px 0 0;
}

.hero-card-btn {
  grid-column: 1 / -1;
  grid-row: 2;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0 18px;
  background: var(--orange);
  border: 2.5px solid var(--orange);
  border-radius: 15px;
  color: #FFFFFF;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.hero-card-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.hero-card-btn-icon {
  font-size: 23px;
  line-height: 1;
}

/* Decorative arrow — in About section, tip points at hero card button */
.hero-arrow {
  position: absolute;
  top: 94px;
  right: 120px;
  z-index: 2;
  width: clamp(200px, 16vw, 280px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: calc(var(--hero-card-overlap) + 58px) 0 70px;
}

.about .container {
  position: relative;
  z-index: 3;
}


.section-title {
  text-align: center;
  margin: 0 0 25px;
}

.section-header .section-title {
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-images {
  border-radius: 16px;
  padding: 0.57px;
  /* background: linear-gradient(
    360deg,
    rgba(193, 118, 25, 0.1) -2.99%,
    #5b380c 50%,
    rgba(142, 87, 18, 0.55) 100%
  ); */
}

.about-images-inner {
  position: relative;
  min-height: 480px;
  padding: 28px 24px 32px;
  border-radius: 15px;
  /* background: linear-gradient(
    161.05deg,
    rgba(255, 236, 215, 0.4) 34.84%,
    #ffe3c0 97.57%
  ); */
  overflow: hidden;
}

.about-img-frame {
  position: absolute;
  top: 3px;
  left: 5px;
  width: min(52%, 280px);
  height: 68%;
  border: 2px solid rgba(245, 235, 222, 0.95);
  background: linear-gradient(
    161.05deg,
    rgba(255, 236, 215, 0.4) 34.84%,
    #ffe3c0 97.57%
  );
  border-radius: 6px;
  z-index: 0;
  pointer-events: none;
}

.about-img-main {
  position: relative;
  z-index: 1;
  display: block;
  width: 457px;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
}

.about-img-secondary {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(91, 56, 12, 0.14);
}

.about-img-bl {
  bottom: 32px;
  left: 20px;
  z-index: 3;
  width: 384.85px;
  height: 307.67px;
  object-position: 18% 72%;
}

.about-img-br {
  bottom: 0px;
  right: 0px;
  z-index: 2;
  width: 300px;
  height: 260px;
  object-position: center;
}

.about-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: #121212;
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}

.about-content p {
  margin-bottom: 24px;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.check-icon {
  width: 25px;
  height: 14px;
  flex-shrink: 0;
  display: block;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--orange-gradient);
  border-radius: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.2s;
  margin-bottom: 40px;
}

.about-btn:hover { opacity: 0.88; transform: translateY(-2px); }

.about-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(177, 159, 111, 0.6);
  padding-top: 17px;
}

.stat-text {
  flex: 0 1 auto;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #121212;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-number span {
  color: #D7923C;
  font-size: 22px;
}

.stat-label {
  font-size: 13px;
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.4;
}

.stat-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
  background: #fff;
}

.services-radial {
  margin: 0 auto;
  padding: 48px 0 56px;
}

.services-radial__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  gap: clamp(28px, 4vw, 52px) clamp(24px, 5vw, 72px);
  align-items: center;
  justify-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.services-radial__arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.services-hub {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  z-index: 3;
}

.services-hub__circle {
  width: clamp(148px, 17vw, 188px);
  height: clamp(148px, 17vw, 188px);
  border-radius: 50%;
  background: var(--orange-gradient);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-align: center;
  box-shadow:
    0 0 0 8px #ffffff,
    0 0 0 10px rgba(215, 146, 60, 0.34),
    0 16px 40px rgba(141, 75, 0, 0.16);
}

.services-hub__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.services-hub__label {
  color: #ffffff;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card--tl {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.service-card--tr {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.service-card--bl {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
}

.service-card--br {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
}

.container-2 {
padding-left: 120px;
padding-right: 120px;
margin-top: 20px;
padding-bottom: 20px;
}

.service-card {
  position: relative;
  padding: 0;
  min-height: 132px;
  width: min(100%, 400px);
  z-index: 2;
  transition: transform 0.25s;
}

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

.service-card:hover .service-card-inner {
  box-shadow: 0 18px 36px rgba(215, 146, 60, 0.13);
}

.service-card-inner {
  position: relative;
  padding: 20px 56px 20px 20px;
  border-radius: 4px;
  background: rgba(250, 250, 250, 1);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card--tr .service-card-inner,
.service-card--br .service-card-inner {
  background: rgba(255, 249, 242, 1);
}

/* Top-left L: 50% top + 50% left */
.service-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 50%;
  border-top: 1px solid rgba(215, 146, 60, 0.5);
  border-left: 1px solid rgba(215, 146, 60, 0.5);
  border-radius: 4px 0 0 0;
  pointer-events: none;
  z-index: 1;
}

/* Bottom-right L: 50% bottom + 50% right */
.service-card-inner::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  height: 50%;
  border-bottom: 1px solid rgba(215, 146, 60, 0.5);
  border-right: 1px solid rgba(215, 146, 60, 0.5);
  border-radius: 0 0 4px 0;
  pointer-events: none;
  z-index: 1;
}

.service-number {
  position: absolute;
  top: 50%;
  right: 0;
  width: 46px;
  height: 46px;
  background: var(--orange-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transform: translate(50%, -50%);
  box-shadow:
    0 0 0 4px #ffffff,
    0 0 0 6px rgba(215, 146, 60, 0.42),
    0 8px 18px rgba(141, 75, 0, 0.16);
  z-index: 2;
}

.service-icon {
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg,
.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin-top: 10px;
}

/* =============================================
   FEATURES STRIP
   ============================================= */
.features-strip {
  background: #F5EBDE;
  padding: 23px 0;
  margin: 40px 0 0;
  width: 100%;
}

.features-strip .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.features-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 72px;
  padding: 0 12px;
}

.feature-divider {
  width: 1px;
  height: 84px;
  background: rgba(215, 146, 60, 0.72);
  justify-self: center;
  align-self: center;
  flex-shrink: 0;
}

.feature-item .feature-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-item span {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
  color: rgba(18, 18, 18, 1);
  margin-top: 6px;
  display: block;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process {
  padding-top: 90px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.process-images {
  position: relative;
  height: 580px;
}

.process-img-main {
  position: absolute;
  left: 80px;
  top: 0;
  width: 487px;
  height: 566px;
  object-fit: cover;
}

.process-img-tl {
  position: absolute;
  left: 5px;
  bottom: 50px;
  width: 181.47px;
  height: 204.3px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.process-img-tr {
  position: absolute;
  right: -38px;
  top: 40px;
  width: 181.47px;
  height: 204.3px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.process-content-text {
  margin-top: 25px;
}

.process-content p {
  margin-bottom: 6px;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  padding: 58px 0 70px;
  background: #fff;
}

.why-stage {
  position: relative;
  margin: 0 auto;
  min-height: 698px;
  max-width: 100%;
  overflow: visible;
}

.why-us-image {
  display: block;
  width: 100%;
  max-width: 930px;
  height: 698px;
  margin-left: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.why-us-items {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  max-width: 564px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.why-item {
  position: relative;
  width: 100%;
  max-width: 564px;
  height: 97px;
  padding: 0 110px 0 57px;
  border: 0;
  background: transparent;
  color: #121212;
  display: flex;
  align-items: center;
  box-shadow: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  overflow: visible;
  transition: transform 0.2s ease;
}

.why-item.active {
  color: #ffffff;
}

.why-item:hover {
  transform: translateX(4px);
}

.why-item-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: fill;
  z-index: 0;
  pointer-events: none;
}

.why-item:not(.active) .why-item-bg {
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.25));
}

.why-item.active .why-item-bg {
  filter: drop-shadow(0 13px 10px rgba(162, 86, 0, 0.4));
}

.why-item-title {
  position: relative;
  z-index: 1;
}

.why-item-icon {
  position: absolute;
  z-index: 1;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  object-fit: contain;
  flex-shrink: 0;
  pointer-events: none;
}


.why-item.active .why-item-icon {
  filter: brightness(0) invert(1);
}

.why-item.active .why-item-title {
  color: #ffffff;
}

.why-item-title {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  color: #121212;
}

/* =============================================
   NEWSLETTER SECTION
   ============================================= */
.newsletter {
  height: clamp(268px, 25.64vw, 484px);
  margin: 0 16px 16px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #f5f5f5;
}

.newsletter-inner {
  position: relative;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(32px, 5vw, 92px) 0 clamp(18px, 2.2vw, 42px);
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 72px);
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.newsletter-image {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  flex-shrink: 0;
  width: auto;
  height: calc(100% + 24px);
  max-width: 42%;
  object-fit: contain;
  object-position: bottom left;
}

.newsletter-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: min(62%, 1040px);
  margin: 0 0 0 auto;
  padding: 12px 0;
  text-align: center;
}

.newsletter-content .tiny-label {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(12px, 1.15vw, 22px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(18, 18, 18, 0.9);
  margin: 0 auto 14px;
}

.newsletter-content h2 {
  margin: 0 auto 28px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 1041px;
  margin: 0 auto;
  background: transparent;
  border: none;
  overflow: visible;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  max-width: 829px;
  height: clamp(34px, 3.125vw, 60px);
  padding: 0 22px;
  border: 0.44px solid rgba(18, 18, 18, 0.4);
  border-radius: 10px;
  background: #ffffff;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #121212;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(18, 18, 18, 0.5);
}

.newsletter-form button {
  flex-shrink: 0;
  width: clamp(118px, 11.05vw, 212px);
  height: clamp(34px, 3.125vw, 60px);
  padding: 12px 24px;
  background: var(--orange-gradient);
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 13px 10px rgba(162, 86, 0, 0.4);
  color: #ffffff;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(12px, 0.94vw, 18px);
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}

.newsletter-form button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #1f1f1f;
  margin: 0 8px 12px;
  border-radius: 20px;
  padding: 52px clamp(28px, 14.58vw, 280px) 24px;
  color: #ffffff;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(276px, 1.35fr) 0.85fr 1.1fr 1.5fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-brand-logo {
  width: 120.64px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 22px;
}

.footer-brand p {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  letter-spacing: 0;
  max-width: 276px;
}

.footer-col h4 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 16px;
  text-transform: capitalize;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding-left: 0;
}

.footer-col ul li {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.25;
  letter-spacing: 0;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #d7923c;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
  flex: 1;
  
}

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

.contact-icon {
  width: 37.2px;
  height: 36.98px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 280px;
}

.contact-label {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: rgba(215, 146, 60, 1);
  line-height: 1.31;
  letter-spacing: 0;
}

.contact-value {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.43;
  letter-spacing: 0;
  max-width: 280px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: clamp(16px, 3vw, 32px);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.social-icon {

  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s;
}

.social-icon:hover {
  opacity: 0.85;
  border-color: #d7923c;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-copy-bar {
  margin-top: 0;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-copy-bar p {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
}

.footer-copy-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-copy-links a {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: color 0.2s;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (min-width: 1101px) and (max-width: 1400px) {
  .navbar {
    width: calc(100% - 72px);
    top: 26px;
  }

  .navbar-bar {
    padding: 14px 34px;
    gap: 30px;
  }

  .nav-links {
    gap: 22px;
  }

  .nav-links a {
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 1100px) {
  .navbar { width: calc(100% - 48px); top: 24px; }
  .navbar-bar { padding: 14px 32px; gap: 12px; }
  .nav-links { gap: 28px; }
  .nav-links a { font-size: 16px; line-height: 24px; }
  .nav-logo img { width: 96px; height: auto; }
  .hero-float {
    right: 20px;
    bottom: -44px;
    width: min(415px, calc(100% - 40px));
    transform: scale(0.88);
    transform-origin: bottom right;
  }
  .hero-card,
  .hero-card-btn {
    width: 100%;
    max-width: 415px;
  }
  .hero-card-btn { height: 44px; }
  .hero-arrow {
    top: -82px;
    right: calc(var(--hero-side-margin) + 48px);
    width: 180px;
  }
  .why-stage {
    min-height: 580px;
  }
  .why-us-image {
    max-width: 620px;
    height: 520px;
  }
  .why-us-items {
    max-width: 480px;
    gap: 36px;
  }
  .why-item {
    height: 82px;
    padding-right: 90px;
  }
  .why-item-title {
    font-size: 20px;
  }
  .newsletter-inner {
    padding: 0 32px 0 16px;
  }
  .newsletter-image {
    width: auto;
    height: calc(100% + 18px);
  }
  .newsletter-content .tiny-label {
    font-size: clamp(12px, 1.15vw, 18px);
    line-height: 1.45;
  }
  .newsletter-content h2 {
    font-size: clamp(18px, 1.56vw, 24px);
  }
  footer {
    padding: 42px 48px 20px;
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand p { font-size: 18px; max-width: 100%; }
  .footer-col h4 { font-size: 22px; }
  .footer-col ul li a { font-size: 18px; }
  .footer-copy-bar p,
  .footer-copy-links a { font-size: 16px; }
}

@media (max-width: 900px) {
  .navbar { width: calc(100% - 32px); top: 18px; }
  .navbar-bar {
    grid-template-columns: 1fr auto;
    padding: 14px 20px;
    clip-path: none;
    border-radius: 10px;
  }

  .nav-links--left,
  .nav-links--right { display: none; }

  .nav-logo { grid-column: 1; justify-self: start; }
  .nav-hamburger { display: flex; z-index: 1001; }

  .nav-mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.96);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    z-index: 1100;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    padding: 14px 12px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .nav-mobile-menu a {
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-transform: uppercase;
    transition: color 0.2s, background-color 0.2s;
    border-radius: 8px;
    padding: 10px 12px;
  }

  .nav-mobile-menu a:hover,
  .nav-mobile-menu a.active {
    color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
  }

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

  .navbar.scrolled .nav-mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(18, 18, 18, 0.12);
  }

  .navbar.scrolled .nav-mobile-menu a {
    color: #121212;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .process-grid {
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: start;
  }

  .process-images {
    height: 500px;
  }

  .process-img-main {
    left: 28px;
    width: min(100%, 390px);
    height: 470px;
  }

  .process-img-tl {
    left: -8px;
    bottom: 34px;
    width: 150px;
    height: 170px;
  }

  .process-img-tr {
    right: 0;
    top: 28px;
    width: 150px;
    height: 170px;
  }

  .process-content .section-title {
    margin-bottom: 16px;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .process-content p {
    font-size: 18px;
    line-height: 1.7;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

  .about-images-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: auto;
    padding: 24px 20px 32px;
  }

  .about-img-frame {
    left: 50%;
    transform: translateX(-50%);
    width: min(58%, 280px);
  }

  .about-img-main {
    width: min(58%, 280px);
    height: auto;
    max-height: 360px;
    margin: 0 auto;
  }

  .about-img-bl {
    width: 168px;
    height: 132px;
  }

  .about-img-br {
    display: none;
  }
  .process-images { height: 320px; }
  .process-img-main { left: 0; width: 100%; position: relative; height: 280px; top: auto; }
  .process-img-tl, .process-img-tr { display: none; }
  .why-stage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .why-us-image {
    max-width: 100%;
    height: 360px;
    margin-left: 0;
    order: 2;
  }
  .why-us-items {
    position: static;
    transform: none;
    top: auto;
    max-width: 100%;
    order: 1;
    gap: 20px;
  }
  .why-item {
    max-width: 100%;
    height: 72px;
    padding: 0 72px 0 48px;
  }
  .why-item-title {
    font-size: 18px;
  }
  .services-radial {
    padding: 24px 0 40px;
  }
  .container-2 {
    padding-left: 24px;
    padding-right: 24px;
  }
  .services-radial__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 56px;
    max-width: 520px;
  }
  .services-radial__arrows {
    display: none;
  }
  .service-card--tl,
  .service-card--tr,
  .service-card--bl,
  .service-card--br {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    margin-top: 0;
  }
  .services-hub {
    grid-column: 1;
    grid-row: auto;
    order: 3;
  }
  .service-card--tl { order: 1; }
  .service-card--tr { order: 2; }
  .service-card--bl { order: 4; }
  .service-card--br { order: 5; }
  .service-card-inner {
    padding: 24px 78px 24px 24px;
  }
  .service-number {
    top: 50%;
    right: 0;
    left: auto;
    transform: translate(50%, -50%);
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .features-strip {
    margin: 32px 0 0;
  }
  .features-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
    justify-items: center;
  }
  .feature-divider {
    display: none;
  }
  .newsletter {
    height: auto;
    min-height: 0;
  }
  .newsletter-inner {
    flex-direction: column;
    align-items: center;
    padding: 28px 28px 36px;
    gap: 20px;
  }
  .newsletter-image {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(320px, 88%);
    height: auto;
    max-width: 100%;
    max-height: 220px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center bottom;
  }
  .newsletter-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .newsletter-content .tiny-label {
    font-size: 16px;
    line-height: 24px;
  }
  .newsletter-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .newsletter-form {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    max-width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .footer-contacts {
    width: 100%;
    flex: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
  .contact-item {
    width: 100%;
    max-width: 100%;
  }
  .contact-item div {
    max-width: none;
  }
  .contact-value {
    max-width: none;
  }
  .footer-social {
    padding-left: 0;
    border-left: none;
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .navbar { width: calc(100% - 32px); top: 18px; }

  .navbar-bar {
    grid-template-columns: 1fr auto;
    padding: 14px 20px;
    clip-path: none;
    border-radius: 10px;
  }
  .nav-links--left,
  .nav-links--right { display: none; }
  .nav-logo { grid-column: 1; justify-self: start; }
  .nav-hamburger { display: flex; z-index: 1001; }

  .nav-mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.96);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    z-index: 1100;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    padding: 14px 12px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }
  .nav-mobile-menu a {
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-transform: uppercase;
    transition: color 0.2s, background-color 0.2s;
    border-radius: 8px;
    padding: 10px 12px;
  }
  .nav-mobile-menu a:hover,
  .nav-mobile-menu a.active {
    color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
  }
  .navbar.open .nav-mobile-menu { display: flex; }

  .navbar.scrolled .nav-mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(18, 18, 18, 0.12);
  }

  .navbar.scrolled .nav-mobile-menu a {
    color: #121212;
  }

  .hero { height: var(--page-banner-height-mobile, 520px); margin: 10px 10px 0; }
  .hero-float,
  .hero-arrow { display: none; }
  .about { padding-top: 60px; }

  .section-title {
    margin-bottom: 30px;
  }

  .process-content .section-title {
    text-align: left;
  }
  .about { padding: 60px 0 40px; }

  .about-images-inner {
    padding: 20px 16px 28px;
  }

  .about-img-frame {
    width: min(72%, 260px);
    height: 68%;
  }

  .about-img-main {
    width: min(72%, 260px);
    max-height: 320px;
    margin: 0 auto;
  }

  .about-img-bl {
    width: 140px;
    height: 110px;
    left: 12px;
    bottom: 24px;
  }
  .services-radial {
    padding-left: 10px;
    padding-right: 10px;
  }
  .services-radial__grid {
    gap: 48px;
  }
  .service-card-inner {
    padding: 22px 58px 22px 18px;
  }
  .service-number {
    width: 46px;
    height: 46px;
    font-size: 18px;
    right: 0;
    left: auto;
    box-shadow:
      0 0 0 4px #ffffff,
      0 0 0 6px rgba(215, 146, 60, 0.36),
      0 8px 18px rgba(141, 75, 0, 0.16);
  }
  .features-strip {
    margin: 24px 0 0;
  }
  .features-strip .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .features-strip-inner {
    grid-template-columns: 1fr;
    gap: 4px;
    justify-items: center;
  }
  .feature-divider {
    display: none;
  }
  .feature-item {
    width: 100%;
    max-width: 360px;
    padding: 14px 16px;
  }
  .feature-item span {
    text-align: center;
  }
  .footer-top { gap: 30px; }
  .footer-copy-bar { flex-direction: column; align-items: flex-start; }
  .footer-contacts { gap: 18px; }
  footer { padding: 40px 24px 24px; margin: 12px 10px; }
  .footer-brand-logo { width: 100px; height: 50px; }
  .footer-brand p { font-size: 16px; }
  .footer-col h4 { font-size: 20px; }
  .footer-col ul li a { font-size: 16px; }
  .contact-label,
  .contact-value { font-size: 14px; }
  .contact-icon { width: 32px; height: 32px; }
  .footer-copy-bar p,
  .footer-copy-links a { font-size: 14px; }
  .newsletter { margin: 0 10px; }
  .features-strip {
    margin: 20px 0 0;
  }
  .hero { border-radius: 20px; }
}

@media (max-width: 480px) {
  .navbar-bar {
    padding: 12px 16px;
  }

  .nav-logo img {
    width: 96px;
  }

  .about-stats { flex-direction: column; gap: 20px; }
  .why-us {
    padding-bottom: 44px;
  }
  .why-stage {
    gap: 20px;
  }
  .why-us-image {
    height: 260px;
  }
  .why-item {
    height: 60px;
    padding: 0 56px 0 40px;
  }
  .why-item-title {
    font-size: 16px;
  }
  .why-item-icon {
    width: 22px;
    height: 22px;
    left: 10px;
  }
  .newsletter-inner {
    padding: 24px 16px 28px;
    gap: 16px;
  }
  .newsletter-image {
    width: min(280px, 100%);
    max-height: 200px;
  }
  .newsletter-content .tiny-label {
    font-size: 14px;
    line-height: 22px;
  }
  .newsletter-content h2 {
    font-size: 18px;
  }
  .newsletter-form input,
  .newsletter-form button {
    height: 52px;
    border-radius: 10px;
  }
  .newsletter-form button {
    font-size: 16px;
  }
}
