/* ========================================
   TECHTICALLY — style.css
   Colors: #27b5c9 | #f8a101 | #f57814
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── Variables ── */
:root {
  --cyan: #27b5c9;
  --amber: #f8a101;
  --orange: #f57814;
  --dark: #0d1b2a;
  --mid: #1e3448;
  --text: #1a2e40;
  --muted: #607080;
  --light: #f0f8fa;
  --white: #ffffff;
  --card-bg: #ffffff;
  --border: rgba(39, 181, 201, .18);
  --shadow: 0 8px 40px rgba(39, 181, 201, .10);
  --font-h: 'Outfit', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --ease: cubic-bezier(.25, .8, .25, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glow-cyan: 0 0 20px rgba(39, 181, 201, 0.3);
  --glow-orange: 0 0 20px rgba(245, 120, 20, 0.3);
}

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

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

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── Utility ── */
.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 64px 0;
}

.text-center {
  text-align: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(39, 181, 201, .1);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ── Gradient Text ── */
.grad {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .25s var(--ease-spring), box-shadow .25s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  color: var(--white);
  box-shadow: 0 6px 28px rgba(39, 181, 201, .35);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(245, 120, 20, .40);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
}

.btn-outline:hover {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(39, 181, 201, .30);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER / NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all .35s var(--ease);
}

body.home-page #header:not(.scrolled) .nav-links a {
  color: var(--white);
}

body.home-page #header:not(.scrolled) .hamburger span {
  background: var(--white);
}

body.home-page #header:not(.scrolled) .logo img {
  filter: brightness(0) invert(1);
}

/* Entrance Animations */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes heroScaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-copy.reveal.visible {
  animation: heroFadeUp 1s var(--ease) forwards;
}

.hero-visual.reveal.visible {
  animation: heroScaleIn 1.2s var(--ease) forwards;
}

#header.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 2px 32px rgba(39, 181, 201, .12);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

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

.nav-links a {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
  letter-spacing: .02em;
  position: relative;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 12px;
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  transition: color .2s;
}

.mobile-nav a:hover {
  color: var(--cyan);
}

.close-nav {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  font-family: var(--font-h);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(39, 181, 201, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(248, 161, 1, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(245, 120, 20, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(39, 181, 201, 0.1) 0%, transparent 50%);
  filter: blur(100px);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}

/* BG blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
}

.blob1 {
  width: 600px;
  height: 600px;
  background: var(--cyan);
  top: -200px;
  right: -100px;
  animation: blobFloat 15s ease-in-out infinite;
  opacity: 0.2;
}

.blob2 {
  width: 500px;
  height: 500px;
  background: var(--orange);
  bottom: -150px;
  left: -100px;
  animation: blobFloat 20s ease-in-out infinite reverse;
  opacity: 0.15;
}

.blob3 {
  width: 300px;
  height: 300px;
  background: var(--amber);
  top: 30%;
  right: 20%;
  animation: blobFloat 18s ease-in-out infinite 2s;
  opacity: 0.1;
}

@keyframes blobFloat {

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

  33% {
    transform: translate(18px, -22px) scale(1.04);
  }

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title .grad {
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.stat-num span {
  color: var(--cyan);
}

.stat-label {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1000px;
}

.premium-visual-container {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    url("./../images/3d-person.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  backdrop-filter: blur(20px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--glow-cyan);
  animation: orbRotate 20s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-orb-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  opacity: 0.8;
  filter: drop-shadow(0 0 20px rgba(39, 181, 201, 0.4));
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.abstract-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotateClockwise 30s linear infinite;
}

.tech-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--ease-spring), background 0.3s;
}

.tech-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05) translateZ(20px);
}

.tc-icon {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--glass-border);
}

.tc-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.tc-val {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
}

.tech-card.c1 {
  top: 10%;
  right: -100px;
  animation: cardFloat 5s ease-in-out infinite;
}

.tech-card.c2 {
  bottom: 15%;
  left: -100px;
  animation: cardFloat 6s ease-in-out infinite 1s;
}

.tech-card.c3 {
  top: 20%;
  left: -15%;
  transform: translateY(-50%);
  animation: cardFloat 7s ease-in-out infinite 0.5s;
}

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

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

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

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

/* Unused hero card styles removed */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   TICKER
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ticker-wrap {
  background: linear-gradient(90deg, var(--dark), var(--mid));
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-inline: 36px;
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.ticker-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease), border-color .35s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39, 181, 201, .06) 0%, rgba(245, 120, 20, .04) 100%);
  opacity: 0;
  transition: opacity .35s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(39, 181, 201, .14);
  border-color: var(--cyan);
}

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

.sc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(39, 181, 201, .12), rgba(245, 120, 20, .08));
  position: relative;
  z-index: 1;
}

.sc-title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.sc-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.sc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 700;
  color: var(--cyan);
  transition: gap .25s var(--ease-spring);
  position: relative;
  z-index: 1;
}

.service-card:hover .sc-arrow {
  gap: 12px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCTS
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#products {
  background: linear-gradient(160deg, #f5fcfe 0%, #fffaf4 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(39, 181, 201, .07);
  border: 1.5px solid var(--border);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(39, 181, 201, .16);
}

.pc-header {
  padding: 32px 28px 24px;
  position: relative;
  overflow: hidden;
}

.pc-header::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  right: -60px;
  top: -60px;
  opacity: .08;
}

.pc-h1 .pc-header::after {
  background: var(--cyan);
}

.pc-h2 .pc-header::after {
  background: var(--amber);
}

.pc-h3 .pc-header::after {
  background: var(--orange);
}

.pc-badge {
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 14px;
}

.badge-cyan {
  background: rgba(39, 181, 201, .12);
  color: var(--cyan);
}

.badge-amber {
  background: rgba(248, 161, 1, .12);
  color: var(--amber);
}

.badge-orange {
  background: rgba(245, 120, 20, .12);
  color: var(--orange);
}

.pc-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.pc-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

.pc-body {
  padding: 0 28px 28px;
}

.pc-features {
  margin-top: 0;
}

.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--light);
}

.pc-features li:last-child {
  border: none;
}

.pc-features li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 800;
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY US
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#why {
  background: linear-gradient(135deg, var(--dark) 0%, #0a2035 100%);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .04;
  top: -200px;
  right: -200px;
}

#why .section-title,
#why .section-sub {
  color: rgba(255, 255, 255, .9);
}

#why .section-sub {
  color: rgba(255, 255, 255, .55);
}

#why .tag {
  background: rgba(39, 181, 201, .15);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 32px 26px;
  transition: background .35s, border-color .35s, transform .35s var(--ease-spring);
}

.why-card:hover {
  background: rgba(39, 181, 201, .08);
  border-color: rgba(39, 181, 201, .3);
  transform: translateY(-6px);
}

.why-num {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(39, 181, 201, .2);
  line-height: 1;
  margin-bottom: 14px;
}

.why-title {
  font-family: var(--font-h);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#process {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 20px 40px;
  text-align: center;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cyan);
  margin: 0 auto 24px;
  position: relative;
  transition: background .3s, color .3s, transform .35s var(--ease-spring);
}

.step:hover .step-circle {
  background: var(--cyan);
  color: var(--white);
  transform: scale(1.1);
}

.step-title {
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#contact {
  background: linear-gradient(160deg, #f0fbfd 0%, #fffaf4 100%);
}

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

.contact-info {}

.contact-headline {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 18px;
}

.contact-sub {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  transition: border-color .25s, transform .25s var(--ease-spring);
}

.contact-method:hover {
  border-color: var(--cyan);
  transform: translateX(6px);
}

.cm-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, rgba(39, 181, 201, .12), rgba(245, 120, 20, .08));
  flex-shrink: 0;
}

.cm-label {
  font-size: .75rem;
  color: var(--muted);
}

.cm-value {
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--dark);
  font-size: .95rem;
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

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

label {
  display: block;
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text);
  margin-bottom: 8px;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-b);
  font-size: .92rem;
  color: var(--dark);
  background: var(--light);
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
  resize: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(39, 181, 201, .1);
}

textarea {
  min-height: 120px;
}

.form-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .6);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo img {
  height: 36px;
  filter: brightness(2);
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.75;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  transition: color .2s, padding-left .2s;
}

.footer-col ul li a:hover {
  color: var(--cyan);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  color: var(--cyan);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: border-color .25s, background .25s, transform .25s var(--ease-spring);
}

.social-link:hover {
  border-color: var(--cyan);
  background: rgba(39, 181, 201, .15);
  transform: translateY(-3px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

.reveal-delay-5 {
  transition-delay: .5s;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL TO TOP
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(39, 181, 201, .3);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s, transform .35s var(--ease-spring);
  border: none;
  z-index: 900;
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-4px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   SIDE LAYOUT (About / Why Us)
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.side-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

.side-layout.reverse {
  flex-direction: row-reverse;
}

.side-image {
  flex: 1;
  position: relative;
}

.side-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.side-content {
  flex: 1.1;
}

.image-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--white);
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
  animation: blobFloat 6s ease-in-out infinite;
}

.ib-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.ib-txt {
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 4px;
}

.check-list {
  margin-top: 24px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--dark);
}

.check-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: rgba(39, 181, 201, .1);
  color: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}

/* Why feat grid */
.why-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.why-feat {
  display: flex;
  gap: 16px;
}

.wf-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.wf-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.wf-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS COUNTER
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.si-num {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.si-label {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.testi-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.testi-stars {
  color: #ffb800;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.testi-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 30px;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tu-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}

.tu-name {
  font-weight: 700;
  color: var(--dark);
}

.tu-role {
  font-size: .8rem;
  color: var(--muted);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media(max-width: 1024px) {
  .side-layout {
    gap: 40px;
  }

  .stats-counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media(max-width: 860px) {

  .side-layout,
  .side-layout.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .why-feat-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

  .image-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
}

@media(max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card-stack {
    width: 320px;
    height: 360px;
  }
}

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

  .hero-sub {
    margin-inline: auto;
  }

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

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

  .hero-visual {
    display: none;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

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

  .process-steps::before {
    display: none;
  }
}

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* ── Modern Contact Styles ── */
.contact-form form input,
.contact-form form select,
.contact-form form textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-b);
  font-size: 1rem;
  color: var(--dark);
  transition: all .3s var(--ease);
}

.contact-form form input:focus,
.contact-form form select:focus,
.contact-form form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(39, 181, 201, 0.1);
}

.contact-form form label {
  display: block;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .85rem;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.form-group {
  margin-bottom: 24px;
}

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

/* ── Detailed Service Styles ── */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.pc-box {
  padding: 30px;
  border-radius: 20px;
  height: 100%;
}

.pc-box.pros {
  background: rgba(46, 213, 115, 0.05);
  border: 1px solid rgba(46, 213, 115, 0.1);
}

.pc-box.cons {
  background: rgba(255, 71, 87, 0.05);
  border: 1px solid rgba(255, 71, 87, 0.1);
}

.pc-title {
  font-family: var(--font-h);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-list {
  list-style: none;
  padding: 0;
}

.pc-list li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--muted);
}

.pc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pros .pc-list li::before {
  background: #2ed573;
}

.cons .pc-list li::before {
  background: #ff4757;
}

.tech-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.spec-item {
  background: var(--light);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 5px;
}

.spec-val {
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--dark);
}

/* ── Product Detail Styles ── */
.product-hero {
  padding: 180px 0 100px;
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.product-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

.pg-main {
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pg-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pg-side-item {
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease);
}

.pricing-card.popular {
  border-color: var(--cyan);
  box-shadow: 0 20px 40px rgba(39, 181, 201, 0.1);
  transform: scale(1.05);
}

.price-tag {
  font-size: 3rem;
  font-family: var(--font-h);
  font-weight: 800;
  margin: 20px 0;
}

.price-tag span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {

  /* About Section */
  #about .section-title {
    font-size: 2.2rem;
  }

  #about .section-sub {
    font-size: 0.95rem;
  }

  #about .check-list li {
    font-size: 0.9rem;
  }

  /* CTA Section */
  .section .reveal .section-title {
    font-size: 2.5rem !important;
  }

  .section .reveal p {
    font-size: 1rem !important;
  }

  .section .reveal .btn {
    font-size: 0.95rem !important;
    padding: 14px 28px !important;
  }
}

@media (max-width: 992px) {

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .contact-grid .section-title {
    font-size: 2rem !important;
  }

  .contact-grid p {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
  }

  .contact-grid img {
    border-radius: 24px !important;
  }
}

@media (max-width: 992px) {

  section.section[style*="background: var(--light); color: var(--dark);"] .contact-grid {
    width: 100% !important;
    padding: 40px 28px !important;
  }

  section.section[style*="background: var(--light); color: var(--dark);"] .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  section.section[style*="background: var(--light); color: var(--dark);"] .contact-form input,
  section.section[style*="background: var(--light); color: var(--dark);"] .contact-form select,
  section.section[style*="background: var(--light); color: var(--dark);"] .contact-form textarea {
    font-size: 0.95rem !important;
    padding: 15px 16px !important;
  }
}




/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  /* About Section */
  #about .section-title {
    font-size: 1.8rem;
  }

  #about .section-sub {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  #about .check-list li {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* CTA Section */
  .section .reveal .section-title {
    font-size: 2rem !important;
  }

  .section .reveal p {
    font-size: 0.92rem !important;
    line-height: 1.7;
  }

  .section .reveal .btn {
    font-size: 0.9rem !important;
    padding: 13px 24px !important;
  }
}

@media (max-width: 768px) {

  /* Stack image + text vertically */
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .contact-grid>div {
    width: 100%;
  }

  .contact-grid .section-title {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
    text-align: left !important;
  }

  .contact-grid p {
    font-size: 0.85rem !important;
    line-height: 1.65 !important;
    margin-bottom: 14px !important;
  }

  .contact-grid .tag {
    font-size: 0.72rem !important;
    margin-bottom: 10px !important;
  }

  .contact-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px !important;
  }
}

@media (max-width: 768px) {

  section.section[style*="background: var(--light); color: var(--dark);"] .contact-grid {
    padding: 30px 18px !important;
    border-radius: 20px !important;
  }

  section.section[style*="background: var(--light); color: var(--dark);"] .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  section.section[style*="background: var(--light); color: var(--dark);"] .contact-form .form-row {
    gap: 18px !important;
  }

  section.section[style*="background: var(--light); color: var(--dark);"] .contact-form input,
  section.section[style*="background: var(--light); color: var(--dark);"] .contact-form select,
  section.section[style*="background: var(--light); color: var(--dark);"] .contact-form textarea {
    padding: 14px 15px !important;
    font-size: 0.9rem !important;
    border-radius: 12px !important;
  }

  section.section[style*="background: var(--light); color: var(--dark);"] .contact-form textarea {
    min-height: 130px !important;
  }
}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

  /* About */
  #about .section-title {
    font-size: 1.5rem;
  }

  #about .section-sub,
  #about .check-list li {
    font-size: 0.82rem;
  }

  /* CTA */
  .section .reveal .section-title {
    font-size: 1.6rem !important;
  }

  .section .reveal p {
    font-size: 0.85rem !important;
  }

  .section .reveal .btn {
    font-size: 0.85rem !important;
    padding: 12px 22px !important;
  }
}

@media (max-width: 480px) {

  .contact-grid {
    gap: 18px !important;
  }

  .contact-grid .section-title {
    font-size: 1.3rem !important;
  }

  .contact-grid p {
    font-size: 0.75rem !important;
    line-height: 1.55 !important;
  }

  .contact-grid .tag {
    font-size: 0.65rem !important;
    padding: 6px 12px !important;
  }

  .contact-grid img {
    border-radius: 16px !important;
  }
}