:root {
  --navy: #081a33;
  --blue: #1769ff;
  --sky: #eaf3ff;
  --ink: #18243a;
  --muted: #637083;
  --line: #dce6f3;
  --white: #ffffff;
  --success: #0f9f6e;
  --shadow: 0 18px 45px rgba(8, 26, 51, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7fbff;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 230, 243, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(23, 105, 255, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 700;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
  background: var(--sky);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 72px) 64px;
  background:
    radial-gradient(circle at top left, rgba(23, 105, 255, 0.18), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.3rem, 7vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  line-height: 1.25;
}

.hero-text,
.page-hero p,
.section-heading p,
.split-section p,
.contact-copy p,
.cta-band p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(23, 105, 255, 0.28);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img,
.rounded-image {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.floating-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 310px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.status-dot {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(15, 159, 110, 0.12);
}

.section,
.split-section,
.contact-section,
.account-layout,
.cta-band {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.card-grid,
.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card,
.service-card,
.testimonial,
.job-card,
.account-card,
.login-panel,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(8, 26, 51, 0.07);
}

.info-card,
.service-card,
.testimonial {
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover,
.service-card:hover,
.job-card:hover,
.account-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.info-card strong {
  color: var(--blue);
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 14px;
  background: var(--sky);
  border-radius: 14px;
  font-size: 1.25rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
  background: var(--white);
}

.check-list,
.meta-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li,
.meta-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before,
.meta-list li::before {
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
  content: "✓";
}

.muted {
  background: #eef6ff;
}

.testimonial p {
  color: var(--ink);
  font-size: 1.02rem;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: start;
  background: var(--navy);
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.whatsapp-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--white);
  font-weight: 800;
  border-bottom: 2px solid var(--success);
}

form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.12);
}

.contact-form,
.login-panel {
  padding: clamp(22px, 4vw, 34px);
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--success);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  padding: 13px 18px;
  color: var(--white);
  background: #15b76a;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(21, 183, 106, 0.32);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 28px;
  padding: 44px clamp(18px, 5vw, 72px) 28px;
  color: rgba(255, 255, 255, 0.75);
  background: #061326;
}

.site-footer h3,
.site-footer .brand,
.site-footer a {
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.compact-footer {
  display: block;
  text-align: center;
}

.compact-footer p {
  margin-bottom: 8px;
}

.page-hero {
  padding: clamp(64px, 10vw, 118px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(rgba(8, 26, 51, 0.78), rgba(8, 26, 51, 0.82)),
    url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.page-hero h1,
.page-hero p {
  max-width: 850px;
  color: var(--white);
}

.service-hero {
  background:
    linear-gradient(rgba(8, 26, 51, 0.78), rgba(8, 26, 51, 0.84)),
    url("https://images.unsplash.com/photo-1559136555-9303baea8ebd?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.accounts-hero {
  background:
    linear-gradient(rgba(8, 26, 51, 0.78), rgba(8, 26, 51, 0.84)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.job-list {
  display: grid;
  gap: 18px;
}

.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: center;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card div {
  display: flex;
  gap: 16px;
  align-items: center;
}

.job-card .icon {
  flex: 0 0 44px;
  margin-bottom: 0;
}

.job-card p,
.job-card .meta-list {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.job-card .btn {
  grid-row: 1;
  grid-column: 2;
}

.wide-card {
  grid-column: span 3;
}

.cta-band {
  margin: 0 clamp(18px, 5vw, 72px) clamp(54px, 8vw, 92px);
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 28px;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(24px, 5vw, 48px);
  align-items: start;
}

.account-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.account-card {
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.account-card.active {
  border-color: rgba(23, 105, 255, 0.55);
  box-shadow: 0 16px 36px rgba(23, 105, 255, 0.14);
}

.panel-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px;
  background: var(--sky);
  border-radius: 14px;
}

.tab {
  min-height: 40px;
  color: var(--muted);
  font-weight: 800;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.tab.active {
  color: var(--blue);
  background: var(--white);
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .contact-section,
  .account-layout {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .service-grid,
  .testimonial-grid,
  .account-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-card {
    grid-column: span 2;
  }

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

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-radius: 12px;
  }

  .hero-stats,
  .card-grid,
  .service-grid,
  .testimonial-grid,
  .account-types {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

  .job-card {
    grid-template-columns: 1fr;
  }

  .job-card .btn {
    grid-row: auto;
    grid-column: auto;
    width: 100%;
  }

  .floating-panel {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 11px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .hero,
  .section,
  .split-section,
  .contact-section,
  .account-layout,
  .page-hero {
    padding-inline: 14px;
  }

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

  .info-card,
  .service-card,
  .testimonial,
  .job-card,
  .account-card,
  .contact-form,
  .login-panel {
    border-radius: 14px;
  }
}
