@charset "UTF-8";
.header .nav, .hero, .container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .header .nav, .hero, .container {
    padding: 0 48px;
  }
}
@media (min-width: 1440px) {
  .header .nav, .hero, .container {
    padding: 0 80px;
    max-width: 1920px;
  }
}
@media (max-width: 480px) {
  .header .nav, .hero, .container {
    padding: 0 16px;
  }
}

.section, .services-section, .why-us-section, .process-section, .client-profiles, .testimonials, .about-section, .contact-info-section, .map-section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section, .services-section, .why-us-section, .process-section, .client-profiles, .testimonials, .about-section, .contact-info-section, .map-section {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .section, .services-section, .why-us-section, .process-section, .client-profiles, .testimonials, .about-section, .contact-info-section, .map-section {
    padding: 40px 0;
  }
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  background-color: #F7F8FA;
  color: #0b1c2d;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body .desktop-text {
  display: inline;
}
body .mobile-text {
  display: none;
}
@media (max-width: 768px) {
  body .desktop-text {
    display: none;
  }
  body .mobile-text {
    display: inline;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Canela", "Playfair Display", serif;
  font-weight: 600;
  color: #0b1c2d;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.btn.btn-primary {
  background-color: #0b1c2d;
  color: white;
  border: 1px solid #0b1c2d;
}
.btn.btn-primary:hover {
  background-color: rgb(16.0089285714, 40.75, 65.4910714286);
}
.btn.btn-secondary {
  background-color: transparent;
  color: #0b1c2d;
  border: 1px solid #0b1c2d;
}
.btn.btn-secondary:hover {
  background-color: #0b1c2d;
  color: white;
}

.services-section {
  background-color: white;
  min-height: 800px;
}
.services-section h2 {
  text-align: center;
  color: #0b1c2d;
  font-size: 48px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .services-section h2 {
    font-size: 28px;
  }
}
.services-section .service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .services-section .service-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .services-section .service-grid {
    gap: 20px;
    margin-top: 40px;
  }
}
.services-section .service-category {
  padding: 40px;
  border: 1px solid #E1E4E8;
  transition: all 0.4s ease;
  background: white;
}
@media (max-width: 480px) {
  .services-section .service-category {
    padding: 20px;
  }
}
.services-section .service-category:hover {
  transform: translateY(-5px);
  border-color: #0b1c2d;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.services-section .service-category h3 {
  font-size: 24px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #C9A24D;
  display: inline-block;
}
.services-section .service-category ul {
  list-style: none;
}
.services-section .service-category ul li {
  margin-bottom: 12px;
  color: #5F6B7A;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.services-section .service-category ul li:before {
  content: "→";
  color: #C9A24D;
  margin-right: 10px;
  font-size: 12px;
}

.why-us-section {
  background-color: #0b1c2d;
  color: white;
  position: relative;
  overflow: hidden;
}
.why-us-section .why-us-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  background-image: url("./why-us-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}
.why-us-section .container {
  position: relative;
  z-index: 1;
}
.why-us-section h2,
.why-us-section p {
  color: white;
}
.why-us-section .outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .why-us-section .outcome-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .why-us-section .outcome-grid {
    gap: 40px;
    margin-top: 40px;
  }
}
.why-us-section .outcome-item h3 {
  color: #C9A24D;
  font-size: 20px;
  margin-bottom: 16px;
}
.why-us-section .outcome-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}
.why-us-section .metrics {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .why-us-section .metrics {
    flex-direction: column;
    gap: 40px;
  }
}
.why-us-section .metrics div {
  text-align: center;
}
.why-us-section .metrics div h4 {
  font-size: 48px;
  color: white;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 768px) {
  .why-us-section .metrics div h4 {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .why-us-section .metrics div h4 {
    font-size: 28px;
  }
}
.why-us-section .metrics div span {
  color: #C9A24D;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.process-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .process-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .process-section .container {
    gap: 30px;
  }
}
.process-section h2 {
  grid-column: 1/-1;
  text-align: center;
}
.process-section .process-steps {
  margin-top: 60px;
  counter-reset: process-counter;
}
.process-section .step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E1E4E8;
}
@media (max-width: 480px) {
  .process-section .step {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.process-section .step:last-child {
  border-bottom: none;
}
.process-section .step:before {
  counter-increment: process-counter;
  content: "0" counter(process-counter);
  font-family: "Canela", "Playfair Display", serif;
  font-size: 48px;
  color: #ECEFF3;
  font-weight: 700;
  margin-right: 40px;
  line-height: 1;
}
@media (max-width: 480px) {
  .process-section .step:before {
    font-size: 32px;
    margin-right: 20px;
  }
}
.process-section .step .step-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.process-section .step .step-content p {
  color: #5F6B7A;
}
.process-section .process-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-section .process-visual img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

.client-profiles {
  background-color: #0b1c2d;
  position: relative;
  overflow: hidden;
  color: white;
}
.client-profiles .client-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  background-image: url("./boardroom.png");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.client-profiles .container {
  position: relative;
  z-index: 1;
}
.client-profiles .container h2 {
  color: white;
}
.client-profiles .profiles-grid {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .client-profiles .profiles-grid {
    padding: 20px;
  }
}
.client-profiles .profile-card {
  flex: 1;
  min-width: 250px;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.client-profiles .profile-card:hover {
  transform: translateY(-10px);
  border-color: #C9A24D;
}
@media (max-width: 768px) {
  .client-profiles .profile-card {
    min-width: 100%;
    padding: 30px 20px;
  }
}
.client-profiles .profile-card h3 {
  font-size: 18px;
  margin-top: 16px;
  color: white;
}
.client-profiles .profile-card .icon-abstract {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A24D;
  transition: transform 0.3s ease;
}
.client-profiles .profile-card .icon-abstract svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
}

.testimonials {
  text-align: center;
}
.testimonials .quote {
  font-family: "Canela", "Playfair Display", serif;
  font-size: 32px;
  font-style: italic;
  color: #0b1c2d;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .testimonials .quote {
    font-size: 24px;
  }
}
.testimonials .author {
  font-size: 14px;
  color: #5F6B7A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.about-section {
  position: relative;
  color: white;
  background-color: #0b1c2d;
  overflow: hidden;
}
.about-section .about-visual {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url("./boardroom.png");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}
.about-section .about-content {
  position: relative;
  z-index: 1;
}
.about-section .about-content h2 {
  color: white;
  margin-bottom: 40px;
}
.about-section .about-content .about-text {
  max-width: 800px;
}
.about-section .about-content .about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}
.about-section .about-content .about-values {
  list-style: none;
}
.about-section .about-content .about-values li {
  margin-bottom: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}
.about-section .about-content .about-values li strong {
  color: #C9A24D;
  margin-right: 8px;
}

.final-cta {
  padding: 120px 0;
  background-color: #0b1c2d;
  text-align: center;
  color: white;
}
.final-cta h2 {
  color: white;
  font-size: 48px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 32px;
  }
}
.final-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.footer {
  padding: 80px 0 40px;
  background-color: rgb(2.9857142857, 7.6, 12.2142857143);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer h3 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 12px;
}
.footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #C9A24D;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 12px;
}
.footer ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}
.footer ul li a:hover {
  color: #C9A24D;
  transform: translateX(5px);
}
.footer .footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .footer .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .footer .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer .footer-column.brand-col .logo {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer .footer-column.brand-col .logo .logo-img {
  height: 120px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .footer .footer-column.brand-col .logo .logo-img {
    height: 80px;
  }
}
.footer .footer-column.brand-col .logo .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer .footer-column.brand-col .logo .brand-text .brand-name {
  font-family: "Canela", "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}
.footer .footer-column.brand-col .logo .brand-text .brand-subtext {
  color: #C9A24D;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-top: 4px;
}
.footer .footer-column.brand-col .footer-contact {
  margin-bottom: 30px;
}
.footer .footer-column.brand-col .footer-contact .contact-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 15px;
}
.footer .footer-column.brand-col .footer-contact .contact-link .icon {
  margin-right: 10px;
  color: #C9A24D;
}
.footer .footer-column.brand-col .footer-contact .contact-link:hover {
  color: white;
}
.footer .footer-column.brand-col .footer-contact .address {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-top: 20px;
}
.footer .footer-column.brand-col .footer-contact .address .icon {
  margin-right: 10px;
  color: #C9A24D;
}
.footer .footer-column.brand-col .social-links {
  display: flex;
  gap: 15px;
}
.footer .footer-column.brand-col .social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.footer .footer-column.brand-col .social-links a:hover {
  background-color: #C9A24D;
  border-color: #C9A24D;
  color: #0b1c2d;
  transform: translateY(-3px);
}
.footer .footer-secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .footer .footer-secondary-grid {
    grid-template-columns: 1fr;
  }
}
.footer .footer-secondary-grid h3 {
  font-size: 14px;
  margin-bottom: 20px;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.contact-info-section {
  background-color: white;
  text-align: center;
}
.contact-info-section h2 {
  font-size: 48px;
  margin-bottom: 80px;
  color: #0b1c2d;
}
@media (max-width: 768px) {
  .contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.contact-info-section h2 .underline {
  position: relative;
  display: inline-block;
}
.contact-info-section h2 .underline::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #C9A24D;
}
.contact-info-section .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .contact-info-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact-info-section .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact-info-section .contact-item .contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(95, 107, 122, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .contact-info-section .contact-item .contact-icon {
    width: 60px;
    height: 60px;
  }
  .contact-info-section .contact-item .contact-icon svg {
    width: 24px;
    height: 24px;
  }
}
.contact-info-section .contact-item .contact-icon svg {
  stroke: #5F6B7A;
  transition: stroke 0.3s ease;
}
.contact-info-section .contact-item .contact-icon.contact-icon-large {
  width: 100px;
  height: 100px;
  background-color: #0b1c2d;
}
@media (max-width: 768px) {
  .contact-info-section .contact-item .contact-icon.contact-icon-large {
    width: 80px;
    height: 80px;
  }
}
.contact-info-section .contact-item .contact-icon.contact-icon-large svg {
  stroke: white;
}
.contact-info-section .contact-item:hover .contact-icon {
  background-color: rgba(201, 162, 77, 0.15);
  transform: translateY(-5px);
}
.contact-info-section .contact-item:hover .contact-icon svg {
  stroke: #C9A24D;
}
.contact-info-section .contact-item:hover .contact-icon.contact-icon-large {
  background-color: rgb(16.0089285714, 40.75, 65.4910714286);
}
.contact-info-section .contact-item:hover .contact-icon.contact-icon-large svg {
  stroke: #C9A24D;
}
.contact-info-section .contact-item h3 {
  font-size: 18px;
  color: #0b1c2d;
  margin-bottom: 8px;
}
.contact-info-section .contact-item a {
  font-size: 15px;
  color: #5F6B7A;
  font-weight: 500;
  transition: color 0.3s ease;
}
.contact-info-section .contact-item a:hover {
  color: #C9A24D;
}
.contact-info-section .contact-item .office-info {
  text-align: center;
  max-width: 300px;
}
.contact-info-section .contact-item .office-info p {
  font-size: 13px;
  color: #5F6B7A;
  line-height: 1.6;
  margin-bottom: 12px;
}
.contact-info-section .contact-item .office-info p strong {
  display: block;
  color: #0b1c2d;
  margin-bottom: 4px;
  font-size: 14px;
}
.contact-info-section .contact-item .qr-code {
  text-align: center;
  margin-top: 16px;
}
.contact-info-section .contact-item .qr-code img {
  margin-bottom: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.contact-info-section .contact-item .qr-code img:hover {
  transform: scale(1.05);
}
.contact-info-section .contact-item .qr-code p {
  font-size: 12px;
  color: #5F6B7A;
  margin: 0;
}
.contact-info-section .contact-item.contact-center {
  position: relative;
}
.contact-info-section .connecting-lines {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .contact-info-section .connecting-lines {
    display: block;
  }
}
.contact-info-section .connecting-lines svg {
  width: 100%;
  height: 100px;
}

.map-section {
  background-color: #f8f9fa;
  text-align: center;
  position: relative;
}
.map-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05));
  pointer-events: none;
}
.map-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #0b1c2d;
}
@media (max-width: 768px) {
  .map-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.map-section iframe {
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  max-width: 100%;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(11, 28, 45, 0.9);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.modal .modal-content {
  position: relative;
  background-color: white;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .modal .modal-content {
    padding: 32px 20px;
    max-height: 95vh;
    width: 95%;
  }
}
@media (max-width: 480px) {
  .modal .modal-content {
    padding: 24px 16px;
  }
}
.modal.active .modal-content {
  transform: scale(1);
}
.modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #5F6B7A;
  transition: color 0.3s ease;
}
.modal .modal-close:hover {
  color: #0b1c2d;
}
.modal .modal-header {
  margin-bottom: 40px;
}
.modal .modal-header h2 {
  font-size: 32px;
  color: #0b1c2d;
  margin-bottom: 12px;
}
.modal .modal-header p {
  color: #5F6B7A;
  font-size: 15px;
}

.consultation-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .consultation-form .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.consultation-form .form-group {
  margin-bottom: 24px;
}
.consultation-form .form-group label {
  display: block;
  font-weight: 600;
  color: #0b1c2d;
  margin-bottom: 8px;
  font-size: 14px;
}
.consultation-form .form-group input,
.consultation-form .form-group select,
.consultation-form .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E1E4E8;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #0b1c2d;
  transition: all 0.3s ease;
}
.consultation-form .form-group input:focus,
.consultation-form .form-group select:focus,
.consultation-form .form-group textarea:focus {
  outline: none;
  border-color: #C9A24D;
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.1);
}
.consultation-form .form-group input::-moz-placeholder, .consultation-form .form-group select::-moz-placeholder, .consultation-form .form-group textarea::-moz-placeholder {
  color: rgba(95, 107, 122, 0.5);
}
.consultation-form .form-group input::placeholder,
.consultation-form .form-group select::placeholder,
.consultation-form .form-group textarea::placeholder {
  color: rgba(95, 107, 122, 0.5);
}
.consultation-form .form-group select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235F6B7A' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.consultation-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.consultation-form .form-actions {
  margin-top: 32px;
  text-align: center;
}
.consultation-form .form-actions button {
  width: 100%;
  max-width: 400px;
  padding: 16px 32px;
  font-size: 16px;
  background-color: #0b1c2d;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.consultation-form .form-actions button:hover {
  background-color: rgb(16.0089285714, 40.75, 65.4910714286);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 28, 45, 0.3);
}
.consultation-form .form-actions .form-note {
  margin-top: 16px;
  font-size: 13px;
  color: #5F6B7A;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  margin-bottom: 24px;
}
.form-success .success-icon svg {
  stroke: #10B981;
  stroke-width: 2;
}
.form-success h3 {
  font-size: 28px;
  color: #0b1c2d;
  margin-bottom: 16px;
}
.form-success p {
  color: #5F6B7A;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
}
.form-success button {
  background-color: #C9A24D;
  border: none;
  color: white;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form-success button:hover {
  background-color: rgb(174.1637931034, 136.0043103448, 52.8362068966);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.4s ease, border-bottom 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .header {
    height: 80px;
  }
}
.header.scrolled {
  background-color: rgba(247, 248, 250, 0.95);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.header.scrolled .logo .brand-text .brand-name {
  color: #0b1c2d;
}
.header.scrolled .nav-links li a {
  color: #5F6B7A;
}
.header.scrolled .nav-links li a:hover {
  color: #0b1c2d;
}
.header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .logo .logo-img {
  height: 80px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  transition: height 0.3s ease;
}
@media (max-width: 768px) {
  .header .logo .logo-img {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .header .logo .logo-img {
    height: 50px;
  }
}
.header .logo .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.header .logo .brand-text .brand-name {
  font-family: "Canela", "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  transition: color 0.4s ease;
}
@media (max-width: 480px) {
  .header .logo .brand-text .brand-name {
    font-size: 24px;
  }
}
.header .logo .brand-text .brand-subtext {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #C9A24D;
  margin-top: 2px;
}
.header .nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
@media (max-width: 768px) {
  .header .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .header .nav-links {
    padding: 60px 20px;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .header .nav-links.active {
    right: 0;
  }
}
.header .nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: white;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .header .nav-links li a {
    font-size: 24px;
    font-family: "Canela", "Playfair Display", serif;
    color: #0b1c2d;
  }
}
@media (max-width: 480px) {
  .header .nav-links li a {
    font-size: 20px;
  }
}
.header .nav-links li a:hover {
  color: #C9A24D;
}
.header .nav-links .cta-button {
  padding: 10px 20px;
  background-color: #C9A24D;
  color: white;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .header .nav-links .cta-button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
  }
}
.header .nav-links .cta-button:hover {
  background-color: rgb(174.1637931034, 136.0043103448, 52.8362068966);
}
.header .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
@media (max-width: 768px) {
  .header .menu-toggle {
    display: block;
  }
}
.header .menu-toggle .hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0b1c2d;
  position: relative;
  transition: background-color 0.3s ease;
}
.header .menu-toggle .hamburger::before, .header .menu-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0b1c2d;
  left: 0;
  transition: transform 0.3s ease;
}
.header .menu-toggle .hamburger::before {
  top: -8px;
}
.header .menu-toggle .hamburger::after {
  bottom: -8px;
}
.header .menu-toggle.active .hamburger {
  background-color: transparent;
}
.header .menu-toggle.active .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}
.header .menu-toggle.active .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    text-align: center;
  }
}
.hero .hero-content {
  max-width: 80%;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.hero .hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #0b1c2d;
}
@media (max-width: 1024px) {
  .hero .hero-content h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}
.hero .hero-content .subtitle {
  font-size: 1.25rem;
  color: #5F6B7A;
  margin-bottom: 40px;
  max-width: 80%;
}
@media (max-width: 768px) {
  .hero .hero-content .subtitle {
    max-width: 100%;
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-content .subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}
.hero .hero-content .cta-group {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .hero .hero-content .cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
}
.hero .hero-visual {
  position: absolute;
  right: 0;
  top: -10%;
  width: 100%;
  height: 120%;
  background-image: url("./hero-bg.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.6;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 60%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 60%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero .hero-visual {
    opacity: 0.4;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  }
}

.trust-strip {
  background-color: white;
  padding: 24px 0;
  border-bottom: 1px solid #E1E4E8;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .trust-strip {
    padding: 16px 0;
  }
}
.trust-strip .ticker {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.trust-strip .ticker span {
  font-size: 14px;
  color: #5F6B7A;
  margin: 0 32px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media (max-width: 480px) {
  .trust-strip .ticker span {
    margin: 0 16px;
    font-size: 12px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}/*# sourceMappingURL=main.css.map */