/* ============================================================
   YUKTI.AI — ENHANCED STYLE SYSTEM
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

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

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6
}

:root {
  --navy: #1a2a6c;
  --blue: #4f7bbd;
  --sky: #7ec8e3;
  --lavender: #e8e8f8;
  --soft-lav: #f0f0fc;
  --peach: #f5d0a9;
  --orange: #f4a261;
  --dark-orange: #e76f51;
  --purple: #7b5ea7;
  --rose: #e9768e;
  --teal: #3d9a8e;
  --green: #4caf7d;
  --indigo: #5c6bc0;
  --pink: #e91e8c;
  --white: #fff;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8888aa;
  --card-bg: #f8f8fc;
  --border: #e4e4f0;
  --shadow-sm: 0 2px 12px rgba(74, 74, 140, 0.08);
  --shadow-md: 0 8px 32px rgba(74, 74, 140, 0.12);
  --shadow-lg: 0 20px 60px rgba(74, 74, 140, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-dark)
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4rem)
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem)
}

h3 {
  font-size: 1.25rem;
  font-weight: 600
}

p {
  color: var(--text-mid);
  font-size: 1rem
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 100px 0
}

.mt-12 {
  margin-top: 20px
}

/* ── PARTICLE CANVAS ── */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none
}

/* ── BUTTONS ── */
.btn-primary,
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: #fff;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.btn-primary {
  padding: 12px 26px;
  font-size: .95rem
}

.btn-hero-primary {
  padding: 15px 32px;
  font-size: 1rem
}

.btn-primary:hover,
.btn-hero-primary:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26, 42, 108, .35)
}

.btn-secondary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--navy);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.btn-secondary {
  padding: 11px 25px;
  font-size: .95rem;
  border: 1.5px solid var(--navy)
}

.btn-hero-secondary {
  padding: 14px 30px;
  font-size: 1rem;
  border: 1.5px solid rgba(26, 42, 108, .2);
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(6px)
}

.btn-secondary:hover {
  background: var(--lavender);
  transform: translateY(-2px)
}

.btn-hero-secondary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md)
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.learn-more-btn:hover {
  color: var(--blue);
  gap: 8px
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  position: relative;
  overflow: hidden
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 42, 108, .4)
}

/* ── RIPPLE EFFECT ── */
.ripple-btn {
  position: relative;
  overflow: hidden
}

.ripple-btn .ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transform: scale(0);
  animation: rippleAnim .6s ease-out forwards;
  pointer-events: none
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0
  }
}

/* ── SHIMMER ON HOVER ── */
.btn-primary::after,
.btn-hero-primary::after,
.btn-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: none
}

.btn-primary:hover::after,
.btn-hero-primary:hover::after,
.btn-submit:hover::after {
  animation: shimmer .8s ease
}

@keyframes shimmer {
  to {
    left: 150%
  }
}

/* ── SECTION LABELS ── */
.section-tag {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center
}

.section-title {
  text-align: center;
  margin-bottom: 16px
}

.section-subtitle {
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 56px;
  font-size: 1.05rem
}

/* ============================================================ NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(228, 228, 240, .6);
  transition: var(--transition)
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(26, 42, 108, .08)
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0
}

.logo-text {
  letter-spacing: -.02em
}

.logo-icon {
  display: flex;
  align-items: center
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1
}

.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: .55rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: .04em;
  white-space: nowrap;
  opacity: .85
}

.nav-links {
  display: flex;
  gap: 6px;
  flex: 1;
  justify-content: center
}

.nav-link {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 1px
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%
}

.nav-link:hover {
  color: var(--navy)
}

.nav-link.active {
  color: var(--navy);
  font-weight: 600
}

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition)
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

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

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* ============================================================ HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #f0f0fc 0%, #e4e4f8 25%, #d8e8f5 50%, #eee8f5 75%, #f5ece8 100%)
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 30%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(248, 196, 140, .35) 0%, transparent 70%);
  border-radius: 50%;
  animation: blobFloat 8s ease-in-out infinite
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(79, 123, 189, .18) 0%, transparent 70%);
  border-radius: 50%;
  animation: blobFloat 10s ease-in-out infinite reverse
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(40px, -30px) scale(1.08)
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 0 24px
}

.hero-ornament {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  opacity: .7
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(26, 42, 108, .15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px
}

.badge-icon {
  color: var(--blue);
  font-size: 1rem
}

.hero-title {
  margin-bottom: 20px;
  letter-spacing: -.02em
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 40px
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1
}

.scroll-dot {
  width: 6px;
  height: 32px;
  background: var(--navy);
  border-radius: 3px;
  animation: scrollPulse 2s ease-in-out infinite;
  opacity: .4
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: .4
  }

  50% {
    transform: scaleY(.5);
    opacity: .2
  }
}

/* ============================================================ TRUST BAR */
.trust-bar {
  background: #fff;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center
}

.trust-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--text-light);
  margin-bottom: 16px
}

.trust-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--soft-lav);
  border: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition)
}

.trust-pill:hover {
  background: var(--lavender);
  border-color: rgba(79, 123, 189, .3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm)
}

.trust-separator {
  background: transparent;
  border-color: transparent;
  font-size: 1.1rem;
  padding: 0 4px;
  pointer-events: none
}
.trust-separator:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
  box-shadow: none
}

/* ============================================================ WHY */
.why-section {
  background: var(--soft-lav)
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px
}

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

.why-card-visual {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #8fa8d4 0%, #3d5a9e 50%, #1a2a6c 100%);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(26, 42, 108, .3);
  position: relative;
  overflow: hidden
}

.why-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .12), transparent 60%)
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition)
}

.why-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 123, 189, .3)
}

.why-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
  font-weight: 700
}

.why-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-dark)
}

.why-item p {
  font-size: .9rem;
  color: var(--text-mid)
}

/* ============================================================ SERVICES */
.services-section {
  background: #fff
}

.services-section .section-subtitle {
  margin-bottom: 52px
}

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

.service-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(79, 123, 189, .05), rgba(123, 94, 167, .05));
  transition: var(--transition);
  border-radius: var(--radius-md)
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 123, 189, .35)
}

.service-card:hover::before {
  opacity: 1
}

.service-card.featured {
  border-color: rgba(79, 123, 189, .4);
  box-shadow: var(--shadow-md);
  background: #fff
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform .3s ease
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(5deg)
}

.service-icon-wrap.orange {
  background: linear-gradient(135deg, #f4a261, #e76f51)
}

.service-icon-wrap.purple {
  background: linear-gradient(135deg, #7b5ea7, #9d50bb)
}

.service-icon-wrap.blue {
  background: linear-gradient(135deg, #4f7bbd, #1a2a6c)
}

.service-icon-wrap.teal {
  background: linear-gradient(135deg, #3d9a8e, #2d7a6f)
}

.service-icon-wrap.indigo {
  background: linear-gradient(135deg, #5c6bc0, #3949ab)
}

.service-icon-wrap.rose {
  background: linear-gradient(135deg, #e9768e, #c2185b)
}

.service-icon-wrap.pink {
  background: linear-gradient(135deg, #e91e8c, #c2185b)
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 600
}

.service-card p {
  font-size: .88rem;
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.6
}

/* ============================================================ INDUSTRIES */
.industries-section {
  background: var(--soft-lav)
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px
}

.industry-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  cursor: default;
  text-align: center
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 123, 189, .3)
}

.ind-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition)
}

.industry-card:hover .ind-icon {
  background: linear-gradient(135deg, var(--lavender), #c8c8f0);
  transform: scale(1.15) rotate(10deg)
}

.industry-card span {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark)
}

/* ============================================================ USE CASES */
.usecases-section {
  background: #fff
}

.usecases-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 40px;
  max-width: 700px
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--soft-lav);
  border: 1.5px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.tab-btn:hover {
  border-color: var(--blue);
  color: var(--navy)
}

.tab-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(26, 42, 108, .25)
}

.usecase-display {
  max-width: 900px;
  margin: 0 auto
}

.usecase-panel {
  display: none;
  align-items: center;
  gap: 48px;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  animation: fadeSlide .5s ease
}

.usecase-panel.active {
  display: flex
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.usecase-visual {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center
}

.usecase-visual.orange-grad {
  background: linear-gradient(135deg, #f4a261, #e76f51, #c9d6f0)
}

.usecase-visual.purple-grad {
  background: linear-gradient(135deg, #7b5ea7, #9d50bb, #c9d6f0)
}

.usecase-visual.blue-grad {
  background: linear-gradient(135deg, #4f7bbd, #1a2a6c, #7ec8e3)
}

.usecase-visual.teal-grad {
  background: linear-gradient(135deg, #3d9a8e, #1a2a6c, #7ec8e3)
}

.usecase-icon {
  font-size: 3.5rem
}

.usecase-info {
  flex: 1
}

.uc-live {
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .1em
}

.usecase-info h3 {
  font-size: 1.5rem;
  margin: 10px 0 14px
}

.usecase-info p {
  color: var(--text-mid);
  line-height: 1.8
}

/* ============================================================ TECH */
.tech-section {
  background: var(--soft-lav)
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px
}

.tech-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition)
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 123, 189, .3)
}

.tech-card-icon {
  margin-bottom: 12px;
  display: flex;
  justify-content: center
}

.tech-card h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center
}

.tech-tags span {
  background: var(--lavender);
  color: var(--navy);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  border: 1px solid rgba(26, 42, 108, .1);
  transition: var(--transition)
}

.tech-tags span:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px)
}

/* ============================================================ TEAM */
.team-section {
  background: #fff
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 52px auto 0
}

.team-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition)
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 123, 189, .3)
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  color: #fff;
  letter-spacing: .05em;
  transition: var(--transition)
}

.team-card:hover .team-avatar {
  transform: scale(1.1)
}

.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px
}

.team-card>p {
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 12px
}

.team-desc {
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px
}

.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition)
}

.team-socials a:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px)
}

/* ============================================================ CONTACT */
.contact-section {
  background: var(--soft-lav)
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  margin-top: 56px;
  align-items: start
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition)
}

.contact-info-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 123, 189, .3);
  transform: translateY(-3px)
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.contact-info-item h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px
}

.contact-info-item a,
.contact-info-item p {
  font-size: .92rem;
  color: var(--text-mid)
}

.contact-info-item a:hover {
  color: var(--blue)
}

.contact-form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md)
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px
}

.contact-form-card>p {
  color: var(--text-mid);
  margin-bottom: 28px;
  font-size: .92rem
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px
}

/* Floating Labels */
.floating-label {
  position: relative
}

.floating-label input,
.floating-label textarea {
  padding: 18px 16px 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--soft-lav);
  transition: var(--transition);
  outline: none;
  width: 100%
}

.floating-label textarea {
  resize: vertical
}

.floating-label label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .9rem;
  color: var(--text-light);
  pointer-events: none;
  transition: var(--transition);
  font-weight: 500
}

.floating-label textarea~label {
  top: 18px;
  transform: none
}

.floating-label input:focus,
.floating-label textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(79, 123, 189, .1)
}

.floating-label input:focus~label,
.floating-label input:not(:placeholder-shown)~label,
.floating-label textarea:focus~label,
.floating-label textarea:not(:placeholder-shown)~label {
  top: 6px;
  transform: none;
  font-size: .72rem;
  color: var(--blue);
  font-weight: 600
}

.form-success {
  text-align: center;
  padding: 14px;
  background: rgba(76, 175, 125, .1);
  border: 1px solid rgba(76, 175, 125, .3);
  border-radius: var(--radius-sm);
  color: #2d7a55;
  font-weight: 600;
  font-size: .9rem;
  margin-top: 8px
}

/* ============================================================ FOOTER */
.footer {
  position: relative;
  overflow: hidden
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #f0f0fc 0%, #e4e4f8 30%, #f5ece8 70%, #f8e4c8 100%)
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 48px
}

.footer-brand p {
  font-size: .88rem;
  color: var(--text-mid);
  margin: 14px 0 20px;
  line-height: 1.7
}

.footer-logo {
  margin-bottom: 4px
}

.footer-socials {
  display: flex;
  gap: 10px
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition)
}

.social-link:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px)
}

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 18px
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col ul li a {
  font-size: .88rem;
  color: var(--text-mid);
  transition: var(--transition)
}

.footer-col ul li a:hover {
  color: var(--navy)
}

.footer-col ul li {
  font-size: .88rem;
  color: var(--text-mid)
}

.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px 24px;
  border-top: 1px solid rgba(200, 200, 230, .5)
}

.footer-bottom p {
  font-size: .82rem;
  color: var(--text-light)
}

/* ============================================================ MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 40, .55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition)
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all
}

.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  max-width: 520px;
  width: 90%;
  position: relative;
  transform: scale(.9) translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg)
}

.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0)
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--soft-lav);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-dark)
}

.modal-close:hover {
  background: var(--lavender);
  transform: scale(1.1) rotate(90deg)
}

#modalTitle {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--navy)
}

#modalDesc {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px
}

/* ============================================================ BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26, 42, 108, .3);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all
}

.back-to-top:hover {
  background: var(--blue);
  transform: translateY(-4px) rotate(360deg)
}

/* ============================================================ SCROLL ANIMATIONS */
.fade-in {
  animation: fadeInUp .8s ease both
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fade-in-scroll {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition: opacity .6s ease, transform .6s ease, filter .6s ease
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0)
}

.services-grid .service-card:nth-child(1) {
  transition-delay: .05s
}

.services-grid .service-card:nth-child(2) {
  transition-delay: .1s
}

.services-grid .service-card:nth-child(3) {
  transition-delay: .15s
}

.services-grid .service-card:nth-child(4) {
  transition-delay: .2s
}

.services-grid .service-card:nth-child(5) {
  transition-delay: .25s
}

.services-grid .service-card:nth-child(6) {
  transition-delay: .3s
}

.services-grid .service-card:nth-child(7) {
  transition-delay: .35s
}

.services-grid .service-card:nth-child(8) {
  transition-delay: .4s
}

.services-grid .service-card:nth-child(9) {
  transition-delay: .45s
}

.industries-grid .industry-card:nth-child(1) {
  transition-delay: .05s
}

.industries-grid .industry-card:nth-child(2) {
  transition-delay: .1s
}

.industries-grid .industry-card:nth-child(3) {
  transition-delay: .15s
}

.industries-grid .industry-card:nth-child(4) {
  transition-delay: .2s
}

.industries-grid .industry-card:nth-child(5) {
  transition-delay: .25s
}

.industries-grid .industry-card:nth-child(6) {
  transition-delay: .3s
}

.industries-grid .industry-card:nth-child(7) {
  transition-delay: .35s
}

.industries-grid .industry-card:nth-child(8) {
  transition-delay: .4s
}

.industries-grid .industry-card:nth-child(9) {
  transition-delay: .45s
}

/* ============================================================ RESPONSIVE */
@media(max-width:1024px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .why-visual {
    display: none
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}

@media(max-width:768px) {
  .section {
    padding: 72px 0
  }

  .nav-links,
  .nav-actions {
    display: none
  }

  .nav-links.open {
    display: flex
  }

  .hamburger {
    display: flex
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(26, 42, 108, .1)
  }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    width: 100%
  }

  .nav-link::after {
    display: none
  }

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

  .industries-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px
  }

  .contact-wrapper {
    grid-template-columns: 1fr
  }

  .footer-inner {
    grid-template-columns: 1fr
  }

  .usecase-panel {
    flex-direction: column;
    padding: 28px 22px
  }

  .usecase-visual {
    width: 120px;
    height: 120px
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center
  }

  .contact-form-card {
    padding: 28px 20px
  }

  .tech-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .industries-grid {
    grid-template-columns: 1fr
  }

  .tech-grid {
    grid-template-columns: 1fr
  }

  .trust-icons {
    gap: 12px
  }
}