@import "https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-light: #e0e7ff;
  --secondary: #8b5cf6;
  --accent: #f59e0b;
  --background: #fff;
  --foreground: #0f172a;
  --card-bg: #fff;
  --card-border: #e2e8f099;
  --card-shadow: 0 10px 30px -10px #0000001a;
  --card-shadow-hover: 0 20px 40px -15px #6366f126;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --glass-bg: #ffffffb3;
  --glass-border: #ffffff4d;
  --radius-sm: .5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2.5rem;
  --radius-full: 9999px;
  --font-sans: "Plus Jakarta Sans", sans-serif;
  --font-heading: "Outfit", sans-serif;
}

.dark {
  --primary: #818cf8;
  --primary-hover: #6366f1;
  --primary-light: #1e1b4b;
  --secondary: #a78bfa;
  --background: #0a0a0c;
  --foreground: #f8fafc;
  --card-bg: #141417;
  --card-border: #ffffff0d;
  --card-shadow: 0 10px 30px -10px #00000080;
  --card-shadow-hover: 0 20px 40px -15px #000000b3;
  --muted: #1e293b;
  --muted-foreground: #94a3b8;
  --border: #27272a;
  --glass-bg: #0a0a0cb3;
  --glass-border: #ffffff14;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  line-height: 1.6;
  transition: background-color .4s cubic-bezier(.4, 0, .2, 1), color .4s cubic-bezier(.4, 0, .2, 1);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -.02em;
  font-weight: 700;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all .2s;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  display: grid;
}

.flex-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-between {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.btn {
  border-radius: var(--radius-md);
  justify-content: center;
  align-items: center;
  gap: .625rem;
  padding: .875rem 1.75rem;
  font-weight: 600;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 15px -3px #6366f14d;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px #6366f166;
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--foreground);
  background: none;
}

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

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  height: 100%;
  padding: 1.5rem;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.card:hover {
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary);
  transform: translateY(-8px);
}

.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--glass-border);
}

.back-link {
  transition: all .3s;
  position: relative;
}

.back-link:hover {
  color: var(--primary);
  transform: translateX(-5px);
}

.back-link:after {
  content: "";
  background: var(--primary);
  transform-origin: 100%;
  width: 100%;
  height: 2px;
  transition: transform .3s;
  position: absolute;
  bottom: -4px;
  left: 0;
  transform: scaleX(0);
}

.back-link:hover:after {
  transform-origin: 0;
  transform: scaleX(1);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.badge {
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  display: inline-flex;
}

.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
}

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

.form-label {
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  display: block;
}

.form-input {
  background: var(--muted);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  width: 100%;
  color: var(--foreground);
  padding: .875rem 1.125rem;
  font-family: inherit;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.form-input:focus {
  border-color: var(--primary);
  background: var(--background);
  outline: none;
  box-shadow: 0 0 0 4px #6366f11a;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.animate-float {
  animation: 6s ease-in-out infinite float;
}

.reveal {
  opacity: 0;
  transition: all .8s cubic-bezier(.4, 0, .2, 1);
  transform: translateY(30px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.animate-spin {
  animation: 1.2s linear infinite spin;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-grid {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  width: 100%;
  display: flex;
}

.hero-text-item {
  flex: 1.4;
  order: 1;
  min-width: 0;
}

.hero-image-item {
  flex: .6;
  order: 2;
  justify-content: center;
  min-width: 0;
  display: flex;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 480px;
  position: relative;
}

.hero-image-container {
  border: 1px solid var(--glass-border);
  aspect-ratio: .85;
  background: var(--muted);
  z-index: 1;
  border-radius: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -12px #0003;
}

.floating-badge {
  z-index: 10;
  max-width: 240px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  padding: 1.25rem 1.75rem;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
}

.decorative-circle {
  border: 2px dashed var(--primary);
  opacity: .2;
  z-index: 0;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  animation: 20s linear infinite rotate;
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-text-content {
  width: 100%;
  margin-bottom: 3.5rem;
}

.hero-title {
  letter-spacing: -.03em;
  overflow-wrap: break-word;
  word-break: break-word;
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 900;
  line-height: 1.1;
}

.hero-desc {
  color: var(--muted-foreground);
  overflow-wrap: break-word;
  max-width: 42rem;
  margin-bottom: 3.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
}

.hero-stats {
  opacity: .85;
  align-items: center;
  gap: 3rem;
  margin-top: 4rem;
  display: flex;
}

.stat-item {
  flex-direction: column;
  display: flex;
}

.stat-num {
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 900;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted-foreground);
  font-size: .75rem;
  font-weight: 800;
}

.stat-divider {
  background: var(--border);
  width: 1px;
  height: 40px;
}

@media (max-width: 991px) {
  .hero-grid {
    text-align: center;
    flex-direction: column;
    gap: 3rem;
  }

  .hero-text-item {
    flex-direction: column;
    order: 2;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .hero-image-item {
    order: 1;
    width: 100%;
  }

  .hero-image-wrapper {
    max-width: 280px;
  }

  .hero-image-container {
    aspect-ratio: 1;
    border-radius: 2rem;
  }

  .floating-badge {
    text-align: left;
    max-width: 200px;
    padding: 1rem 1.25rem;
    font-size: .85rem;
    bottom: -1rem;
    right: -1rem;
  }

  .hero-title {
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .hero-desc {
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .hero-actions, .hero-stats {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 1rem;
  }

  .stat-item {
    flex: 100px;
    padding: .5rem;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    gap: 3rem;
  }
}

@media (max-width: 991px) {
  .hero-grid {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-text-item {
    flex-direction: column;
    order: 2;
    align-items: center;
    display: flex;
  }

  .hero-image-item {
    order: 1;
    width: 100%;
  }

  .hero-actions, .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    justify-content: center;
    align-items: center;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    position: relative;
  }

  .hero-image-container {
    z-index: 5;
    width: 100%;
    box-shadow: var(--card-shadow-hover);
    background: var(--muted);
    border-radius: 2.5rem;
    min-height: 220px;
  }

  .floating-badge {
    z-index: 10;
    text-align: left;
    max-width: 220px;
    padding: 1.25rem 1.5rem;
    bottom: -1rem;
    right: 0;
  }

  .decorative-circle {
    z-index: 0;
    width: 240px;
    height: 240px;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 580px) {
  .hero-title {
    margin-bottom: 1.5rem;
    font-size: clamp(1.85rem, 10vw, 2.5rem);
    line-height: 1.15;
  }

  .hero-image-wrapper {
    max-width: 260px;
  }

  .floating-badge {
    max-width: 180px;
    padding: .85rem 1.25rem;
    font-size: .8rem;
    bottom: -.5rem;
    right: -.5rem;
  }

  .hero-stats {
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .stat-item {
    flex: 100px;
    padding: .75rem;
  }

  .expertise-card, .service-card, .card {
    padding: 2rem 1.5rem !important;
  }

  .hero-actions {
    gap: 1rem;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 1rem;
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border: 2px solid var(--background);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted-foreground);
}

::selection {
  background: var(--primary);
  color: #fff;
}

.rich-content {
  color: var(--foreground);
  font-size: 1.125rem;
  line-height: 1.8;
}

.rich-content p {
  margin-bottom: 1.5rem;
}

.rich-content h2 {
  margin: 2.5rem 0 1.25rem;
  font-size: 1.85rem;
  font-weight: 800;
}

.rich-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.rich-content li {
  margin-bottom: .625rem;
}

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