/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  background: #F8F7F3;
  color: #0F2747;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(92%, 1180px);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.alt-bg {
  background: #f2f4f7;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 247, 243, 0.96);
  border-bottom: 1px solid rgba(15, 39, 71, 0.08);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand-flex {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo {
  width: 150px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-title {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F2747;
}

.brand-sub {
  display: block;
  font-size: 0.88rem;
  color: #5F6B7A;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: #0F2747;
  font-weight: 500;
  font-size: 0.96rem;
}

.nav a:hover {
  color: #C9A646;
}

/* HERO */
.hero,
.service-hero {
  background: linear-gradient(135deg, #F8F7F3, #f4f1ea);
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 380px);
  gap: 48px;
  align-items: center;
}

.hero-text,
.hero-text-clean {
  max-width: 700px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9A646;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  color: #091A2F;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.12rem;
  color: #445264;
  max-width: 760px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: #C9A646;
  color: #091A2F;
  border: none;
}

.btn-primary:hover {
  background: #E3C46B;
}

.btn-secondary {
  border: 1px solid #C9A646;
  color: #0F2747;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(201, 166, 70, 0.08);
}

/* HERO IMAGE */
.hero-card,
.hero-image-wrap,
.founder-image-wrap,
.hero-visual {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
}

.hero-card-inner {
  background: #ffffff;
  border: 1px solid rgba(15, 39, 71, 0.08);
  border-radius: 18px;
  padding: 18px;
}

.hero-card img,
.hero-image,
.founder-image,
.hero-image-wrap img,
.founder-image-wrap img,
.hero-visual img,
.hero-grid > div:last-child img {
  width: 100%;
  max-width: 380px;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  margin-inline: auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

/* CONTENT */
.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.18;
  color: #091A2F;
  margin-top: 6px;
}

.section-head p {
  margin-top: 10px;
  color: #5F6B7A;
  max-width: 760px;
}

.content-card,
.form-card,
.service-card,
.feature-card,
.process-card,
.testimonial-card,
.faq-item,
.cta-box {
  background: #ffffff;
  border: 1px solid rgba(15, 39, 71, 0.08);
  border-radius: 18px;
}

.content-card,
.form-card,
.cta-box {
  padding: 26px;
}

.service-grid,
.feature-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

.feature-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-card,
.process-card,
.testimonial-card {
  padding: 22px;
}

.service-card h3,
.feature-card h3,
.process-card h3,
.testimonial-card h3 {
  color: #0F2747;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p,
.feature-card p,
.process-card p,
.testimonial-card p,
.content-card p,
.content-card li {
  color: #5F6B7A;
}

.content-card ul {
  padding-left: 18px;
}

.process-number {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #C9A646;
  margin-bottom: 10px;
}

/* FORMS */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #0F2747;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid rgba(15, 39, 71, 0.12);
  background: #ffffff;
  color: #0F2747;
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8a96a3;
}

.form-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #0F2747;
}

.faq-item p {
  margin-top: 12px;
  color: #5F6B7A;
}

/* CTA */
.cta-section {
  padding: 76px 0;
  background: transparent;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-box h2 {
  color: #091A2F;
  margin: 8px 0;
}

/* FOOTER */
.site-footer {
  background: #091A2F;
  padding: 38px 0;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.footer-brand-title {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.site-footer p {
  color: #d7dce3;
  margin-bottom: 6px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  text-decoration: none;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

/* TABLET */
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .hero,
  .service-hero {
    padding: 62px 0 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-card,
  .hero-image-wrap,
  .founder-image-wrap,
  .hero-visual,
  .hero-card img,
  .hero-image,
  .founder-image,
  .hero-image-wrap img,
  .founder-image-wrap img,
  .hero-visual img,
  .hero-grid > div:last-child img {
    max-width: 300px;
    max-height: 360px;
  }

  .form-grid,
  .footer-wrap,
  .cta-box,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: grid;
  }
}

@media (max-width: 560px) {
  .container {
    width: 92%;
  }

  .logo {
    width: 120px;
  }

  .brand-title {
    font-size: 0.96rem;
  }

  .brand-sub {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .hero-actions,
  .form-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card,
  .hero-image-wrap,
  .founder-image-wrap,
  .hero-visual,
  .hero-card img,
  .hero-image,
  .founder-image,
  .hero-image-wrap img,
  .founder-image-wrap img,
  .hero-visual img,
  .hero-grid > div:last-child img {
    max-width: 240px;
    max-height: 300px;
  }

  .content-card,
  .form-card,
  .service-card,
  .feature-card,
  .process-card,
  .testimonial-card,
  .faq-item,
  .cta-box {
    padding: 18px;
  }

  .section {
    padding: 56px 0;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    font-size: 0.8rem;
    padding: 11px 14px;
  }
}
