/* ============ ROOT VARIABLES ============ */
:root {
  --primary: #ff5c2f;
  --primary-soft: #ff8a5c;
  --black: #000000;
  --white: #ffffff;
  --bg: #ffffff;
  --text: #0a0a0a;
  --muted: #6b6b6b;
  --border: rgba(0, 0, 0, 0.08);
  --card-bg: #ffffff;
  --soft-bg: #fafafa;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.10);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
section { position: relative; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p { color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.muted { color: var(--muted); font-weight: 600; }
.muted-sm { color: var(--muted); font-size: 0.9rem; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 92, 47, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 92, 47, 0.45);
  background: #ff4a18;
}
.btn-ghost {
  background: rgba(0,0,0,0.04);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  transform: translateY(-2px);
  background: #1a1a1a;
}
.btn-large {
  padding: 18px 38px;
  font-size: 1.05rem;
}

/* ============ NAVBAR ============ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(0,0,0,0.06);

  padding: 18px 0;
}

.nav-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;

  padding: 0 24px;

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  color: #111;

  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-mark {
  color: #ff5c2f;
  font-size: 1.1rem;
}

.logo-text span {
  color: #777;
  font-size: 0.75rem;
  margin-left: 6px;
  letter-spacing: 0.15em;
  font-weight: 500;
}

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

.nav-links a {
  text-decoration: none;
  color: #111;

  font-size: 0.92rem;
  font-weight: 500;

  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ff5c2f;
}

.nav-btn {
  padding: 12px 22px;
}

/* spacing fix */
.hero {
  padding-top: 180px;
}

/* mobile */

@media(max-width: 900px) {

  .nav-links {
    display: none;
  }

}

@media(max-width: 640px) {

  .nav-container {
    padding: 0 18px;
  }

  .nav-btn {
    padding: 10px 18px;
    font-size: 0.84rem;
  }

  .logo-text span {
    display: none;
  }

}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 32px 80px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-title {
  margin: 1rem 0 1.8rem;
  letter-spacing: -0.04em;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: var(--muted);
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.hero-stats h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
}
.hero-stats p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

/* orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  z-index: 0;
  animation: float 14s ease-in-out infinite;
}
.orb-1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: -100px; left: -100px;
}
.orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #ffa07a, transparent 70%);
  bottom: -80px; right: -80px;
  animation-delay: -4s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #ffd9c9, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  animation-delay: -8s;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-30px) scale(1.05); }
}

/* ============ SECTIONS GENERAL ============ */
.section {
  padding: 130px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 80px;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 34px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,92,47,0.04), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,92,47,0.2);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,92,47,0.1), rgba(255,92,47,0.04));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: all 0.4s var(--ease);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; margin-bottom: 22px; }
.learn-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.3s var(--ease);
}
.service-card:hover .learn-more { letter-spacing: 0.02em; }

/* ============ ABOUT ============ */
.about { background: var(--soft-bg); max-width: none; }
.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left h2 { margin: 1rem 0 1.8rem; }
.about-text {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}
.about-left .btn { margin-top: 1rem; }
.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-card .dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  margin-bottom: 16px;
}
.about-card h4 { margin-bottom: 6px; font-size: 1.02rem; }
.about-card p { font-size: 0.88rem; }

/* ============ WORK ============ */
.work-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.work-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: all 0.5s var(--ease);
}
.work-card:hover { transform: translateY(-6px); }
.work-image {
  height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 1rem;
  transition: all 0.6s var(--ease);
}
.work-card:hover .work-image { transform: scale(1.02); }
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.25));
  transition: opacity 0.4s var(--ease);
}
.work-mock {
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
}
.work-meta { padding: 26px 6px 6px; }
.tag {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.work-meta h3 { margin-bottom: 8px; }
.work-meta p { font-size: 0.95rem; }

/* ============ WHY ============ */
.why { background: var(--soft-bg); max-width: none; }
.why-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.4s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,92,47,0.15);
}
.why-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
}
.why-card h4 { margin-bottom: 8px; }
.why-card p { font-size: 0.92rem; }

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: all 0.4s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}
.t-author h5 { font-size: 0.95rem; }
.t-author span { font-size: 0.82rem; color: var(--muted); }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--black);
  color: var(--white);
  padding: 140px 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,92,47,0.4), transparent 70%);
  filter: blur(100px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-inner h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cta-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 90px 32px 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}
.footer-brand p {
  margin: 20px 0 24px;
  font-size: 0.95rem;
  max-width: 300px;
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--soft-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.socials a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-col h5 {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p { font-size: 0.88rem; }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.footer-legal a:hover { color: var(--primary); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .work-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section { padding: 90px 24px; }
  .hero { padding: 120px 24px 60px; }
  .hero-stats { gap: 36px; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .about-right { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-container { padding: 0 20px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .work-image { height: 260px; }
}
/* ============ VYBE SECTION ============ */

.vybe-section {
  position: relative;
  overflow: hidden;
}

.vybe-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.vybe-text {
  max-width: 640px;
  margin: 26px 0 38px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.vybe-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.vybe-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vybe-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 92, 47, 0.08);
  color: #ff5c2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.vybe-feature h4 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.vybe-feature p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.vybe-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.vybe-right {
  position: relative;
}

.vybe-main-card {
  background: #000;
  color: #fff;
  border-radius: 36px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.vybe-main-card::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(255,92,47,0.28),
    transparent 70%
  );
  top: -120px;
  right: -120px;
  filter: blur(60px);
  z-index: 1;
}

.vybe-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.vybe-main-card h3 {
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
  z-index: 3;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.vybe-main-card p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  position: relative;
  z-index: 3;
}

.vybe-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.vybe-mini-card {
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 28px;
  transition: all 0.35s ease;
}

.vybe-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.vybe-mini-card h4 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.vybe-mini-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.vybe-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}

.vybe-orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #ff5c2f, transparent 70%);
  top: -120px;
  right: -120px;
}

.vybe-orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #ffd9cd, transparent 70%);
  bottom: -100px;
  left: -100px;
}

/* ===== HOME BUTTON ===== */

.home-btn {
  position: fixed;
  top: 28px;
  left: 28px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 100px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0,0,0,0.08);
  color: #111;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.home-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

/* ===== SECONDARY BUTTON ===== */

.btn-secondary {
  background: rgba(0,0,0,0.05);
  color: #111;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(0,0,0,0.08);
}

/* ===== RESPONSIVE ===== */

@media(max-width: 980px) {

  .vybe-container {
    grid-template-columns: 1fr;
  }

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

  .vybe-text {
    margin-inline: auto;
  }

  .vybe-features {
    max-width: 680px;
    margin-inline: auto;
  }

  .vybe-buttons {
    justify-content: center;
  }

}

@media(max-width: 640px) {

  .vybe-mini-grid {
    grid-template-columns: 1fr;
  }

  .vybe-main-card {
    padding: 36px 28px;
  }

  .home-btn {
    top: 18px;
    left: 18px;
    padding: 12px 18px;
    font-size: 0.84rem;
  }

}

.company-meta {
  margin-top: 8px;
  font-size: 0.82rem;
  color: #8a8a8a;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

@media(max-width: 640px) {

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

}

/* ===== PARTNERS SECTION ===== */

.partners-strip {
  padding: 40px 0 10px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.partners-container {
  width: 100%;
  position: relative;
}

.partners-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 36px;
  font-weight: 600;
}

/* ===== LOGO SLIDER ===== */

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 24px;

  width: max-content;

  animation: scrollLogos 24s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* ===== LOGO CARD ===== */

.logo-item {
  width: 220px;
  height: 100px;

  background: #fff;

  border: 1px solid rgba(0,0,0,0.06);

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 22px;

  flex-shrink: 0;

  transition: all 0.35s ease;

  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.logo-item:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 50px rgba(0,0,0,0.08);

  border-color: rgba(255,92,47,0.15);
}

/* ===== LOGO IMAGES ===== */

.logo-item img {
  width: auto;
  max-width: 160px;

  height: auto;
  max-height: 42px;

  object-fit: contain;

  opacity: 0.92;

  transition: all 0.3s ease;
}

.logo-item:hover img {
  opacity: 1;
  transform: scale(1.03);
}

/* ===== ANIMATION ===== */

@keyframes scrollLogos {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

/* ===== EDGE FADE EFFECT ===== */

.partners-strip::before,
.partners-strip::after {

  content: '';

  position: absolute;

  top: 0;

  width: 120px;
  height: 100%;

  z-index: 2;

  pointer-events: none;
}

.partners-strip::before {
  left: 0;

  background:
    linear-gradient(
      to right,
      #fff 0%,
      rgba(255,255,255,0.92) 35%,
      transparent 100%
    );
}

.partners-strip::after {
  right: 0;

  background:
    linear-gradient(
      to left,
      #fff 0%,
      rgba(255,255,255,0.92) 35%,
      transparent 100%
    );
}

/* ===== SERVICES GAP FIX ===== */

.services {
  padding-top: 50px;
}

/* ===== MOBILE ===== */

@media(max-width: 768px) {

  .partners-strip {
    padding: 32px 0 0;
  }

  .partners-label {
    margin-bottom: 28px;
    font-size: 0.72rem;
  }

  .logo-track {
    gap: 18px;
  }

  .logo-item {
    width: 170px;
    height: 82px;

    padding: 16px;

    border-radius: 18px;
  }

  .logo-item img {
    max-width: 120px;
    max-height: 32px;
  }

  .services {
    padding-top: 30px;
  }

}

/* ===== CLIENTS SECTION ===== */

.clients-strip {
  padding: 20px 0 90px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.clients-container {
  width: 100%;
  position: relative;
}

.clients-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 40px;
  font-weight: 600;
}

/* ===== SLIDER ===== */

.clients-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 24px;

  width: max-content;

  animation: scrollClients 30s linear infinite;
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

/* ===== CLIENT CARD ===== */

.client-item {
  width: 260px;
  height: 120px;

  background: #fff;

  border: 1px solid rgba(0,0,0,0.06);

  border-radius: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  flex-shrink: 0;

  transition: all 0.35s ease;

  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.client-item:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 50px rgba(0,0,0,0.08);

  border-color: rgba(255,92,47,0.15);
}

/* ===== IMAGES ===== */

.client-item img {
  max-width: 180px;
  max-height: 58px;

  width: auto;
  height: auto;

  object-fit: contain;

  opacity: 0.92;

  transition: all 0.3s ease;
}

.client-item:hover img {
  opacity: 1;
  transform: scale(1.03);
}

/* ===== ANIMATION ===== */

@keyframes scrollClients {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

/* ===== EDGE FADE ===== */

.clients-strip::before,
.clients-strip::after {

  content: '';

  position: absolute;

  top: 0;

  width: 120px;
  height: 100%;

  z-index: 2;

  pointer-events: none;
}

.clients-strip::before {
  left: 0;

  background:
    linear-gradient(
      to right,
      #fff 0%,
      rgba(255,255,255,0.92) 35%,
      transparent 100%
    );
}

.clients-strip::after {
  right: 0;

  background:
    linear-gradient(
      to left,
      #fff 0%,
      rgba(255,255,255,0.92) 35%,
      transparent 100%
    );
}

/* ===== MOBILE ===== */

@media(max-width: 768px) {

  .clients-strip {
    padding: 10px 0 70px;
  }

  .client-item {
    width: 190px;
    height: 90px;

    padding: 18px;

    border-radius: 18px;
  }

  .client-item img {
    max-width: 130px;
    max-height: 40px;
  }

}
.partners-strip {
  padding-bottom: 0;
}

.clients-strip {
  padding-top: 0;
  margin-top: -50px;
}

.work {
  padding-top: 40px;
}
/* ===== PREMIUM COMPACT SPACING ===== */

.services {
  padding-bottom: 50px;
}

.about {
  padding-top: 40px !important;
}
/* ===== REDUCE GAP AFTER VYBE ===== */

.vybe-section {
  padding-bottom: 40px;
}

.why {
  padding-top: 40px !important;
  margin-top: -20px;
}
/* ===== REDUCE GAP BEFORE TESTIMONIALS ===== */

.why {
  padding-bottom: 40px;
}

.testimonials {
  padding-top: 40px !important;
  margin-top: -20px;
}

.logo-item {
  width: 260px;
  height: 120px;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  flex-shrink: 0;

  transition: all 0.35s ease;

  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.logo-item img {
  max-width: 85%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.service-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  color:#ff5c2f;
  font-weight:600;
  cursor:pointer;
  position:relative;
  z-index:20;
}

.service-link:hover{
  opacity:0.8;
}


/* ============ BLOG SECTION ============ */

.blogs-section{
  padding-top:80px;
}

.blogs-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:70px;
}

.blog-card{
  border:1px solid #eee;
  border-radius:32px;
  overflow:hidden;
  background:#fff;
  text-decoration:none;
  transition:0.4s ease;
}

.blog-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.blog-image{
  width:100%;
  height:260px;
  overflow:hidden;
  background:#111;
  display:flex;
  align-items:center;
  justify-content:center;
}

.blog-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:0.5s ease;
}

.blog-card:hover .blog-image img{
  transform:scale(1.05);
}

.blog-content{
  padding:32px;
}

.blog-tag{
  color:#ff5c2f;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:0.75rem;
  font-weight:600;
}

.blog-content h3{
  font-size:2rem;
  line-height:1.2;
  margin-top:18px;
  margin-bottom:20px;
  color:#111;
  letter-spacing:-1px;
}

.blog-content p{
  color:#666;
  line-height:1.8;
  margin-bottom:26px;
  font-size:1rem;
}

.blog-link{
  color:#ff5c2f;
  font-weight:600;
  font-size:1rem;
}

@media(max-width:1024px){

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

}
/* ============ FAQ SECTION ============ */

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 24px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.08rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: #111;
  position: relative;
  padding-right: 40px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: #ff5c2f;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-answer p {
  padding-top: 18px;
  line-height: 1.8;
  color: #666;
}

/* ACTIVE STATE */

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
/* ===== RESPONSIVE ===== */

@media(max-width: 980px) {

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

}
.blogs-section {
  padding-top: 40px;
}

.faq-section {
  padding-top: 40px;
}

.blog-card{
  display:flex;
  flex-direction:column;
  height:100%;
}

.blog-content{
  flex:1;
  display:flex;
  flex-direction:column;
}

.blog-link{
  margin-top:auto;
}