@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

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

:root {
  --charcoal:   #101417;
  --charcoal-2: #171C21;
  --charcoal-3: #1E252B;
  --blue:       #1B9DD9;
  --blue-lt:    #3FB0E5;
  --blue-deep:  #13558A;
  --graphite:   #737577;
  --graphite-lt:#9BA0A4;
  --ink:     #14181C;
  --white:   #FFFFFF;
  --off:     #F4F7FA;
  --off-2:   #E9EEF3;
  --rule:    #DFE4E9;
  --rule-dk: rgba(255,255,255,.10);
  --muted:   #5C6469;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;
  --max: 1080px;
  --pad: clamp(1.5rem, 5vw, 3rem);
}

html { font-size: 17px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--white);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.en [data-pt] { display: none !important; }
body.pt [data-en] { display: none !important; }

#lang-bar { display: none !important; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 104px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 0 var(--pad);
  background: rgba(16,20,23,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-dk);
}
.nav-logo {
  display: inline-flex; align-items: center; height: 100%;
  padding: 10px 0; flex-shrink: 0;
}
.nav-logo img {
  height: 82px; width: auto; display: block;
}
.nav-links {
  display: flex; gap: 2.4rem; list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: .95rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.78);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta {
  font-size: .9rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white);
  background: var(--blue); padding: .85rem 1.7rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s; border-radius: 2px; white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-deep); }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white); transition: transform .25s, opacity .25s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.page { padding-top: 104px; }

.section { padding: 5rem var(--pad); }
.section--off { background: var(--off); }
.section--dark {
  background: var(--charcoal);
  background-image: radial-gradient(ellipse at 25% 30%, rgba(27,157,217,.10), transparent 60%);
  color: var(--white);
}
.container { max-width: var(--max); margin: 0 auto; }

.eyebrow {
  font-size: .78rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue);
  display: block; margin-bottom: .85rem;
}
.display {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300; line-height: 1.06; letter-spacing: -.01em;
}
.display em { font-style: italic; color: var(--blue); }
.display--sm {
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 300; line-height: 1.15;
}
.display--sm em { font-style: italic; color: var(--blue); }
.lead {
  font-size: 1.2rem; font-weight: 300; color: var(--muted);
  line-height: 1.8; max-width: 540px;
}
.body-text {
  font-size: 1.05rem; font-weight: 300; color: var(--muted);
  line-height: 1.8;
}

.rule { width: 40px; height: 2px; background: var(--blue); margin: 1.1rem 0; }
.rule--c { margin: 1.1rem auto; }

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
  padding: 1rem 2.2rem; transition: background .2s, color .2s, border-color .2s;
  cursor: pointer; border: none; font-family: var(--body); border-radius: 2px;
}
.btn--blue { background: var(--blue); color: var(--white); }
.btn--blue:hover { background: var(--blue-deep); }
.btn--dark { background: var(--charcoal); color: var(--white); }
.btn--dark:hover { background: var(--blue); }
.btn--outline { background: transparent; color: var(--charcoal); border: 1px solid var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--white); }
.btn--ghost-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.btn--ghost-white:hover { background: var(--white); color: var(--charcoal); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

hr.thin { border: none; border-top: 1px solid var(--rule); margin: 3rem 0; }

.srv-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); }
.srv-cards--2 { grid-template-columns: repeat(2,1fr); max-width: 760px; margin: 0 auto; }
.srv-card {
  background: var(--white); padding: 2.8rem 2.1rem;
  display: flex; flex-direction: column; gap: .8rem;
  transition: background .25s;
  border-top: 3px solid transparent;
}
.srv-card:hover { background: var(--off); border-top-color: var(--blue); }
.srv-card__tag {
  font-size: .72rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue);
}
.srv-card__name {
  font-family: var(--display); font-size: 2.2rem; font-weight: 400;
  color: var(--ink); line-height: 1.1;
}
.srv-card__name em { font-style: italic; color: var(--blue-deep); }
.srv-card__desc { font-size: 1rem; color: var(--muted); line-height: 1.75; flex: 1; }
.srv-card__price {
  font-family: var(--display); font-size: 2.3rem; font-weight: 300;
  color: var(--charcoal); margin-top: .5rem;
}
.srv-card__price small {
  font-family: var(--body); font-size: .82rem; color: var(--muted); font-weight: 300;
}
.srv-card__link {
  font-size: .78rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue); text-decoration: none;
  border-bottom: 1px solid var(--blue); padding-bottom: 3px;
  width: fit-content; margin-top: .6rem;
  transition: color .2s, border-color .2s;
}
.srv-card__link:hover { color: var(--blue-deep); border-color: var(--blue-deep); }

.stats { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 2.5rem 2rem; border-right: 1px solid var(--rule); }
.stat:last-child { border-right: none; }
.stat__n {
  font-family: var(--display); font-size: 3.2rem; font-weight: 300;
  color: var(--blue); line-height: 1;
}
.stat__l {
  font-size: .8rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-top: .45rem;
}

.feat-list { display: flex; flex-direction: column; gap: 2rem; }
.feat { display: grid; grid-template-columns: 1.5rem 1fr; gap: 1.1rem; align-items: start; }
.feat__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--blue); margin-top: .5rem;
  box-shadow: 0 0 0 4px rgba(27,157,217,.15);
}
.feat__title { font-size: 1.05rem; font-weight: 500; color: var(--ink); margin-bottom: .3rem; }
.feat__desc { font-size: .98rem; color: var(--muted); line-height: 1.7; }

.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 3rem 1fr;
  gap: 1.5rem; padding: 1.9rem 0;
  border-bottom: 1px solid var(--rule); align-items: start;
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }
.step__n {
  font-family: var(--display); font-size: 2rem;
  font-weight: 400; color: var(--blue); line-height: 1; padding-top: 2px;
}
.step__title { font-size: 1.05rem; font-weight: 500; color: var(--ink); margin-bottom: .35rem; }
.step__desc { font-size: .98rem; color: var(--muted); line-height: 1.7; }

.checklist { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.checklist li {
  font-size: 1rem; color: var(--muted);
  display: flex; align-items: flex-start; gap: .8rem; line-height: 1.6;
}
.checklist li::before { content: '\203A'; color: var(--blue); flex-shrink: 0; font-weight: 600; font-size: 1.2em; line-height: 1.2; }
.checklist li strong { color: var(--ink); font-weight: 500; }

.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--rule); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 1rem 0; font-size: 1rem; vertical-align: top; }
.info-table td:first-child {
  width: 40%; font-weight: 500; color: var(--ink);
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  padding-right: 1.5rem;
}
.info-table td:last-child { color: var(--muted); }

.price-block {
  padding: 2.5rem; background: var(--off);
  border-top: 3px solid var(--blue);
  display: flex; flex-direction: column; gap: .5rem;
}
.price-block__amount {
  font-family: var(--display); font-size: 3.8rem;
  font-weight: 300; color: var(--charcoal); line-height: 1;
}
.price-block__note { font-size: .95rem; color: var(--muted); line-height: 1.6; }

.compare { width: 100%; border-collapse: collapse; }
.compare th {
  font-size: .78rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  padding: .7rem .75rem; text-align: left;
  border-bottom: 2px solid var(--rule);
}
.compare th:not(:first-child) { text-align: center; }
.compare th.us-col { color: var(--blue); }
.compare td {
  padding: .9rem .75rem; font-size: .98rem;
  color: var(--muted); border-bottom: 1px solid var(--rule);
}
.compare td:first-child { color: var(--ink); font-weight: 400; }
.compare td:not(:first-child) { text-align: center; }
.compare .us { color: var(--blue); font-weight: 600; background: rgba(27,157,217,.05); }
.compare .yes { color: var(--blue); font-weight: 600; }
.compare .no { color: #C3C9CE; }
.compare tr:last-child td { border-bottom: none; }

.form { display: flex; flex-direction: column; gap: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink);
}
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; font-weight: 300;
  color: var(--ink); background: var(--white);
  border: 1px solid var(--rule); padding: .9rem 1rem;
  outline: none; transition: border-color .2s; width: 100%; border-radius: 2px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; cursor: pointer; }
.form-submit {
  font-family: var(--body); font-size: .82rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); background: var(--blue);
  border: none; padding: 1.1rem 2.2rem; cursor: pointer;
  transition: background .2s; align-self: flex-start; border-radius: 2px;
}
.form-submit:hover { background: var(--blue-deep); }

footer {
  background: var(--charcoal); color: rgba(255,255,255,.45);
  padding: 2.5rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: .85rem; letter-spacing: .03em;
  border-top: 1px solid var(--rule-dk);
}
footer strong { color: rgba(255,255,255,.75); }
footer strong b { color: var(--blue); }
.footer-nav { display: flex; gap: 2rem; list-style: none; }
.footer-nav a {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s;
}
.footer-nav a:hover { color: var(--blue); }

.srv-hero {
  padding: 5rem var(--pad) 4rem;
  border-bottom: 1px solid var(--rule);
}
.srv-hero__back {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 400; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; margin-bottom: 2.5rem;
  transition: color .2s;
}
.srv-hero__back:hover { color: var(--blue); }

.subhead {
  font-size: .85rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue-deep);
  margin-bottom: 1.3rem; padding-bottom: .7rem;
  border-bottom: 1px solid var(--rule);
}

/* ═══════════════ TABLET ═══════════════ */
@media (max-width: 860px) {
  html { font-size: 16px; }
  .grid-2, .grid-3, .srv-cards, .stats { grid-template-columns: 1fr; }
  .srv-cards { gap: 1px; }
  .stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  nav { height: 88px; }
  .page { padding-top: 88px; }
  .nav-logo img { height: 62px; }
  .nav-cta { padding: .65rem 1.1rem; font-size: .8rem; letter-spacing: .08em; }
  .nav-links {
    position: fixed; top: 88px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(16,20,23,.98);
    backdrop-filter: blur(14px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--rule-dk);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  body.nav-open .nav-links { max-height: 80vh; display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 1rem var(--pad); font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; gap: 1.2rem; }
  .section { padding: 3.5rem var(--pad); }
  .grid-2 { gap: 2.5rem; }
}

/* ═══════════════ MOBILE ═══════════════ */
@media (max-width: 560px) {
  html { font-size: 16px; }
  :root { --pad: 1.35rem; }

  nav { height: 72px; padding: 0 1rem; }
  .nav-logo img { height: 50px; }
  .page { padding-top: 72px; }
  .nav-links { top: 72px; }
  .nav-cta { padding: .55rem .85rem; font-size: .72rem; }

  #lang-bar { top: .7rem; right: .8rem; }
  .lb { padding: .4rem .85rem; font-size: .7rem; }

  .section { padding: 3rem 1.35rem; }
  .srv-hero { padding: 3rem 1.35rem 2.5rem; }

  /* Headlines scale down but stay readable */
  .display { font-size: clamp(2.4rem, 11vw, 3rem); line-height: 1.1; }
  .display--sm { font-size: clamp(1.9rem, 8vw, 2.3rem); }

  /* Body text stays large enough to read comfortably */
  .lead { font-size: 1.1rem; line-height: 1.75; }
  .body-text { font-size: 1.02rem; }

  .btn {
    padding: 1rem 1.6rem; font-size: .8rem;
    width: 100%; justify-content: center;
  }
  /* Button groups stack full-width on mobile */
  .section div[style*="display:flex"][style*="gap"] .btn,
  div[style*="flex-wrap:wrap"] .btn { flex: 1 1 auto; }

  .srv-card { padding: 2.2rem 1.5rem; }
  .srv-card__name { font-size: 2rem; }
  .srv-card__desc { font-size: 1rem; }
  .srv-card__price { font-size: 2.1rem; }

  .stat { padding: 2rem 1.5rem; text-align: center; }
  .stat__n { font-size: 2.8rem; }
  .stat__l { font-size: .82rem; }

  .feat__title { font-size: 1.05rem; }
  .feat__desc { font-size: 1rem; }
  .step__title { font-size: 1.05rem; }
  .step__desc { font-size: 1rem; }
  .checklist li { font-size: 1rem; }

  .price-block { padding: 2rem 1.6rem; }
  .price-block__amount { font-size: 3.2rem; }

  /* Comparison table: allow horizontal scroll so it never squishes */
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -1.35rem; padding: 0 1.35rem; }
  .compare { min-width: 460px; }
  .compare th, .compare td { font-size: .9rem; padding: .7rem .5rem; }

  .info-table td { font-size: .98rem; }
  .info-table td:first-child { font-size: .78rem; }

  .grid-2 { gap: 2.2rem; }
  .feat-list { gap: 1.6rem; }

  /* Tap targets: links in nav/footer get more room */
  .footer-nav { gap: 1rem 1.4rem; }
  .footer-nav a { padding: .2rem 0; }
}

/* Very small phones */
@media (max-width: 360px) {
  .display { font-size: 2.1rem; }
  .srv-card__name { font-size: 1.8rem; }
  .stat__n { font-size: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* ═══════════════ FAQ ACCORDION ═══════════════ */
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.6rem 0; text-align: left; font-family: var(--body);
  font-size: 1.12rem; font-weight: 400; color: var(--ink); line-height: 1.4;
  transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; position: relative;
  transition: transform .3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--blue);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; transition: opacity .3s, transform .3s; }
.faq-item.open .faq-icon::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a-inner {
  padding: 0 0 1.6rem 0; font-size: 1.02rem; color: var(--muted);
  line-height: 1.8; max-width: 680px;
}
.faq-item.open .faq-a { max-height: 600px; }

@media (max-width: 560px) {
  .faq-q { font-size: 1.05rem; padding: 1.4rem 0; gap: 1rem; }
  .faq-a-inner { font-size: 1rem; }
}




/* ═══════════════ NAV LANGUAGE FLAGS ═══════════════ */
.nav-actions {
  display: flex; align-items: center; gap: 1rem; flex-shrink: 0;
}
.nav-lang {
  display: flex; align-items: center; gap: .5rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255,255,255,.15);
}
.nav-flag {
  width: 34px; height: 24px; padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 2px; background: transparent;
  overflow: hidden; cursor: pointer;
  opacity: .55; transition: opacity .2s, border-color .2s, transform .2s;
  display: block;
}
.nav-flag svg { width: 100%; height: 100%; display: block; }
.nav-flag:hover { opacity: 1; transform: translateY(-1px); }
.nav-flag.is-active { opacity: 1; border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }

@media (max-width: 860px) {
  .nav-actions {
    order: 3;
    margin-left: auto;
    gap: .6rem;
  }
  .nav-lang { padding-left: .6rem; }
  .nav-flag { width: 30px; height: 22px; }
}
@media (max-width: 560px) {
  nav { gap: .6rem; }
  .nav-actions { gap: .45rem; }
  .nav-lang { padding-left: .5rem; gap: .35rem; }
  .nav-flag { width: 28px; height: 20px; }
}
@media (max-width: 380px) {
  .nav-logo img { height: 44px !important; }
}


/* Services dropdown */
.nav-links .has-sub{position:relative}
.nav-links .nav-sub{position:absolute;top:100%;left:0;background:#fff;box-shadow:0 10px 30px rgba(0,0,0,.12);border-radius:8px;padding:.5rem 0;min-width:180px;list-style:none;margin:0;opacity:0;visibility:hidden;transform:translateY(6px);transition:all .18s ease;z-index:100}
.nav-links .has-sub:hover .nav-sub,.nav-links .has-sub:focus-within .nav-sub{opacity:1;visibility:visible;transform:translateY(0)}
.nav-links .nav-sub li{display:block}
.nav-links .nav-sub a{display:block;padding:.55rem 1rem;white-space:nowrap;color:#111;text-decoration:none;font-size:.95rem}
.nav-links .nav-sub a:hover{background:#f4f4f4}
.nav-links .nav-parent{cursor:default;user-select:none;font-size:.95rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.78);transition:color .2s}
.nav-links .has-sub:hover .nav-parent{color:var(--blue)}
