/* ============================================
   CametraSolutions – Premium Frontend Styles
   ============================================ */

:root {
  --blue: #0057FF;
  --blue-dark: #003ECB;
  --navy: #0B1120;
  --navy-mid: #1B2641;
  --surface: #F7F9FC;
  --border: #E4E9F2;
  --text: #1A2035;
  --muted: #64748B;
  --white: #fff;
  --amber: #F59E0B;
  --green: #10B981;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, .06);
  --shadow: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .14);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --font: 'Inter', system-ui, sans-serif;
  --font-head: 'Outfit', system-ui, sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #000;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  line-height: 1.15;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.section {
  padding: 96px 0;
}

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

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

.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 87, 255, .1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.text-center .section-sub {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all .25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 87, 255, .35);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 87, 255, .4);
}

.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost:hover {
  gap: 10px;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--nav-h);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

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

.nav-logo {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10001;
  position: relative;
}

.nav-logo-dot {
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .35s var(--ease);
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 10000;
  padding: calc(var(--nav-h) + 60px) 32px 40px;
  pointer-events: none;
  overflow-y: auto;
}

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

.mobile-nav .nav-link-wrap {
  overflow: hidden;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  color: #fff;
  padding: 14px 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s var(--ease), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-head);
}

.mobile-nav a svg {
  color: var(--blue);
  flex-shrink: 0;
}

.mobile-nav a:hover {
  color: var(--blue);
  transform: translateX(10px);
}

.mobile-nav .mob-cta {
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
  width: 100%;
  justify-content: center;
}

/* Menu Open State Classes (Triggered by JS) */
body.menu-open .mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}

body.menu-open .mobile-nav .mob-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.mob-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Close Btn */
.close-btn {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

body.menu-open .close-btn {
  opacity: 1;
  pointer-events: all;
  transition-delay: 0.2s;
}

/* ===================== ANNOUNCEMENT ===================== */
.announcement {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 24px;
}

.announcement a {
  color: var(--amber);
  text-decoration: underline;
  margin-left: 6px;
}

/* ===================== HERO — VIDEO BG ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: #000;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .95;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 17, 32, .65) 30%, rgba(11, 17, 32, .4) 65%, rgba(11, 17, 32, .1) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  padding-bottom: 24px;
}

.hero-content {
  max-width: 680px;
}

.hero-content .label {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  animation: fadeUp .6s var(--ease) both;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  color: #fff;
  letter-spacing: -.02em;
  animation: fadeUp .7s var(--ease) .1s both;
}

.hero h1 span {
  color: #60A5FA;
}

.hero p {
  margin-top: 20px;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, .75);
  line-height: 1.65;
  animation: fadeUp .7s var(--ease) .2s both;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .7s var(--ease) .3s both;
}

.hero-actions .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp .7s var(--ease) .4s both;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 12px;
  position: relative;
  margin: 0 auto;
}

.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, .7);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 6px;
  }

  100% {
    opacity: 0;
    top: 20px;
  }
}

@keyframes bounce {

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

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* ===================== TRUST MARQUEE ===================== */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0;
}

.marquee-wrap {
  display: flex;
  overflow: hidden;
  padding: 22px 0;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  align-items: center;
}

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

.trust-item {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .6;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.trust-item::before {
  content: '✦';
  font-size: 10px;
  color: var(--blue);
  opacity: .6;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

/* ===================== CAROUSEL ===================== */
.carousel-track-outer {
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 4px;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-track-outer::-webkit-scrollbar {
  display: none;
}

.carousel-track-outer:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 8px 0;
  user-select: none;
}

.product-card {
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.product-card-img {
  height: 175px;
  overflow: hidden;
  background: var(--surface);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  pointer-events: none;
}

.product-card:hover .product-card-img img {
  transform: scale(1.07);
}

.product-card-body {
  padding: 22px;
}

.product-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 87, 255, .08);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 10px;
}

.product-card-body h4 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: .2s;
  cursor: pointer;
}

.carousel-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ===================== SERVICES GRID ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
  opacity: 1;
  transform: none;
}

.service-card.in {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
  transform: translateY(-8px);
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 87, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 87, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}

.check-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.check-text span {
  font-size: 14px;
  color: var(--muted);
}

/* ===================== STEPS — VIDEO BG ===================== */
.steps-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 24px;
}

.steps-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.steps-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
}

.steps-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: .88;
}

.steps-inner {
  position: relative;
  z-index: 1;
  padding: 80px 60px;
}

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

.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  opacity: .4;
}

.step-title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 10px 0 8px;
}

.step-desc {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.65;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid var(--border);
  transition: all .3s var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.stars {
  color: var(--amber);
  font-size: 17px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 15px;
}

.author-role {
  font-size: 13px;
  color: var(--muted);
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue), #003ECB);
  border-radius: var(--radius-lg);
  padding: 72px;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 17px;
  opacity: .8;
  margin-bottom: 36px;
}

.btn-white {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .25s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

/* ===================== CONTACT FORM ===================== */
.contact-section {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 87, 255, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-detail-text span {
  font-size: 14px;
  color: var(--muted);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: .25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 87, 255, .35);
}

/* ===================== MAP ===================== */
.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 36px;
}

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

.footer-logo {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 22px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .2s;
}

.social-link:hover {
  background: var(--blue);
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 18px;
}

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

.footer-col a {
  font-size: 14px;
  color: #64748B;
  transition: color .2s;
}

.footer-col a:hover {
  color: #fff;
}

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

.footer-copy {
  font-size: 13px;
  color: #475569;
}

/* ===================== WHATSAPP ===================== */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9997;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease);
}

.wa-float:hover {
  transform: scale(1.12);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-tooltip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

/* ===================== APP WRAPPER ===================== */
#app-wrapper {
  background: var(--white);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1), border-radius 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  transform-origin: 50% 0%;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

body.menu-open #app-wrapper {
  transform: scale(0.93) translateY(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* ===================== LENIS BASE ===================== */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* GSAP utilities */
.split-line {
  overflow: hidden;
  display: block;
}

.split-line span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img {
    height: 360px;
  }

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

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

  .steps-inner {
    padding: 60px 40px;
  }

  .cta-banner {
    padding: 56px 40px;
  }
}

@media(max-width:768px) {

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

  .burger {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 24px;
  }

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

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

  .steps-inner {
    padding: 48px 24px;
  }

  .cta-banner {
    padding: 48px 24px;
  }

  .section {
    padding: 64px 0;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
  }

  .steps-section {
    margin: 0 0;
    border-radius: 0;
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .btn {
    padding: 13px 20px;
    font-size: 14px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================== ULTRA WIDE SCREENS ===================== */


@media (min-width: 1921px) {
  body {
    background: var(--navy);
  }

  #app-wrapper,
  .navbar,
  .announcement,
  .mobile-nav {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }

  #app-wrapper {
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  }
}