/* =========================================
   HITWAVE — Global Stylesheet
   Style: Flat, Editorial, High-End
   Palette: Black / Warm White / Red Accent
   ========================================= */

/* === CSS VARIABLES === */
:root {
  --black: #0D0D0D;
  --white: #FAFAF8;
  --off-white: #F2F2EE;
  --gray-100: #EBEBЕ7;
  --gray-200: #DCDCD8;
  --gray-400: #999994;
  --gray-600: #555552;
  --gray-800: #2A2A28;
  --accent: #E8181A;
  --accent-soft: #FFF1F1;
  --font-primary: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.28s ease;
  --radius: 12px;
  --shadow: 0 16px 48px rgba(13, 13, 13, 0.10);
  --shadow-sm: 0 4px 16px rgba(13, 13, 13, 0.07);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* === CONTAINERS === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 104px 0;
}

/* === TYPOGRAPHY === */
.section-tag {
  display: block;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  margin-bottom: 64px;
}

.highlight {
  color: var(--accent);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.35s ease;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  transition: all var(--transition);
}

.nav-cta:hover {
  background: transparent;
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 150vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 15% 50%, rgba(232, 24, 26, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 30%, rgba(232, 24, 26, 0.04) 0%, transparent 60%);
}

/* Subtle grid lines */
.hero-bg::before {
  content: '';
  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: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  padding: 0 28px;
  padding-top: 80px;
  animation: fadeUpIn 0.75s ease both;
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-label::before,
.hero-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -3px;
  margin-bottom: 32px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
  margin-bottom: 44px;
}

.hero-subtitle .highlight {
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-num {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-family: var(--font-primary);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* === TEAM SECTION === */
.team {
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  padding: 36px 24px 28px;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.team-img-wrap {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 22px;
  border: 3px solid var(--off-white);
  box-shadow: 0 8px 28px rgba(13, 13, 13, 0.13);
  position: relative;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}

.team-card:hover .team-img {
  transform: scale(1.04);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 10px;
}

.social-dot {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 9px;
  font-weight: 700;
  font-family: var(--font-primary);
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.social-dot:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.team-info {
  padding: 0;
}

.team-name {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 5px;
}

.team-role {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* === ENGAGEMENT SECTION === */
.engagement {
  background: var(--white);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.engagement-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

.engagement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(13, 13, 13, 0.13);
}

.engagement-img-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.engagement-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.engagement-card:hover .engagement-img {
  transform: scale(1.04);
}

.engagement-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--black);
  color: white;
  border-radius: 4px;
  padding: 7px 14px;
  font-size: 11px;
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-line {
  display: inline-block;
  width: 8px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.engagement-info {
  padding: 22px 26px 26px;
}

.engagement-info h3 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.engagement-info p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.micro-stats {
  display: flex;
  gap: 20px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}

/* === SERVICES SECTION === */
.service-highlight {
  background: var(--black);
}

.service-highlight .section-title {
  color: var(--white);
}

.service-highlight .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

.service-detail-inline {
  padding: 72px 0;
}

.service-detail-inline:first-of-type {
  padding-top: 0;
}

.service-inner-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse>* {
  direction: ltr;
}

.service-number {
  font-family: var(--font-primary);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.service-detail-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.service-detail-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin-bottom: 32px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.65);
}

.feat-check {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}

/* Service visual image panel */
.service-visual-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.service-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.service-detail-inline:hover .service-visual-img {
  transform: scale(1.03);
}

/* Service visual box */
.service-visual-box {
  border-radius: 16px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sv1 {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.sv3 {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.sv-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.sv-label {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.sv-number {
  font-family: var(--font-primary);
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  display: block;
}

.sv-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 24, 26, 0.12);
  animation: ringPulse 5s ease-in-out infinite;
}

.r1 {
  width: 180px;
  height: 180px;
}

.r2 {
  width: 300px;
  height: 300px;
  animation-delay: 0.8s;
}

.r3 {
  width: 420px;
  height: 420px;
  animation-delay: 1.6s;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.2;
  }
}

/* === CTA BANNER === */
.cta-banner {
  background: #dd5151;
  padding: 100px 0;
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.25;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
  margin-bottom: 36px;
}

.cta-inner .btn-primary {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

.cta-inner .btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

/* === CONTACT SECTION (simplified) === */
.contact-section {
  padding: 104px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info-title {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 18px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  position: relative;
  display: inline-block;
}

.contact-info-title .highlight {
  color: var(--accent);
  font-style: italic;
}

.contact-info-desc {
  color: var(--gray-600);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.contact-direct-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  transition: all var(--transition);
  background: var(--off-white);
}

.contact-direct-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.contact-socials-label {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.contact-socials {
  margin-top: 0;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link-card {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.social-link-card:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* === CONTACT FORM === */
.contact-form-wrap {
  background: var(--black);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-input:focus {
  border-color: var(--accent);
  background: rgba(232, 24, 26, 0.04);
}

.form-textarea {
  resize: vertical;
  min-height: 112px;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999994' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-select option {
  background: #1a1a1a;
  color: white;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 15px;
  margin-top: 4px;
}

.form-success {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid #22c55e;
  border-radius: 8px;
  padding: 16px 18px;
  margin-top: 14px;
  font-size: 0.88rem;
  color: #86efac;
}

.form-success strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-primary);
  color: #86efac;
}

.success-mark {
  width: 22px;
  height: 22px;
  border: 2px solid #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: #22c55e;
  font-weight: 900;
  margin-top: 2px;
}

/* === FOOTER === */
.footer {
  background: #080808;
  color: var(--white);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .nav-logo {
  display: inline-block;
  font-size: 17px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.footer-links ul li a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.footer-social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
  gap: 8px;
}

/* === WHATSAPP POPUP === */
.wa-popup {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 998;
  width: 320px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 56px rgba(13, 13, 13, 0.2);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.wa-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.wa-popup-header {
  background: #25D366;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-popup-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-popup-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wa-popup-info strong {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.wa-online {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

.wa-popup-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}

.wa-popup-close:hover {
  color: white;
}

.wa-popup-body {
  padding: 16px;
  background: #ECE5DD;
  min-height: 80px;
}

.wa-bubble {
  background: white;
  border-radius: 0 10px 10px 10px;
  padding: 10px 14px;
  max-width: 90%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.wa-bubble p {
  font-size: 0.88rem;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 4px;
}

.wa-time {
  font-size: 10px;
  color: var(--gray-400);
  display: block;
  text-align: right;
}

.wa-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 14px;
  transition: background var(--transition);
  letter-spacing: 0.3px;
}

.wa-popup-cta:hover {
  background: #1EBE5D;
}

/* === WHATSAPP FLOATING BUTTON === */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 13px 18px 13px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all var(--transition);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
}

.wa-label {
  white-space: nowrap;
}


/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-grid {
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-grid {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* Navbar */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 13, 13, 0.99);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 1.25rem;
    letter-spacing: 3px;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1000;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 0;
  }

  /* Hero */
  .hero-content {
    padding: 0 16px;
    padding-top: 100px;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 6rem);
    letter-spacing: -1.5px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .hero-label {
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
    padding-top: 24px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 10px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 16px;
  }



  .team-name {
    font-size: 1rem;
  }

  .team-role {
    font-size: 0.75rem;
  }

  .team-bio {
    font-size: 0.8rem;
  }

  /* Services */
  .service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .service-detail-grid.reverse {
    direction: ltr;
    flex-direction: column-reverse;
  }

  .service-visual-img-wrap {
    height: 240px;
  }

  .service-number {
    font-size: 3.5rem;
    margin-bottom: 0;
  }

  .service-detail-title {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
    margin-bottom: 12px;
  }

  .service-detail-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .service-features {
    gap: 10px;
    margin-bottom: 24px;
  }

  .service-features li {
    font-size: 0.85rem;
  }

  .service-detail-inline {
    padding: 40px 0;
  }

  /* Engagement */
  .engagement-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .engagement-img-wrap {
    height: 220px;
  }

  .engagement-info {
    padding: 16px 18px 20px;
  }

  /* CTA */
  .cta-banner {
    padding: 56px 0;
  }

  .cta-inner h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-info-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    letter-spacing: -1px;
  }

  .contact-form-wrap {
    padding: 24px 16px;
    border-radius: 10px;
  }

  .contact-direct {
    gap: 8px;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-bottom: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  /* WA */
  .wa-label {
    display: none;
  }

  .wa-float {
    padding: 15px;
    border-radius: 50%;
  }

  .wa-popup {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 82px;
  }

  /* Section header */
  .section-header {
    margin-bottom: 32px;
    text-align: center;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .section-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero-label::before,
  .hero-label::after {
    width: 18px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  /* Team — single column on small phones */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }



  .team-card {
    text-align: center;
  }

  /* Service */


  .service-features li {
    font-size: 0.82rem;
  }

  .feat-check {
    width: 18px;
    height: 18px;
    font-size: 9px;
    flex-shrink: 0;
  }

  /* Contact form */
  .contact-form-wrap {
    padding: 20px 14px;
  }

  .form-title {
    font-size: 1.15rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Stat */
  .stat-label {
    font-size: 9px;
  }

  .stat-num {
    font-size: 1.4rem;
  }
}