/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #030712;
  padding-top: var(--nav-h);
}

/* Mesh grid overlay */
.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Ambient glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}
.hero-orb1 {
  width: 700px; height: 700px;
  right: -100px; top: -200px;
  background: radial-gradient(circle, rgba(232,98,10,0.18), transparent 70%);
  animation: floatOrb 12s ease-in-out infinite alternate;
}
.hero-orb2 {
  width: 500px; height: 500px;
  left: -80px; bottom: -100px;
  background: radial-gradient(circle, rgba(79,70,229,0.12), transparent 70%);
  animation: floatOrb 15s ease-in-out infinite alternate-reverse;
}
.hero-orb3 {
  width: 400px; height: 400px;
  left: 40%; top: 10%;
  background: radial-gradient(circle, rgba(249,115,22,0.05), transparent 70%);
  animation: floatOrb 9s ease-in-out infinite alternate;
  animation-delay: -3s;
}
@keyframes floatOrb {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.12); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding: 100px 5% 80px;
  position: relative;
  z-index: 5;
  max-width: none;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 32px;
  text-transform: uppercase;
  animation: fadeUp 0.6s ease both;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}
.hero-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: sweep 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes sweep {
  0% { left: -100%; }
  20%, 100% { left: 200%; }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--orange);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
  letter-spacing: -3px;
  line-height: 1.0;
  color: var(--white);
  animation: fadeUp 0.7s 0.1s ease both;
  font-weight: 900;
  margin-bottom: 28px;
}
.hero-title-top {
  display: block;
  font-size: 0.65em;
  font-weight: 500;
  letter-spacing: -1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.hero-title-main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 16px;
  line-height: 1.0;
}
.hero-accent {
  background: linear-gradient(to right, #f97316, #fb923c, #f97316);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: shine 4s linear infinite;
}
@keyframes shine {
  to { background-position: 200% center; }
}
.hero-accent::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.25rem;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: none;
  animation: fadeUp 0.7s 0.2s ease both;
  font-weight: 400;
}

/* Service pills row */
.hero-services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  animation: fadeUp 0.7s 0.25s ease both;
}
.hsr-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}
.hsr-pill i { font-size: 0.85rem; color: var(--orange); }
.hsr-pill-more {
  border-style: dashed;
  opacity: 0.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.35s ease both;
}

.hero-actions .btn-orange {
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
  animation: fadeUp 0.7s 0.45s ease both;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hstat-num {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.hstat-label {
  font-size: 0.85rem;
  color: #64748b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.hstat-div {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.05);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 620px;
  animation: fadeUp 0.8s 0.2s ease both;
}
/* Decorative glow ring behind cards */
.hero-glow-ring {
  position: absolute;
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(232,98,10,0.08);
  box-shadow:
    0 0 0 60px rgba(232,98,10,0.03),
    0 0 0 120px rgba(232,98,10,0.015);
  pointer-events: none;
  z-index: 0;
  animation: ringPulse 6s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.05); }
}
.hero-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hero image panel (replaces chart) */
.hero-img-wrap {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(232,98,10,0.12),
    0 0 60px rgba(232,98,10,0.1);
  animation: float1 8s ease-in-out infinite;
  z-index: 2;
}
@keyframes float1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-18px); }
}
.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(3,7,18,0.7) 100%
  );
  pointer-events: none;
}
/* Floating stat badge on the image */
.hero-img-stat {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.his-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(232,98,10,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
}
.his-num {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1;
}
.his-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: 0.3px;
}


.hc-side {
  width: 220px;
  padding: 24px;
  animation: float2 9s ease-in-out infinite;
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.hc-side1 {
  top: 280px;
  left: -20px;
}
.hc-side2 {
  top: 380px;
  right: -20px;
  animation-delay: -4s;
}
.hcs-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.05);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.hcs-text {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}
.hcs-sub {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 6px;
}
/* Progress bar on side cards */
.hcs-progress {
  margin-top: 14px;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}
.hcs-bar {
  height: 100%;
  width: 80%;
  background: linear-gradient(90deg, var(--orange), #fb923c);
  border-radius: 100px;
  animation: barGrow 1.5s 1s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes barGrow {
  from { width: 0; }
}

.hc-float {
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 28px;
  width: 300px;
  white-space: nowrap;
  animation: float3 6s ease-in-out infinite;
}
@keyframes float3 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}
.hcf-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hcf-dot {
  width: 10px;
  height: 10px;
  background: #3b82f6;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.6);
}
.hcf-name {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}

/* SCROLL HINT */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 40px;
  position: relative;
  z-index: 5;
  animation: fadeUp 1s 1s ease both;
}
.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.5); transform-origin: top; opacity: 0.2; }
}
.hero-scroll-hint span {
  font-size: 0.75rem;
  color: #64748b;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

/* MARQUEE */
.marquee-wrap {
  background: #0b0f19;
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}
.marquee-track .dot {
  color: var(--orange) !important;
  font-size: 0.8rem;
  margin: 0 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ABOUT TEASER */
.about-teaser {
  background: #0b0f19;
  position: relative;
}
.about-teaser::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  padding: 40px;
  min-height: 550px;
}
.about-img-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  z-index: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.about-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(3, 7, 18, 0.8));
  border-radius: 32px;
  z-index: 0;
}
.about-img-card {
  position: relative;
  z-index: 1;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 360px;
  margin-top: auto;
  transform: translateY(60px) translateX(-30px);
}
.aic-logo {
  margin-bottom: 24px;
}
.aic-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffffff;
}
.aic-sub {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 6px;
}
.aic-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 24px 0;
}
.aic-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aic-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #e2e8f0;
  font-weight: 500;
}
.aic-fact span {
  font-size: 1.2rem;
  color: var(--orange);
}

.about-float-tag {
  position: absolute;
  bottom: 16px;
  right: -16px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}
.pill {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pill:hover {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
  transform: translateY(-2px);
}

/* SERVICES */
.services-section {
  background: #030712;
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 24px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  display: block;
  text-decoration: none;
  position: relative;
  background: #0b0f19;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.svc-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
  background: #111827;
}
.svc-card:hover::after {
  opacity: 1;
}

.svc-card-dark {
  background: #0f172a;
}
.svc-card-dark .svc-title {
  color: #ffffff;
}
.svc-card-dark .svc-desc {
  color: #94a3b8;
}
.svc-card-dark .svc-num {
  color: rgba(255,255,255,0.02);
}
.svc-card-dark .svc-arrow {
  color: var(--orange);
}

.svc-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 4rem;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  transition: 0.4s;
}
.svc-card:hover .svc-num {
  color: rgba(249, 115, 22, 0.08);
}

.svc-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--orange);
}
.svc-card:hover .svc-icon-wrap {
  background: linear-gradient(135deg, var(--orange), #fb923c);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.svc-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.svc-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.7;
}
.svc-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-size: 1.4rem;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-12px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.svc-card:hover .svc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* NUMBERS */
.numbers-section {
  background: #030712;
  position: relative;
  overflow: hidden;
}
.numbers-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.numbers-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.numbers-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1), transparent 70%);
  border-radius: 50%;
  transform: translate(30%, 30%);
}
.stat-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(15, 23, 42, 0.8);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: #ffffff;
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 12px;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.stat-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: rgba(249, 115, 22, 0.2);
  transition: 0.4s;
}
.stat-card:hover .stat-icon {
  color: rgba(249, 115, 22, 0.6);
  transform: scale(1.1);
}

/* PORTFOLIO */
.portfolio-section {
  background: #030712;
  position: relative;
}
.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}
.portfolio-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
.port-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #0b0f19;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.port-big {
  grid-column: 1/3;
  aspect-ratio: 16/8;
}
.port-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  background: linear-gradient(135deg, #1e293b, #0f172a);
}
.port-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
  transform: translateY(-8px);
}
.port-card:hover .port-thumb {
  transform: scale(1.08);
}
.port-emoji {
  font-size: 5rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.95) 0%, rgba(3, 7, 18, 0.4) 50%, transparent 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s;
}
.port-card:hover .port-overlay {
  opacity: 1;
}
.port-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.2);
}
.port-name {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
}

/* TESTIMONIALS */
.testimonials-section {
  background: #0b0f19;
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.testi-card {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.testi-card::before {
  content: '""';
  position: absolute;
  top: 24px; right: 32px;
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
}
.testi-card:hover {
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transform: translateY(-8px);
  background: rgba(15, 23, 42, 0.8);
}
.testi-stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.testi-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #fb923c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
.testi-name {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffffff;
}
.testi-role {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 4px;
}

/* CTA */
.cta-section {
  background: #0b0f19;
  padding: 160px 5%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 8s infinite alternate;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 32px;
  }
  .hero-visual {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .numbers-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .port-big {
    grid-column: 1/3;
  }
}

@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-stats {
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hstat-div {
    display: none;
  }
  .hero-visual {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .numbers-right {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .port-big {
    grid-column: 1;
    aspect-ratio: 4/3;
  }
  .cta-section {
    padding: 100px 24px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .hero-badges {
    font-size: 0.7rem;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .hero-inner {
    padding: 60px 16px;
    gap: 40px;
  }
  .hstat-num {
    font-size: 1.6rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .numbers-right {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .cta-section {
    padding: 80px 16px;
  }
  .cta-orb {
    width: 400px;
    height: 400px;
  }
}
