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

html,
body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0a154a;
  background: #f8fafc;
  line-height: 1.5;
  padding-top: 72px;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-image {
  height: 67px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-link {
  position: relative;
  padding: 0.25rem 0;
  color: rgba(15, 23, 42, 0.7);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #00aeef;
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link-active::after {
  width: 100%;
}

.nav-link-active {
  color: #0a154a;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #0a154a;
  border-radius: 999px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease,
    color 0.16s ease, border-color 0.16s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #0047a8, #00aeef);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 71, 168, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 71, 168, 0.32);
}

.btn-outline {
  color: #0a154a;
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  border-color: #00aeef;
}

.btn-text {
  border-radius: 0;
  padding: 0;
  border: none;
  background: none;
  color: #0a154a;
}

.btn-text:hover {
  color: #00aeef;
}

.btn-large {
  padding-inline: 2.2rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  gap: 0.4rem;
}

.btn-whatsapp:hover {
  background: #1ebe5a;
}

/* Hero */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.7);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2rem, 2.5vw + 1.4rem, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.text-highlight {
  color: #00aeef;
}

.hero-subtitle {
  color: rgba(15, 23, 42, 0.7);
  max-width: 32rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.meta-title {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
}

.meta-text {
  color: rgba(15, 23, 42, 0.6);
}

.hero-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.hero-icon {
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-card {
  position: absolute;
  border-radius: 18px;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.hero-card-primary {
  top: 0;
  right: 0;
  left: 12%;
  background: radial-gradient(circle at top left, rgba(0, 174, 239, 0.18), transparent 60%),
    #0a154a;
  color: #e5e7eb;
}

.hero-card-primary h3 {
  color: #fff;
}

.hero-card-secondary {
  bottom: 0;
  right: 6%;
  left: 0;
  background: #ffffff;
  padding: 0;
  overflow: hidden;
}

.hero-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: rgba(249, 250, 251, 0.82);
}

.hero-card-secondary p {
  color: rgba(15, 23, 42, 0.7);
}

.hero-card-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  font-size: 0.86rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.dot-green {
  background: #22c55e;
}

.hero-phrases {
  margin-top: 1rem;
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
  position: relative;
  min-height: 2.8rem;
  font-size: 0.84rem;
}

.hero-phrase {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-phrase-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-photo-carousel {
  position: relative;
  height: 500px;
}

.hero-photo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-photo-slide-active {
  opacity: 1;
  transform: translateX(0);
}

.hero-photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1.1rem 1.1rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
  color: #e5e7eb;
}

.hero-photo-caption h3 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.hero-photo-caption p {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.9);
}

.hero-photo-dots {
  position: absolute;
  right: 0.9rem;
  bottom: 0.75rem;
  display: flex;
  gap: 0.35rem;
}

.hero-photo-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(226, 232, 240, 0.55);
  cursor: pointer;
}

.hero-photo-dot-active {
  background: #00aeef;
}

.hero-orbit {
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  pointer-events: none;
}

.orbit-pill {
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section-alt {
  background: #ffffff;
}

.section-header {
  max-width: 44rem;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

.section-header p {
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.98rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.feature-card {
  padding: 1.5rem 1.4rem;
  border-radius: 1.1rem;
  background: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: rgba(15, 23, 42, 0.7);
}

/* Carousel */

.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.4rem;
  scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar {
  height: 6px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.7);
  border-radius: 999px;
}

.service-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.7);
  margin-bottom: 0.6rem;
}

.service-card ul li {
  position: relative;
  font-size: 0.88rem;
  color: rgba(15, 23, 42, 0.8);
  padding-left: 1rem;
}

.service-card ul li + li {
  margin-top: 0.25rem;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  top: 0.55rem;
  left: 0.3rem;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #00aeef;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
}

.carousel-control.prev {
  left: -14px;
}

.carousel-control.next {
  right: -14px;
}

/* Cloud architecture section */

.ia-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.ia-list {
  margin-top: 1rem;
}

.ia-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.93rem;
  color: rgba(15, 23, 42, 0.8);
}

.ia-list li + li {
  margin-top: 0.35rem;
}

.ia-list li::before {
  content: '';
  position: absolute;
  top: 0.6rem;
  left: 0.3rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #00aeef;
}

.ia-panel {
  border-radius: 1.2rem;
  padding: 1.6rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(0, 174, 239, 0.22), transparent 60%),
    #0a154a;
  color: #e5e7eb;
}

.ia-pill-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.ia-pill {
  padding: 0.26rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.65);
  font-size: 0.78rem;
}

.ia-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.6);
}

.ia-metric:first-of-type {
  border-top: none;
}

.metric-label {
  font-size: 0.88rem;
}

.metric-value {
  font-size: 1.4rem;
  font-weight: 600;
}

/* Tech logos */

.tech-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.tech-logos span {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.2rem 0.8rem;
  font-size: 0.8rem;
  background: #f9fafb;
}

/* CTA */

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  padding: 1.6rem 1.8rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, #0a154a, #111827);
  color: #e5e7eb;
}

.cta h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.cta p {
  font-size: 0.92rem;
  color: rgba(229, 231, 235, 0.85);
}

/* Page hero */

.page-hero {
  padding: 3.3rem 0 1.8rem;
}

.page-hero h1 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  max-width: 36rem;
  color: rgba(15, 23, 42, 0.7);
}

/* Services page */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.service-detail {
  padding: 1.5rem 1.6rem;
  border-radius: 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.service-detail h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-detail p {
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.72);
  margin-bottom: 0.7rem;
}

.service-detail ul li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.86);
}

.service-detail ul li + li {
  margin-top: 0.25rem;
}

.service-detail ul li::before {
  content: '';
  position: absolute;
  top: 0.6rem;
  left: 0.3rem;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #00aeef;
}

/* Sobre page */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

.about-grid p {
  font-size: 0.94rem;
  color: rgba(15, 23, 42, 0.8);
}

.about-grid p + p {
  margin-top: 0.75rem;
}

.about-grid h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.about-grid ul li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.88);
}

.about-grid ul li + li {
  margin-top: 0.25rem;
}

.about-grid ul li::before {
  content: '';
  position: absolute;
  top: 0.6rem;
  left: 0.3rem;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #00aeef;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

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

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  margin: 0 auto 0.75rem;
  background: linear-gradient(135deg, rgba(0, 71, 168, 0.9), rgba(0, 174, 239, 0.9));
}

.team-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.team-card p {
  font-size: 0.86rem;
  color: rgba(15, 23, 42, 0.7);
}

/* Contato page */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form {
  padding: 1.6rem 1.7rem;
  border-radius: 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.86rem;
  color: rgba(15, 23, 42, 0.75);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.6rem 0.8rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: #f9fafb;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00aeef;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 174, 239, 0.15);
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: rgba(15, 23, 42, 0.6);
}

.contact-text {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.75);
}

.meeting-box {
  margin-top: 1.5rem;
  padding: 1.2rem 1.3rem;
  border-radius: 1.1rem;
  background: #ffffff;
  border: 1px dashed rgba(148, 163, 184, 0.7);
}

.meeting-box h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.meeting-box p {
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.78);
  margin-bottom: 0.6rem;
}

.meeting-box ul li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: rgba(15, 23, 42, 0.86);
}

.meeting-box ul li + li {
  margin-top: 0.25rem;
}

.meeting-box ul li::before {
  content: '';
  position: absolute;
  top: 0.6rem;
  left: 0.3rem;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #00aeef;
}

.form-status {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: rgba(15, 23, 42, 0.8);
}

/* Floating WhatsApp button */

.whatsapp-floating {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  z-index: 40;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.whatsapp-floating:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
}

.whatsapp-floating svg {
  width: 28px;
  height: 28px;
}

/* Maintenance page */

.maintenance-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: #020617;
}

.maintenance-card {
  max-width: 480px;
  width: 100%;
  text-align: center;
  padding: 2.2rem 2.4rem;
  border-radius: 1.4rem;
  background: #0b1120;
  color: #e5e7eb;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.75);
}

.maintenance-logo {
  margin: 0 auto 1.4rem;
}

.maintenance-card h1 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.maintenance-card p {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 0.9rem;
}

.maintenance-card .btn {
  margin-top: 0.4rem;
}

/* Footer */

.footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #020617;
  color: #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 1.5rem;
  padding: 2.2rem 0 1.5rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 0.9rem;
  background: #f9fafb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.45);
}

.footer-text {
  font-size: 0.86rem;
  color: rgba(148, 163, 184, 0.9);
  margin-top: 0.5rem;
}

.footer-links li + li {
  margin-top: 0.3rem;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(209, 213, 219, 0.9);
}

.footer-links a:hover {
  color: #00aeef;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.footer-social a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}

.footer-social a:hover {
  border-color: #00aeef;
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.5);
  padding: 0.7rem 0;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.9);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Animations */

.hero,
.section {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.6s ease forwards;
}

.hero {
  animation-delay: 0.05s;
}

.section:nth-of-type(1) {
  animation-delay: 0.1s;
}

.section:nth-of-type(2) {
  animation-delay: 0.16s;
}

.section:nth-of-type(3) {
  animation-delay: 0.22s;
}

.section:nth-of-type(4) {
  animation-delay: 0.28s;
}

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

/* Responsive */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    margin-top: 1rem;
    min-height: 230px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ia-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-block: 0.6rem;
  }

  .nav {
    position: fixed;
    inset: 60px 1.5rem auto 1.5rem;
    background: #020617;
    border-radius: 0.9rem;
    padding: 0.7rem 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-link {
    color: rgba(241, 245, 249, 0.88);
  }

  .header.nav-open .nav {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 3.5rem;
  }

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

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .form-row {
    flex-direction: column;
  }
}
