:root {
  --navy: #07145f;
  --blue: #0b3fb8;
  --blue-2: #1768f2;
  --cyan: #12bfea;
  --ice: #eff8ff;
  --white: #ffffff;
  --ink: #081233;
  --muted: #68708b;
  --border: rgba(8, 18, 51, 0.12);
  --shadow: 0 24px 60px rgba(4, 18, 77, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  transition: 0.25s ease;
}

.header.scrolled {
  background: rgba(5, 14, 75, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--cyan), var(--blue-2));
  font-family: var(--serif);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(18, 191, 234, 0.28);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.06rem;
}

.brand small {
  margin-top: 4px;
  opacity: 0.72;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
}

.menu > a:not(.btn) {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.82;
}

.menu > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--cyan);
  transition: 0.25s ease;
}

.menu > a:hover {
  opacity: 1;
}

.menu > a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: 0.25s ease;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-small {
  min-height: 42px;
  padding-inline: 18px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 14px 30px rgba(23, 104, 242, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(23, 104, 242, 0.38);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.btn-light {
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 12px 25px rgba(2, 23, 92, 0.12);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(33, 94, 255, 0.62), transparent 34%),
    linear-gradient(115deg, #07125c 0%, #101a89 49%, #12006d 100%);
  overflow: hidden;
}

.hero-grid {
  min-height: 760px;
  padding-top: 122px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 70px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.45;
  pointer-events: none;
}

.hero-orb-one {
  width: 350px;
  height: 350px;
  top: 40px;
  right: 35%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-orb-two {
  width: 600px;
  height: 600px;
  right: -260px;
  bottom: -240px;
  background: rgba(0, 183, 255, 0.15);
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.hero h1 em,
.about-content h2 em {
  color: var(--cyan);
  font-weight: 500;
}

.hero-subtitle {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.76);
}

.hero-text {
  max-width: 590px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero-proof strong {
  color: var(--white);
}

.avatars {
  display: flex;
}

.avatars span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 2px solid #101a89;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cyan), var(--blue-2));
  font-size: 0.68rem;
  font-weight: 800;
}

.avatars span:first-child {
  margin-left: 0;
}

.hero-visual {
  align-self: end;
  position: relative;
}

.hero-image-wrap {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  isolation: isolate;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 13% -4% 0 9%;
  border-radius: 48% 48% 0 0;
  background: linear-gradient(160deg, rgba(18, 191, 234, 0.8), rgba(23, 104, 242, 0.08));
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 25% 3% 0 21%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.2));
}

.hero-image-wrap img {
  height: 660px;
  object-fit: cover;
  object-position: center top;
  border-radius: 44% 44% 0 0;
  mix-blend-mode: screen;
  filter: saturate(0.92) contrast(1.05);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(5, 16, 91, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card small {
  color: rgba(255, 255, 255, 0.64);
}

.floating-card-top {
  top: 28%;
  left: -9%;
}

.floating-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 900;
}

.floating-card-bottom {
  right: -5%;
  bottom: 14%;
  flex-direction: column;
  gap: 0;
}

.floating-card-bottom strong {
  font-family: var(--serif);
  font-size: 1.85rem;
}

.floating-card-bottom span {
  font-size: 0.75rem;
  opacity: 0.72;
}

.stats {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 8, 55, 0.28);
}

.stats-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stats article {
  display: grid;
  place-items: center;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats article:last-child {
  border-right: 0;
}

.stats strong {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.stats strong::after {
  content: "+";
  color: var(--cyan);
}

.stats article:nth-child(3) strong::after {
  content: "%";
}

.stats span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.specialties {
  overflow: hidden;
  background: var(--cyan);
  color: var(--navy);
}

.specialties-track {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 800;
}

.specialties-track span::before {
  content: "✦";
  margin-right: 20px;
  color: var(--white);
}

.section {
  padding: 110px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 90px;
}

.about-media {
  position: relative;
  max-width: 470px;
}

.about-media img {
  position: relative;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.image-accent {
  position: absolute;
  inset: 42px -22px -22px 28px;
  background: var(--cyan);
  border-radius: 4px;
}

.credential {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  color: var(--blue);
  font-size: .7rem;
  font-weight: 800;
}

.about-content h2,
.section-heading h2,
.faq-intro h2,
.contact-copy h2,
.split-content h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.about-content > p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--muted);
}

.tags {
  margin: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tags span {
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.section-blue {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(18, 191, 234, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), #082a9f);
}

.section-heading {
  margin-bottom: 48px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading > p {
  max-width: 470px;
  color: var(--muted);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.65);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  min-height: 310px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.13);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--white);
  color: var(--blue);
  font-size: 1.35rem;
}

.service-card h3 {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.service-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.92rem;
}

.service-card a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 800;
}

.gallery-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2.3fr 0.7fr;
  gap: 18px;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-main img {
  height: 540px;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(5, 14, 75, 0.74);
  backdrop-filter: blur(12px);
}

.gallery-caption strong,
.gallery-caption span {
  display: block;
}

.gallery-caption strong {
  font-family: var(--serif);
  font-size: 1.3rem;
}

.gallery-caption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.gallery-side {
  display: grid;
  gap: 18px;
}

.gallery-side img {
  height: 168px;
  object-fit: cover;
  border-radius: 16px;
}

.pricing-section {
  background: var(--ice);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
}

.price-card {
  position: relative;
  padding: 38px 32px;
  border: 1px solid rgba(10, 67, 182, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(155deg, #0a72bf, #0734a2);
  color: var(--white);
  box-shadow: 0 20px 45px rgba(5, 58, 156, 0.13);
}

.price-card.featured {
  padding-block: 58px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(5, 34, 122, 0.2);
  transform: translateY(-12px);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 7px 18px;
  border-radius: 99px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plan-name {
  color: var(--cyan);
  font-style: italic;
  font-weight: 700;
}

.featured .plan-name {
  color: var(--blue);
}

.price {
  margin: 12px 0 26px;
  display: flex;
  align-items: flex-start;
}

.price sup {
  margin-top: 15px;
  margin-right: 4px;
  font-size: 0.85rem;
}

.price strong {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.price span {
  align-self: end;
  margin: 0 0 8px 6px;
  font-size: 0.72rem;
  opacity: 0.7;
}

.price-card ul {
  margin: 0 0 28px;
  list-style: none;
}

.price-card li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.84rem;
}

.featured li {
  border-color: var(--border);
}

.price-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--cyan);
  font-weight: 900;
}

.split-banner {
  overflow: hidden;
}

.split-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.split-content p:not(.section-kicker) {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
}

.steps {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.steps > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.steps span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.steps p {
  margin-top: 0 !important;
  font-size: 0.88rem;
}

.steps strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.split-image {
  position: relative;
  align-self: end;
}

.split-image img {
  position: relative;
  z-index: 2;
  height: 620px;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: multiply;
}

.big-word {
  position: absolute;
  z-index: 1;
  top: 18%;
  left: -14%;
  color: #7da4e4;
  font-family: var(--serif);
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.testimonials-section {
  color: var(--white);
  background: linear-gradient(145deg, #1768f2 0%, #0b3fb8 48%, #11b8de 100%);
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}

.testimonial-track {
  min-height: 300px;
  display: grid;
}

.testimonial {
  grid-area: 1 / 1;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  opacity: 0;
  transform: translateX(25px);
  pointer-events: none;
  transition: 0.35s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.stars {
  color: #f2aa00;
  letter-spacing: 0.13em;
}

.testimonial > p {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.person {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.person > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.person strong,
.person small {
  display: block;
}

.person small {
  color: var(--muted);
}

.slider-btn {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(4, 28, 94, 0.2);
  font-size: 1.8rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-btn.prev {
  left: -23px;
}

.slider-btn.next {
  right: -23px;
}

.slider-dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.25s ease;
}

.slider-dots button.active {
  width: 28px;
  background: var(--white);
}

.faq-section {
  background: #fbfcff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.faq-intro > p:last-child {
  margin-top: 18px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item button {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.accordion-item button span {
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.accordion-item.open button span {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding: 0 40px 24px 0;
  color: var(--muted);
}

.contact-section {
  padding-top: 60px;
  background: #fbfcff;
}

.contact-card {
  padding: 64px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 15%, rgba(23, 104, 242, 0.6), transparent 35%),
    linear-gradient(135deg, var(--navy), #082a9f);
  box-shadow: var(--shadow);
}

.contact-copy > p:not(.section-kicker) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-benefits {
  margin-top: 28px;
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.contact-form {
  padding: 28px;
  border-radius: 22px;
  background: var(--white);
  color: var(--ink);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 50px;
  margin-top: 7px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(23, 104, 242, 0.1);
}

.contact-form > small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
  font-size: 0.67rem;
}

.footer {
  padding: 70px 0 26px;
  color: rgba(255, 255, 255, 0.68);
  background: #040a35;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 45px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid > div > strong {
  margin-bottom: 8px;
  color: var(--white);
}

.footer-grid a:hover {
  color: var(--cyan);
}

.footer-brand {
  margin-bottom: 10px;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
}

.whatsapp {
  position: fixed;
  z-index: 800;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #20b95a;
  box-shadow: 0 16px 30px rgba(9, 110, 50, 0.28);
  font-size: 0.82rem;
}

.toast {
  position: fixed;
  z-index: 2000;
  left: 50%;
  bottom: 24px;
  padding: 14px 20px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 30px);
  transition: 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100dvh;
    padding: 110px 28px 30px;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    background: rgba(4, 10, 53, 0.98);
    transform: translateX(100%);
    transition: 0.28s ease;
  }

  .menu.open {
    transform: translateX(0);
  }

  .menu > a:not(.btn) {
    padding: 10px 0;
    font-size: 1.1rem;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-grid {
    min-height: auto;
    padding-top: 145px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .hero-visual {
    width: 100%;
  }

  .hero-image-wrap {
    max-width: 590px;
    margin-inline: auto;
  }

  .about-grid,
  .split-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 65px;
  }

  .about-media {
    margin-inline: auto;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-side {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-grid {
    padding-top: 90px;
  }

  .split-content {
    max-width: 700px;
  }

  .faq-grid {
    gap: 45px;
  }

  .contact-card {
    gap: 40px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 72px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-grid {
    padding-top: 115px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    align-items: flex-start;
  }

  .hero-image-wrap img {
    height: 490px;
  }

  .floating-card-top {
    top: 18%;
    left: 0;
  }

  .floating-card-bottom {
    right: 0;
  }

  .stats-grid {
    min-height: auto;
    padding-block: 22px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats article {
    border-right: 0;
  }

  .specialties-track {
    justify-content: flex-start;
    padding-inline: 20px;
    overflow-x: auto;
  }

  .section {
    padding: 78px 0;
  }

  .about-media img {
    height: 470px;
  }

  .section-heading {
    margin-bottom: 34px;
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }

  .service-card {
    min-height: 285px;
  }

  .gallery-main img {
    height: 380px;
  }

  .gallery-side {
    grid-template-columns: 1fr;
  }

  .gallery-side img {
    height: 220px;
  }

  .split-image img {
    height: 460px;
  }

  .big-word {
    left: 0;
    font-size: 23vw;
  }

  .testimonial {
    padding: 30px 24px;
  }

  .slider-btn {
    top: auto;
    bottom: -66px;
  }

  .slider-btn.prev {
    left: calc(50% - 56px);
  }

  .slider-btn.next {
    right: calc(50% - 56px);
  }

  .slider-dots {
    margin-top: 72px;
  }

  .contact-card {
    padding: 38px 22px;
    border-radius: 22px;
  }

  .contact-form {
    padding: 22px 16px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp strong {
    display: none;
  }

  .whatsapp {
    width: 54px;
    padding: 0;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== Refinamento premium / versão autoral ===== */
:root {
  --navy: #081238;
  --blue: #143a8d;
  --blue-2: #275fce;
  --cyan: #79d8e9;
  --ice: #f4f5f8;
  --ink: #101731;
  --muted: #687083;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --radius: 18px;
  --shadow: 0 28px 80px rgba(8, 18, 56, .12);
}

body { letter-spacing: -.012em; }
::selection { color: #fff; background: #143a8d; }

.scroll-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 9999; pointer-events: none; }
.scroll-progress span { display:block; width:0; height:100%; background: linear-gradient(90deg,#78d9e8,#fff); box-shadow:0 0 18px rgba(121,216,233,.8); }

.header.scrolled { background: rgba(6, 13, 43, .86); border-bottom: 1px solid rgba(255,255,255,.08); }
.brand-mark { background: transparent; border: 1px solid rgba(255,255,255,.38); box-shadow: none; font-size: 1.15rem; }
.brand strong { font-size: 1.15rem; font-weight: 600; letter-spacing: .01em; }
.menu > a:not(.btn) { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.hero { background: linear-gradient(115deg, #09133c 0%, #112967 55%, #0b1746 100%); }
.hero::before { content:""; position:absolute; inset:0; opacity:.16; pointer-events:none; background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size:72px 72px; mask-image:linear-gradient(to bottom,#000,transparent 80%); }
.hero-grid { min-height: 820px; }
.eyebrow { display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.68); }
.eyebrow span { width:42px; height:1px; background:var(--cyan); }
.hero h1 { font-weight:600; line-height:.78; letter-spacing:-.05em; }
.hero h1 em { color:#a5e6ef; }
.hero-subtitle { color:rgba(255,255,255,.64); font-weight:500; }
.hero-text { max-width:540px; font-size:1rem; line-height:1.85; }
.hero-image-wrap::before { inset: 8% -2% 0 11%; background: linear-gradient(160deg, rgba(121,216,233,.35), rgba(39,95,206,.08)); border:1px solid rgba(255,255,255,.12); }
.hero-image-wrap img { mix-blend-mode:normal; filter: saturate(.92) contrast(1.04); border-radius: 48% 48% 6px 6px; }
.floating-card { background: rgba(10,23,68,.76); border-color:rgba(255,255,255,.12); border-radius:12px; }
.floating-card-top { animation: float-card 5s ease-in-out infinite; }
.floating-card-bottom { animation: float-card 5.5s ease-in-out infinite reverse; }
@keyframes float-card { 50% { transform: translateY(-10px); } }

.btn { border-radius: 4px; min-height:54px; padding-inline:26px; letter-spacing:.035em; text-transform:uppercase; font-size:.74rem; }
.btn-primary { background:#fff; color:var(--navy); box-shadow:none; }
.btn-primary:hover { background:#bcebf2; box-shadow:0 18px 40px rgba(0,0,0,.15); }
.btn-ghost,.btn-outline { background:transparent; }

.stats { background:#07102f; }
.stats strong { font-weight:600; }
.stats span { letter-spacing:.08em; text-transform:uppercase; }
.specialties { background:#bcebf2; }
.specialties-track { min-height:52px; font-weight:600; letter-spacing:.04em; }

.section { padding: 130px 0; }
.section-kicker { color:#275fce; letter-spacing:.18em; }
.about-content h2,.section-heading h2,.faq-intro h2,.contact-copy h2,.split-content h2 { font-weight:600; }
.about-content h2 em { color:#275fce; }
.about-media img { border-radius: 160px 160px 8px 8px; box-shadow:0 30px 80px rgba(8,18,56,.18); }
.image-accent { inset: 30px -18px -18px 36px; background:#c2ecf2; border-radius:160px 160px 8px 8px; }
.credential { background:#fff; border:1px solid rgba(8,18,56,.08); }
.tags span { border-radius:3px; text-transform:uppercase; letter-spacing:.06em; font-size:.66rem; }

.section-blue { background:#0a1745; }
.service-card { border-radius:6px; background:rgba(255,255,255,.045); min-height:330px; }
.service-card:hover { transform:translateY(-10px); background:rgba(255,255,255,.075); border-color:rgba(121,216,233,.55); }
.service-icon { border-radius:50%; background:transparent; border:1px solid rgba(255,255,255,.28); }
.service-icon svg,.wa-icon svg { width:24px; height:24px; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.service-card h3 { font-size:1.7rem; font-weight:600; }

.gallery-main,.gallery-side img { border-radius:6px; }
.gallery-main { overflow:hidden; }
.gallery-main img,.gallery-side img { transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .8s ease; }
.gallery-main:hover img,.gallery-side img:hover { transform:scale(1.045); filter:saturate(1.08); }
.gallery-caption { left:0; right:auto; bottom:0; width:min(420px,90%); border-radius:0 6px 0 0; background:rgba(8,18,56,.88); }

.pricing-section { background:#f4f3ef; }
.price-card { border-radius:6px; background:#12347d; box-shadow:none; }
.price-card.featured { background:#fff; border:1px solid rgba(8,18,56,.12); box-shadow:0 30px 80px rgba(8,18,56,.12); }
.badge { border-radius:3px; background:#0a1745; letter-spacing:.07em; text-transform:uppercase; }
.plan-name { font-family:var(--serif); font-size:1.8rem; font-style:normal; }
.price-card li { font-size:.8rem; }

.split-banner { background:#fff; }
.big-word { color:rgba(39,95,206,.22); }
.steps > div { border-bottom:1px solid var(--border); padding-bottom:14px; }
.steps span { border-radius:50%; background:transparent; color:#143a8d; border:1px solid #143a8d; }

.testimonials-section { background:#0a1745; }
.testimonial { border-radius:6px; box-shadow:0 25px 70px rgba(0,0,0,.16); }
.testimonial > p { font-weight:500; }
.slider-btn { border:1px solid rgba(8,18,56,.1); }

.faq-section,.contact-section { background:#f7f7f5; }
.accordion-item button { font-size:.98rem; }
.contact-card { border-radius:6px; background:#0a1745; }
.contact-form { border-radius:5px; }
.contact-form input,.contact-form select { border-radius:3px; }

.footer { background:#050b24; }
.socials a { border-radius:50%; }
.whatsapp { border-radius:50%; width:56px; height:56px; padding:0; justify-content:center; background:#1fae5b; }
.whatsapp strong { display:none; }
.wa-icon { display:grid; place-items:center; }

.reveal { transform: translateY(34px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.75,.2,1); }
.reveal[data-delay="1"] { transition-delay:.08s; }
.reveal[data-delay="2"] { transition-delay:.16s; }
.reveal[data-delay="3"] { transition-delay:.24s; }

@media (max-width:680px) {
  .hero-grid { min-height:auto; }
  .hero h1 { line-height:.86; }
  .hero-image-wrap img { border-radius:46% 46% 4px 4px; }
  .section { padding:90px 0; }
  .about-media img,.image-accent { border-radius:120px 120px 6px 6px; }
  .contact-card { border-radius:4px; }
}
.menu a.active-link:not(.btn) { opacity:1; }
.menu a.active-link:not(.btn)::after { right:0; }
