:root {
  --white: #ffffff;
  --off: #f7f8fc;
  --primary: #2d2a73;
  --primary-dark: #222055;
  --blue: #3545a0;
  --blue-soft: #e8ecfa;
  --accent: #e0ab3f;
  --accent-strong: #f0b33a;
  --text: #1d2230;
  --muted: #646b79;
  --border: #e4e8f1;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: 102px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 42, 115, 0.08);
  transition: box-shadow 0.25s, height 0.25s;
}

.header.is-scrolled {
  box-shadow: 0 10px 28px rgba(21, 31, 79, 0.1);
}

.header .nav-wrap {
  width: min(1320px, 96%);
  min-height: 102px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  flex-shrink: 0;
}

.brand-logo {
  height: 96px;
  width: auto;
  max-width: min(280px, 52vw);
  object-fit: contain;
  display: block;
}

.brand-fallback {
  display: none;
  font-weight: 800;
  color: var(--primary);
  border: 2px solid var(--accent);
  border-radius: 10px;
  padding: 0.4rem 0.9rem;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  justify-self: center;
  gap: 1.6rem;
  list-style: none;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  padding-bottom: 4px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s;
}

.nav a:hover::after {
  width: 100%;
}

.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta {
  color: var(--white);
  background: var(--primary);
  padding: 0.68rem 1.25rem;
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.74rem;
  transition: background 0.25s;
}

.nav-cta:hover {
  background: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  flex-shrink: 0;
}

.nav-sister {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 8px 14px 8px 12px;
  border: 1px solid rgba(45, 42, 115, 0.16);
  border-radius: 999px;
  background: #f4f6fb;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: none;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.nav-sister-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-sister-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s, color 0.2s;
}

.nav-sister:hover {
  border-color: var(--accent);
  background: #fff8ee;
  transform: translateY(-1px);
}

.nav-sister:hover .nav-sister-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.nav-sister-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 8px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  position: relative;
  padding-top: 102px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--blue) 62%, #263f95 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 74% 30%, rgba(224, 171, 63, 0.2) 0%, transparent 45%);
}

.hero-accent {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 72px solid rgba(224, 171, 63, 0.13);
}

.hero-accent2 {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  width: 410px;
  height: 410px;
  border-radius: 50%;
  border: 2px solid rgba(224, 171, 63, 0.28);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 102px);
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 3.4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.42rem 0.9rem;
  border: 1px solid rgba(240, 179, 58, 0.42);
  background: rgba(240, 179, 58, 0.16);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 1.6rem;
}

.hero-eyebrow span {
  width: 22px;
  height: 1px;
  background: currentColor;
}

.hero-title {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}

.hero-title em {
  font-style: normal;
  color: var(--accent-strong);
}

.hero-desc {
  max-width: 490px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2.1rem;
}

.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.55rem;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  transition: background 0.25s, transform 0.25s;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(224, 171, 63, 0.42);
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  overflow: hidden;
  align-self: end;
}

.stat {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.65rem 1rem;
  text-align: center;
}

.stat-num {
  font-family: "Playfair Display", serif;
  color: var(--accent-strong);
  font-size: 1.85rem;
  font-weight: 700;
}

.stat-lbl {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.services {
  background: var(--off);
  padding-bottom: 100px;
}

.services-hero {
  position: relative;
  min-height: 360px;
  background: linear-gradient(145deg, #1f327b 0%, #2e45a1 100%);
  display: flex;
  align-items: center;
  margin-bottom: 72px;
  overflow: hidden;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 120%, rgba(240, 179, 58, 0.25) 0%, transparent 46%);
}

.section-header {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--accent-strong);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.section-title {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  margin-bottom: 1rem;
}

.services-hero .section-title {
  color: var(--white);
}

.section-sub {
  max-width: 650px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(45, 42, 115, 0.08);
  border-radius: 8px;
  padding: 2rem 1.65rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.28s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(45, 42, 115, 0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

.service-name {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.55rem;
}

.service-desc {
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.93rem;
}

.about {
  background: var(--white);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.4rem;
  align-items: center;
}

.about-card {
  padding: 3.2rem 2.5rem;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}

.about-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 38px solid rgba(224, 171, 63, 0.22);
}

.about-card-year {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: rgba(255, 255, 255, 0.14);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 0.45rem;
}

.about-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.about-card-text {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}

.about-visual {
  position: relative;
}

.about-badge {
  position: absolute;
  top: -20px;
  right: 30px;
  padding: 0.86rem 1.05rem;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(224, 171, 63, 0.35);
  text-align: center;
}

.about-badge strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.about-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.about-desc {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.about-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.trust {
  background: var(--primary-dark);
  padding: 74px 0;
}

.trust-inner {
  text-align: center;
}

.trust-label {
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.trust-title {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  margin-bottom: 0.85rem;
}

.trust-desc {
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
  margin: 0 auto 2.2rem;
  line-height: 1.74;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.trust-badge {
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  padding: 1rem 1rem;
  border-radius: 8px;
  text-align: left;
}

.trust-badge strong {
  display: block;
  font-size: 0.87rem;
}

.trust-badge span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.trust-icon {
  font-size: 1.35rem;
}

.contact {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.2rem;
  align-items: start;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: var(--muted);
}

.contact-list strong {
  color: var(--text);
}

.contact-list a {
  color: var(--primary);
  font-weight: 700;
}

.contact-map {
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 360px;
}

.contact-map iframe {
  width: 100%;
  min-height: 360px;
  height: 100%;
  border: 0;
}

.footer {
  background: #0f1b4a;
  color: rgba(255, 255, 255, 0.55);
  padding: 0;
}

.footer-inner {
  width: 100%;
  max-width: none;
  padding: 64px 6% 48px;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) auto auto minmax(260px, 1.3fr);
  justify-content: space-between;
  column-gap: clamp(48px, 8vw, 120px);
  row-gap: 48px;
}

.footer-brand img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-badge {
  display: inline-block;
  background: rgba(224, 171, 63, 0.15);
  border: 1px solid rgba(224, 171, 63, 0.3);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-strong);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.footer-contact-item .ico {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--accent-strong);
}

.footer-contact-item a {
  color: inherit;
}

.footer-contact-item a:hover {
  color: var(--accent-strong);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 130;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.48);
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.09);
}

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

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

@media (max-width: 980px) {
  .header .nav-wrap {
    display: flex;
    justify-content: space-between;
    width: min(1180px, 92%);
  }

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

  .nav-actions {
    order: 2;
    margin-left: 0;
  }

  .nav {
    position: fixed;
    top: 102px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 1.2rem 1.1rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s, transform 0.22s;
  }

  body.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-sister {
    display: none;
  }

  .nav-sister-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding-top: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
  }

  .nav-sister-mobile::after {
    display: none;
  }

  .nav-sister-mobile .nav-sister-ico {
    width: 18px;
    height: 18px;
  }

  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 1rem;
  }

  .hero-accent,
  .hero-accent2 {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
}

@media (max-width: 640px) {
  .header {
    height: 88px;
  }

  .nav-wrap {
    min-height: 88px;
  }

  .nav {
    top: 88px;
  }

  .brand-logo {
    height: 80px;
    width: auto;
  }

  .nav-cta {
    padding: 0.58rem 0.9rem;
    font-size: 0.67rem;
  }

  .hero {
    padding-top: 88px;
  }

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

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

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 12px;
    bottom: 12px;
  }
}
