@import "https://fonts.googleapis.com/css2?family=Geologica:wght@300;400;700;900&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #4440db;
  --primary-dark: #03406e;
  --accent: #f75936;
  --accent-dark: #e85a51;
  --dark: #0e0d2c;
  --dark-lighter: #3e4349;
  --text: #333;
  --text-light: #666;
  --text-muted: #999;
  --bg-light: #eee;
  --bg-white: #fff;
  --border: #e8edf2;
  --shadow: 0 4px 24px #00000014;
  --shadow-hover: 0 12px 40px #0000001f;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background: var(--bg-white);
  font-family: Geologica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.navbar {
  z-index: 1000;
  background: none;
  justify-content: center;
  align-items: center;
  height: 100px;
  padding: 0 3rem;
  transition: background .6s, height .4s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-inner {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  display: flex;
}

.navbar.scrolled {
  background: var(--dark);
  -webkit-backdrop-filter: blur(8px);
  height: 70px;
}

.navbar-logo img {
  width: auto;
  height: 42px;
}

.navbar-links {
  align-items: center;
  gap: 2.5rem;
  display: flex;
}

.navbar-links a {
  color: #ffffffbf;
  letter-spacing: .3px;
  font-size: .95rem;
  font-weight: 400;
  transition: color .3s;
}

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

.navbar-cta {
  background: var(--accent);
  letter-spacing: .5px;
  border-radius: 9999px;
  padding: .55rem 1.5rem;
  font-size: .85rem;
  font-weight: 700;
  transition: background .3s;
  color: #fff !important;
}

.navbar-cta:hover {
  background: var(--accent-dark);
}

.hero {
  background: var(--dark);
  color: #fff;
  align-items: center;
  min-height: 110vh;
  padding: 1rem 0 7rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  opacity: .06;
  pointer-events: none;
  z-index: 0;
  background: url("/images/hero_bg.png") center / cover no-repeat;
  position: absolute;
  inset: -1px;
}

.hero-decor-circle {
  background: var(--accent);
  opacity: .1;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  width: 420px;
  height: 420px;
  animation: 14s ease-in-out infinite heroCircleFloat;
  position: absolute;
  bottom: -140px;
  left: -140px;
}

@keyframes heroCircleFloat {
  0%, 100% {
    transform: scale(1)translate(0);
  }

  30% {
    transform: scale(1.06)translate(10px, -8px);
  }

  60% {
    transform: scale(.97)translate(-6px, 12px);
  }
}

.hero-decor-arch {
  border: 60px solid var(--primary);
  opacity: .15;
  z-index: 0;
  pointer-events: none;
  background: none;
  border-radius: 50%;
  width: 440px;
  height: 440px;
  animation: 16s ease-in-out infinite heroArchPulse;
  position: absolute;
  top: -160px;
  right: -160px;
}

@keyframes heroArchPulse {
  0%, 100% {
    transform: scale(1)rotate(0);
  }

  25% {
    transform: scale(1.05)rotate(3deg)translate(-10px, 6px);
  }

  50% {
    transform: scale(.98)rotate(-2deg)translate(-4px, 12px);
  }

  75% {
    transform: scale(1.03)rotate(1deg)translate(6px, 4px);
  }
}

.hero-inner {
  z-index: 1;
  justify-content: center;
  width: 100%;
  max-width: 80vw;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.hero-content {
  z-index: 2;
  flex: 1;
}

.hero-content h1 {
  margin-bottom: 1rem;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
}

.hero-content h1 .highlight {
  color: var(--accent);
}

.hero-content .hero-sub {
  opacity: .85;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.5;
}

.hero-content .hero-link {
  color: var(--accent);
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 700;
  transition: gap .3s;
  display: inline-flex;
}

.hero-content .hero-link:hover {
  gap: .8rem;
}

.hero-image {
  z-index: 1;
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.hero-image img {
  object-fit: contain;
  backface-visibility: hidden;
  width: auto;
  max-height: 520px;
  transform: translateZ(0);
}

.showcase-left .btn {
  padding: .55rem 1.5rem;
  font-size: .75rem;
}

.hero-showcase {
  width: 95%;
  min-height: 520px;
  position: relative;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  align-items: center;
  gap: 3rem;
  transition: opacity .8s;
  display: flex;
  position: absolute;
  inset: 0;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.showcase-left {
  z-index: 2;
  flex: 1;
}

.showcase-logo {
  object-fit: contain;
  width: auto;
  max-width: 150px;
  margin-bottom: 1.5rem;
}

.showcase-title {
  color: #fff;
  margin-bottom: .6rem;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.showcase-subtitle {
  opacity: .8;
  color: #fff;
  margin-bottom: 1.8rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
}

.showcase-right {
  z-index: 1;
  flex: 1.3;
  height: 460px;
  position: relative;
  top: 50px;
}

.showcase-screenshot {
  opacity: .85;
  transform-origin: 100% 100%;
  object-fit: cover;
  transition: opacity .6s, transform .6s, box-shadow .6s;
  position: absolute;
}

.showcase-screenshot.screenshot-shadow {
  box-shadow: 0 8px 32px #0000004d;
}

.showcase-screenshot.visible {
  opacity: 1;
  transform: translateY(-12px);
}

.showcase-screenshot.visible.screenshot-shadow {
  box-shadow: 0 12px 40px #00000073;
}

.showcase-screenshot.focused {
  opacity: 1;
  transform: translateY(-30px);
}

.showcase-screenshot:first-child {
  z-index: 3;
  width: 60%;
  max-height: 380px;
  top: 150px;
  left: 0;
}

.showcase-screenshot:nth-child(2) {
  z-index: 2;
  width: 60%;
  max-height: 380px;
  top: 70px;
  left: 22%;
}

.showcase-screenshot:nth-child(3) {
  z-index: 1;
  width: 60%;
  max-height: 380px;
  top: 0;
  left: 44%;
}

.showcase-feature {
  z-index: 4;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
  width: 160px;
  transition: opacity .4s, transform .4s cubic-bezier(.34, 1.56, .64, 1);
  position: absolute;
  transform: scale(0);
}

.showcase-feature.feature-visible {
  opacity: 1;
  transform: scale(1);
}

.showcase-feature-1 {
  top: -100px;
  left: -25px;
}

.showcase-feature-2 {
  bottom: 30px;
  right: -10px;
}

.showcase-dots {
  z-index: 5;
  gap: 8px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.showcase-dot {
  cursor: pointer;
  background: #ffffff4d;
  border: none;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  padding: 0;
  transition: background .3s;
}

.showcase-dot.active {
  background: var(--accent);
}

.showcase-dot:hover {
  background: #fff9;
}

.showcase-dot.active:hover {
  background: var(--accent);
}

.showcase-paused {
  color: #ffffff4d;
  letter-spacing: 1px;
  opacity: 0;
  -webkit-user-select: none;
  user-select: none;
  margin-left: 4px;
  font-size: .55rem;
  transition: opacity .3s;
}

.showcase-paused.visible {
  opacity: 1;
}

.client-cards-wrapper {
  z-index: 10;
  margin-top: -220px;
  padding: 1rem 3rem;
  position: relative;
}

.client-card-single {
  background: var(--bg-white);
  max-width: 1620px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3vh;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  display: flex;
}

.client-cards-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: .8rem;
  font-weight: 700;
}

.client-cards-row {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  display: grid;
}

.client-card-item {
  align-items: flex-start;
  gap: .75rem;
  display: flex;
}

.client-card-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  color: var(--primary);
  background: #4440db14;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.client-card-item h3 {
  color: var(--dark);
  margin-bottom: .25rem;
  font-size: .95rem;
  font-weight: 700;
}

.client-card-item p {
  color: var(--text-light);
  font-size: .8rem;
  line-height: 1.5;
}

.logos-section {
  z-index: 1;
  padding: 12rem 3rem 9rem;
  position: relative;
}

.logos-heading {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: .85rem;
  font-weight: 700;
}

.logos-inner {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
}

.logos-inner img {
  object-fit: contain;
  filter: grayscale();
  opacity: .45;
  width: auto;
  height: 55px;
  transition: filter .3s, opacity .3s;
}

.logos-inner img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.section {
  padding: 5rem 3rem;
}

.section-light {
  background: var(--bg-light);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-white {
  background: var(--bg-white);
}

.container {
  max-width: 80vw;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  color: var(--dark);
  margin-bottom: .75rem;
  font-size: 2.4rem;
  font-weight: 900;
}

.section-dark .section-header h2 {
  color: #fff;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-dark .section-header p {
  color: #ffffffa6;
}

.offerings-wrapper {
  clip-path: inset(0 -3rem);
  margin: -12rem -3rem -5rem;
  padding: 12rem 3rem 5rem;
  position: relative;
}

.offerings-wrapper .container {
  z-index: 1;
  position: relative;
}

.offerings-decor-circle {
  background: var(--primary);
  opacity: .045;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  width: 500px;
  height: 500px;
  animation: 18s ease-in-out infinite offeringsCircleDrift;
  position: fixed;
  top: -220px;
  right: -220px;
}

@keyframes offeringsCircleDrift {
  0%, 100% {
    transform: scale(1)translate(0);
  }

  33% {
    transform: scale(1.06)translate(-14px, 10px);
  }

  66% {
    transform: scale(.97)translate(8px, 16px);
  }
}

.offerings-decor-arch {
  border: 72px solid var(--accent);
  opacity: .06;
  z-index: 0;
  pointer-events: none;
  background: none;
  border-radius: 50%;
  width: 480px;
  height: 480px;
  animation: 20s ease-in-out infinite offeringsArchFloat;
  position: fixed;
  bottom: -220px;
  left: -220px;
}

@keyframes offeringsArchFloat {
  0%, 100% {
    transform: scale(1)rotate(0);
  }

  25% {
    transform: scale(1.05)rotate(-4deg)translate(12px, -8px);
  }

  50% {
    transform: scale(.98)rotate(2deg)translate(6px, -14px);
  }

  75% {
    transform: scale(1.03)rotate(-1deg)translate(-4px, -6px);
  }
}

.offerings-container {
  max-width: min(70vw, 1600px);
  margin: 0 auto;
}

.offering {
  justify-content: space-between;
  align-items: center;
  gap: 10vw;
  padding: 8rem 0;
  display: flex;
}

.offering.reverse {
  flex-direction: row-reverse;
}

.offering-content {
  flex: 1;
  min-width: 0;
  max-width: 520px;
}

.offering-content h3 {
  color: var(--dark);
  margin-bottom: .3rem;
  font-size: 1.5rem;
  font-weight: 900;
}

.offering-content .subtitle {
  color: var(--primary);
  margin-bottom: .8rem;
  font-size: .85rem;
  font-style: italic;
  font-weight: 700;
}

.offering-content p {
  color: var(--text-light);
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 1rem;
  font-size: .9rem;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
}

.offering-tags {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.offering-tag {
  color: var(--primary);
  background: #04508912;
  border-radius: 9999px;
  padding: .3rem .8rem;
  font-size: .75rem;
  font-weight: 700;
}

.offering-btn {
  background: var(--primary);
  color: #fff;
  letter-spacing: .5px;
  border-radius: 9999px;
  margin-top: 1rem;
  padding: .5rem 1.6rem;
  font-size: .8rem;
  font-weight: 700;
  transition: background .3s;
  display: inline-block;
}

.offering-btn:hover {
  background: var(--primary-dark);
}

.offering-image {
  border-radius: 12px;
  flex: 0 0 clamp(380px, 30vw, 600px);
  max-width: 600px;
}

.offering-image img {
  object-fit: contain;
  border-radius: 12px;
  width: 100%;
  height: auto;
  max-height: 360px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  display: grid;
}

.service-card {
  background: #ffffff0f;
  border: 1px solid #ffffff14;
  border-radius: 12px;
  padding: 2rem;
  transition: transform .3s, background .3s;
}

.service-card:hover {
  background: #ffffff1a;
  transform: translateY(-4px);
}

.service-card-icon {
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  display: flex;
}

.service-card h3 {
  color: #fff;
  margin-bottom: .6rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.service-card p {
  color: #ffffffa6;
  font-size: .9rem;
  line-height: 1.65;
}

.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  color: #fff;
  text-align: center;
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-decor-1 {
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: .12;
  pointer-events: none;
  border-radius: 50%;
  width: 320px;
  height: 320px;
  animation: 12s ease-in-out infinite ctaFloat1;
  position: absolute;
  top: -80px;
  right: -60px;
}

.cta-decor-2 {
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: .15;
  pointer-events: none;
  border-radius: 50%;
  width: 380px;
  height: 380px;
  animation: 16s ease-in-out infinite ctaFloat2;
  position: absolute;
  bottom: -100px;
  left: -80px;
}

@keyframes ctaFloat1 {
  0%, 100% {
    transform: translate(0)scale(1);
  }

  50% {
    transform: translate(-20px, 15px)scale(1.08);
  }
}

@keyframes ctaFloat2 {
  0%, 100% {
    transform: translate(0)scale(1);
  }

  50% {
    transform: translate(15px, -20px)scale(1.05);
  }
}

.cta-inner {
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}

.cta-label {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-size: .75rem;
  font-weight: 700;
  display: inline-block;
}

.cta-section h2 {
  margin-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
}

.cta-sub {
  opacity: .7;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
}

.cta-btn {
  background: var(--accent);
  color: #fff;
  letter-spacing: .5px;
  border-radius: 9999px;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.4rem;
  font-size: .95rem;
  font-weight: 700;
  transition: background .3s, box-shadow .3s, gap .3s;
  display: inline-flex;
}

.cta-btn:hover {
  background: var(--accent-dark);
  gap: 1rem;
  box-shadow: 0 8px 30px #f7593659;
}

.cta-btn-arrow {
  font-size: 1.2rem;
  transition: transform .3s;
}

.cta-btn:hover .cta-btn-arrow {
  transform: translateX(3px);
}

.btn {
  cursor: pointer;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: 2px solid #0000;
  border-radius: 9999px;
  padding: .85rem 2.2rem;
  font-size: .9rem;
  font-weight: 700;
  transition: all .3s;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline-white {
  color: #fff;
  background: none;
  border-color: #ffffff4d;
}

.btn-outline-white:hover {
  color: var(--dark);
  background: #fff;
  border-color: #fff;
}

.footer {
  background: var(--dark);
  color: #ffffffa6;
  padding: 4rem 3rem 2rem;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 80vw;
  margin: 0 auto;
  display: grid;
}

.footer-brand img {
  object-fit: contain;
  width: auto;
  height: 32px;
  margin-bottom: 1rem;
}

.footer h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  font-size: .9rem;
  font-weight: 700;
}

.footer p {
  margin-bottom: .4rem;
  font-size: .9rem;
  line-height: 1.7;
}

.footer a {
  transition: color .3s;
}

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

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ffffff14;
  max-width: 80vw;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.5rem;
  font-size: .85rem;
}

.about-hero {
  background: var(--dark);
  color: #fff;
  text-align: center;
  margin-top: 72px;
  padding: 6rem 3rem;
}

.about-hero h1 {
  max-width: 750px;
  margin: 0 auto 1.5rem;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
}

.about-hero p {
  opacity: .8;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
}

.about-hero .hero-tag {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #ffffff14;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  padding: .4rem 1.4rem;
  font-size: .8rem;
  font-weight: 700;
  display: inline-block;
}

.about-intro {
  align-items: center;
  gap: 4rem;
  display: flex;
}

.about-intro-text {
  flex: 1;
}

.about-intro-text h2 {
  color: var(--dark);
  margin-bottom: 1.2rem;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.25;
}

.about-intro-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-intro-logo {
  text-align: center;
  flex-shrink: 0;
}

.about-approach {
  background: var(--dark);
  color: #fff;
  padding: 6rem 3rem;
  position: relative;
}

.about-approach-inner {
  align-items: center;
  max-width: 80vw;
  margin: 0 auto;
  display: flex;
}

.about-approach-content {
  max-width: 550px;
}

.about-approach-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: .8rem;
  font-weight: 700;
  display: inline-block;
}

.about-approach h2 {
  margin-bottom: 1.2rem;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
}

.about-approach p {
  opacity: .8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.team-section {
  align-items: center;
  gap: 4rem;
  display: flex;
}

.team-portraits {
  flex: 1;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 1rem;
  display: grid;
}

.portrait-col {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.portrait-col .portrait {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
}

.portrait-col:first-child {
  padding-top: 2rem;
}

.portrait-col:last-child {
  padding-top: 1rem;
}

.portrait-col-double .portrait {
  height: auto;
}

.team-text {
  flex: 1;
}

.team-text h2 {
  color: var(--dark);
  margin-bottom: .5rem;
  font-size: 2.2rem;
  font-weight: 900;
}

.team-subtitle {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 700;
}

.team-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  display: grid;
}

.value-card {
  border-left: 3px solid var(--accent);
  background: #ffffff0a;
  border-radius: 0 10px 10px 0;
  padding: 1.5rem;
}

.value-card h4 {
  margin-bottom: .4rem;
  font-size: 1rem;
  font-weight: 700;
}

.value-card p {
  opacity: .7;
  font-size: .88rem;
  line-height: 1.6;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 3rem;
  display: grid;
}

.contact-details h3 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 900;
}

.contact-item {
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  color: var(--primary);
  background: #04508912;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-item-text h4 {
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .2rem;
  font-size: .85rem;
  font-weight: 700;
}

.contact-item-text p {
  color: var(--text-light);
  font-size: .95rem;
}

.contact-form {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form h3 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .4rem;
  font-size: .8rem;
  font-weight: 700;
  display: block;
}

.form-group input, .form-group textarea {
  border: 1px solid var(--border);
  background: var(--bg-light);
  border-radius: 8px;
  width: 100%;
  padding: .75rem 1rem;
  font-family: Geologica, sans-serif;
  font-size: .95rem;
  transition: border-color .3s;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: var(--bg-white);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  display: grid;
}

@media (max-width: 1024px) {
  .hero-slide {
    text-align: center;
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-image img {
    max-height: 350px;
  }

  .showcase-title {
    font-size: 1.5rem;
  }

  .showcase-right {
    width: 100%;
    height: 320px;
  }

  .showcase-screenshot:first-child {
    width: 50%;
    top: 100px;
    left: 0;
  }

  .showcase-screenshot:nth-child(2) {
    width: 50%;
    top: 50px;
    left: 18%;
  }

  .showcase-screenshot:nth-child(3) {
    width: 50%;
    top: 0;
    left: 36%;
  }

  .showcase-feature {
    width: 90px;
    max-height: 90px;
  }

  .showcase-feature-1 {
    top: 5px;
    left: -15px;
  }

  .showcase-feature-2 {
    bottom: 20px;
    right: -5px;
  }

  .hero-decor-circle {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
  }

  .hero-decor-arch {
    border-width: 45px;
    width: 320px;
    height: 320px;
    top: -120px;
    right: -120px;
  }

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

  .offering, .offering.reverse {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 0 1.5rem;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-decor-circle {
    opacity: .08;
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: -80px;
  }

  .hero-decor-arch {
    opacity: .12;
    border-width: 34px;
    width: 240px;
    height: 240px;
    top: -90px;
    right: -90px;
  }

  .hero-showcase {
    min-height: 440px;
  }

  .showcase-title {
    font-size: 1.25rem;
  }

  .showcase-subtitle {
    font-size: .85rem;
  }

  .showcase-right {
    height: 250px;
  }

  .showcase-screenshot:first-child, .showcase-screenshot:nth-child(2), .showcase-screenshot:nth-child(3) {
    width: 55%;
    max-height: 200px;
  }

  .showcase-feature {
    display: none;
  }

  .client-cards-wrapper {
    padding: 0 1.5rem;
  }

  .client-cards-grid, .services-grid, .values-grid, .form-row {
    grid-template-columns: 1fr;
  }

  .navbar-links {
    gap: 1.2rem;
  }

  .logos-inner {
    gap: 2rem;
  }
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/