/* ================================================================
   style.css – Orbsis Tech / Sislab Plus
   Landpage principal · orbsis.com.br
   ================================================================ */

/* ─── Reset & Variables ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-dark: #0d3b5e;
  --blue: #1a5c8a;
  --blue-mid: #2471a3;
  --blue-light: #d6eaf8;
  --orange: #e8820c;
  --orange-light: #f5a623;
  --orange-pale: #fef0dc;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #eef1f4;
  --gray-400: #8fa3b1;
  --gray-700: #445566;
  --text: #1c2b3a;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(13, 59, 94, 0.12);
  --shadow-lg: 0 16px 48px rgba(13, 59, 94, 0.18);
}

html {
  scroll-behavior: smooth;
}

/* Oculta badge do reCAPTCHA (menção no rodapé mantém conformidade) */
.grecaptcha-badge {
  visibility: hidden !important;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* ─── Utility ───────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-700);
  max-width: 560px;
  line-height: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 130, 12, 0.35);
}
.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 92, 138, 0.35);
}

/* ─── Navbar ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 92, 138, 0.08);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(13, 59, 94, 0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo svg {
  width: 44px;
  height: 44px;
}
.nav-logo-text {
  line-height: 1;
}
.nav-logo-text .brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.nav-logo-text .product {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: var(--blue-dark);
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile nav */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 1.25rem 5%;
  border-top: 1px solid var(--gray-100);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 0.7rem 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
}
.mobile-menu a:last-child {
  border-bottom: none;
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--blue-dark) 0%,
    var(--blue) 55%,
    #1a7a9e 100%
  );
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(232, 130, 12, 0.18) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: 10%;
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 130, 12, 0.2);
  border: 1px solid rgba(232, 130, 12, 0.4);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title span {
  color: var(--orange-light);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}
.stat-item .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.2rem;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 420px;
  height: 420px;
}
.hero-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-circle-inner {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}
.hero-logo-wrap svg {
  width: 120px;
  height: 120px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
/* Orbit dots */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
}
.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  margin: -6px 0 0 -6px;
}
.orbit-1 {
  animation: orbit1 6s linear infinite;
}
.orbit-2 {
  animation: orbit2 9s linear infinite;
}
.orbit-3 {
  animation: orbit3 12s linear infinite;
}
@keyframes orbit1 {
  from {
    transform: rotate(0deg) translateX(170px);
  }
  to {
    transform: rotate(360deg) translateX(170px);
  }
}
@keyframes orbit2 {
  from {
    transform: rotate(120deg) translateX(170px);
  }
  to {
    transform: rotate(480deg) translateX(170px);
  }
}
@keyframes orbit3 {
  from {
    transform: rotate(240deg) translateX(170px);
  }
  to {
    transform: rotate(600deg) translateX(170px);
  }
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  animation: floatCard 3s ease-in-out infinite;
}
.floating-card .fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.fc-1 {
  top: 20px;
  right: 20px;
  animation-delay: 0s;
}
.fc-2 {
  bottom: 40px;
  left: 10px;
  animation-delay: 1s;
}
.fc-3 {
  top: 50%;
  right: -10px;
  animation-delay: 0.5s;
  transform: translateY(-50%);
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.fc-3 {
  animation: floatCard3 3s ease-in-out infinite 0.5s;
}
@keyframes floatCard3 {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 6px));
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 2.5rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
}

/* ─── Logos Band ────────────────────────────────────────── */
.logos-band {
  background: var(--gray-50);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.logos-band p {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.logo-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.logo-badge i {
  font-size: 1.4rem;
}

/* ─── Features ──────────────────────────────────────────── */
.features {
  padding: 100px 0;
}
.features-header {
  text-align: center;
  margin-bottom: 4rem;
}
.features-header .section-sub {
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.ic-blue {
  background: var(--blue-light);
  color: var(--blue);
}
.ic-orange {
  background: var(--orange-pale);
  color: var(--orange);
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--blue-dark);
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── How It Works ──────────────────────────────────────── */
.how {
  background: var(--gray-50);
  padding: 100px 0;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.25s;
}
.step:hover {
  box-shadow: var(--shadow);
}
.step-num {
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.3rem;
}
.step p {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.6;
}
.how-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-dashboard {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dash-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.dash-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.dash-mini {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 0.9rem;
}
.dash-mini .d-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-dark);
}
.dash-mini .d-lbl {
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 0.1rem;
}
.dash-mini .d-val.orange {
  color: var(--orange);
}
.dash-bar-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}
.dash-bars {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bar-lbl {
  font-size: 0.7rem;
  color: var(--gray-700);
  width: 60px;
}
.bar-track {
  flex: 1;
  background: var(--gray-100);
  border-radius: 50px;
  height: 6px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 50px;
}
.bf-blue {
  background: var(--blue);
}
.bf-orange {
  background: var(--orange);
}
.bf-teal {
  background: #1abc9c;
}

@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
  .how-visual {
    display: none;
  }
}

/* ─── Benefits / Numbers ─────────────────────────────────── */
.numbers {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 80px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.num-item .big {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}
.num-item .tag {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.5rem;
}
@media (max-width: 700px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Planos ─────────────────────────────────────────────── */
.plans {
  padding: 100px 0;
  background: var(--gray-50);
}
.plans-header {
  text-align: center;
  margin-bottom: 4rem;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.plan-card {
  background: #fff;
  border: 2px solid var(--gray-100);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.plan-card.featured {
  border-color: var(--orange);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.plan-card:hover:not(.featured) {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
}
.plan-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.plan-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 0.25rem;
}
.plan-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-400);
}
.plan-desc {
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-bottom: 1.75rem;
}
.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.plan-features li {
  font-size: 0.87rem;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.plan-features li i {
  color: var(--blue);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan-card.featured {
    transform: none;
  }
}

/* ─── Testimonials ──────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.test-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.test-card::before {
  content: '"';
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--blue-light);
  font-family: serif;
  line-height: 1;
}
.test-stars {
  color: var(--orange-light);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.test-text {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.test-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.test-role {
  font-size: 0.78rem;
  color: var(--gray-400);
}
@media (max-width: 900px) {
  .test-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Contact / Fale Conosco ─────────────────────────────── */
.contact {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(232, 130, 12, 0.12) 0%,
    transparent 70%
  );
  right: -150px;
  top: -100px;
  border-radius: 50%;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.contact-info h2 span {
  color: var(--orange-light);
}
.contact-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.channel-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: background 0.25s;
}
.channel-item:hover {
  background: rgba(255, 255, 255, 0.14);
}
.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 130, 12, 0.25);
  color: var(--orange-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.1rem;
}
.channel-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

/* Form */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.4rem;
}
.contact-form-wrap p {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 92, 138, 0.1);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-submit {
  width: 100%;
  justify-content: center;
}

/* Android Visual */
.android-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.android-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 130, 12, 0.25) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .android-wrap {
    display: none;
  }
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--blue-dark);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo {
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--orange-light);
}
.footer-col ul li {
  font-size: 0.83rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-col ul li i {
  color: var(--orange);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.75rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── WhatsApp Button ────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  animation: pulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, 0.65);
  }
}

/* ─── Scroll animations ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
