/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:    #096A61;
  --green-dk: #365951;
  --gold:     #fdd746;
  --dark:     #192c27;
  --text:     #365951;
  --text-sm:  #4a6660;
  --gray-bg:  #F2F7F6;
  --border:   #E6F0EE;
  --radius:   8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lexend', sans-serif;
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  background-color: #FBFCFC;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Staatliches', sans-serif;
  font-weight: 400;
  letter-spacing: .03em;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  width: min(1290px, 92%);
  margin-inline: auto;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--dark);
  color: #b0c4c0;
  font-size: .8rem;
  padding: .55rem 0;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.top-bar span { display: flex; align-items: center; gap: .4rem; }
.top-bar i    { color: var(--gold); font-size: .85rem; }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--gray-bg);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  padding: .55rem 0;
  gap: 1rem;
}
.site-logo img { height: 58px; width: auto; }

.site-nav {
  display: flex;
  gap: 2rem;
  margin: 0 auto;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
}
.site-nav a         { color: var(--dark); transition: color .18s; }
.site-nav a:hover   { color: var(--green); }

.site-header__social {
  display: flex;
  gap: .55rem;
  flex-shrink: 0;
}
.site-header__social a {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: #fff;
  font-size: .85rem;
  transition: opacity .18s;
}
.site-header__social a:hover    { opacity: .82; }
.site-header__social .wa        { background: #25d366; }
.site-header__social .li        { background: #0077b5; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.4rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  min-height: 50px;
  transition: opacity .18s, transform .18s, background .18s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover          { transform: translateY(-1px); }
.btn--whatsapp      { background: #25d366; color: #fff; }
.btn--whatsapp:hover { background: #1ebe5d; }
.btn--linkedin      { background: #0077b5; color: #fff; }
.btn--linkedin:hover { background: #005f94; }
.btn--primary       { background: var(--green); color: #fff; }
.btn--primary:hover  { background: var(--gold); color: var(--dark); }

/* =============================================
   HERO
   ============================================= */
.hero {
  background-color: var(--green);
  background-image: url('/uploads/2022/07/waves-background.svg');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 80px;
  color: #fff;
  overflow: visible;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 3rem;
  min-height: 440px;
}

/* Left column */
.hero__left {
  padding-bottom: 80px;
  align-self: center;
}
.hero__greeting {
  font-size: .95rem;
  font-weight: 400;
  opacity: .9;
  margin-bottom: .3rem;
}
.hero__name {
  font-family: 'Staatliches', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.hero__deco {
  display: block;
  width: 200px;
  margin: .8rem 0 1.8rem;
}
.hero__deco img { width: 100%; }
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 230px;
}

/* Center (photo) */
.hero__photo {
  align-self: flex-end;
  width: clamp(240px, 26vw, 340px);
  flex-shrink: 0;
}
.hero__photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  height: clamp(320px, 38vw, 520px);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.3));
}

/* Right column */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-self: center;
  padding-bottom: 80px;
  text-align: right;
}
.hero__stat-label {
  display: block;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: .1rem;
}
.hero__stat-value {
  display: block;
  font-family: 'Staatliches', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1;
}

/* =============================================
   SECTION TITLE
   ============================================= */
.section-title {
  font-family: 'Staatliches', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 2.5rem;
  color: var(--dark);
}
.section-title::after {
  content: '';
  display: block;
  width: 55px;
  height: 5px;
  background: var(--green);
  margin-top: .5rem;
  border-radius: 3px;
}
.section-title--center            { text-align: center; }
.section-title--center::after     { margin-inline: auto; }

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 5rem 0 4.5rem;
  background: #fff;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem 2rem;
  position: relative;
  transition: box-shadow .2s;
}
.service-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); }

.service-card--highlight {
  background: var(--gold);
  border-color: var(--gold);
}

.service-card__num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,0,0,.07);
  line-height: 1;
  margin-bottom: .6rem;
}
.service-card--highlight .service-card__num { color: rgba(0,0,0,.12); }

.service-card__icon {
  height: 52px;
  display: flex;
  align-items: center;
  margin-bottom: 1.1rem;
}
.service-card__icon img            { height: 44px; width: auto; }
.service-card__icon i              { font-size: 2.4rem; }
.service-icon--excel               { color: #1d6f42; }  /* Excel green */
.service-icon--gear                { color: #2563eb; }  /* blue */
.service-icon--monitor             { color: #7c3aed; }  /* purple */
.service-card--highlight .service-card__icon i { color: rgba(0,0,0,.55); }

.service-card__title {
  font-family: 'Staatliches', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .9rem;
  line-height: 1.2;
  color: var(--dark);
}
.service-card p {
  font-size: .83rem;
  color: var(--text-sm);
  line-height: 1.7;
}
.service-card--highlight p { color: #333; }

/* =============================================
   FEATURED ON
   ============================================= */
.featured {
  background: #fff;
  padding: 3.5rem 0 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.featured__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
}
.featured__logos img {
  height: 44px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: .85;
  transition: filter .2s, opacity .2s;
}
.featured__logos img:hover { filter: none; opacity: 1; }

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: 5rem 0;
  background: #fff;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: .9rem;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery__item--wide { grid-column: span 2; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  padding: 1.4rem .9rem .65rem;
}

/* =============================================
   EXPERIENCE
   ============================================= */
.experience {
  padding: 5rem 0 4.5rem;
  background: var(--gray-bg);
}
.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}

.exp-entry {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
}
.exp-entry:last-child { border-bottom: none; }

.exp-entry__period {
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding-top: .2rem;
  line-height: 1.4;
}

.exp-entry__body h3 {
  font-family: 'Staatliches', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: .2rem;
  line-height: 1.2;
  color: var(--dark);
}
.exp-entry__role {
  font-style: italic;
  font-size: .82rem;
  color: #666;
  margin-bottom: .7rem;
}
.exp-entry__subrole {
  margin-top: .9rem;
  font-size: .82rem;
  font-weight: 700;
  color: #333;
}
.exp-entry__subrole + p {
  font-size: .82rem;
  color: var(--text-sm);
  margin-top: .3rem;
}
.exp-entry__body ul {
  list-style: disc;
  padding-left: 1.1rem;
  font-size: .81rem;
  color: var(--text-sm);
  line-height: 1.72;
}
.exp-entry__body li + li { margin-top: .15rem; }

/* =============================================
   CTA / CONTACT
   ============================================= */
.cta {
  background: var(--dark);
  color: #fff;
  padding: 5.5rem 0 5rem;
  text-align: center;
}
.cta__sub {
  font-size: .9rem;
  opacity: .6;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.cta__title {
  font-family: 'Staatliches', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 2.8rem;
  letter-spacing: .03em;
}
.cta__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
}
.cta__contacts a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  padding: .65rem 1.5rem;
  border-radius: 50px;
  font-size: .88rem;
  transition: background .18s, border-color .18s;
}
.cta__contacts a:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--gray-bg);
  color: var(--text-sm);
  border-top: 1px solid var(--border);
  padding: 1.6rem 0;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer .site-logo img {
  height: 46px;
}
.site-footer__copy { font-size: .8rem; }
.site-footer__social {
  display: flex;
  gap: .55rem;
}
.site-footer__social a {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: .85rem;
  background: rgba(9,106,97,.25);
  color: var(--green);
  transition: background .18s, color .18s;
}
.site-footer__social a:hover { background: var(--green); color: #fff; }
.site-footer__social .wa:hover { background: #25d366; }
.site-footer__social .li:hover { background: #0077b5; }

/* =============================================
   INNER PAGE HERO
   ============================================= */
.page-hero {
  background: var(--green);
  color: #fff;
  padding: 4rem 0 3.5rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.page-hero p { margin-top: .6rem; opacity: .85; font-size: 1.05rem; }

/* =============================================
   INNER PAGE CONTENT / PROSE
   ============================================= */
.page-content { padding: 4rem 0; }

.prose h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 2.2rem 0 .8rem;
  color: #111;
}
.prose h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.6rem 0 .5rem;
  color: var(--green);
}
.prose p { margin-bottom: 1rem; }

/* =============================================
   BLOG POST
   ============================================= */
.post-content { padding: 4rem 0 5rem; }
.post-header { margin-bottom: 2rem; }
.post-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: .4rem;
}
.post-header time { color: #999; font-size: .85rem; }
.post-body { max-width: 780px; }
.post-body h2 { margin: 2rem 0 .8rem; font-size: 1.4rem; }
.post-body p  { margin-bottom: 1rem; }

/* =============================================
   BLOG LISTING
   ============================================= */
.blog-listing { padding: 4rem 0; }
.blog-grid    {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.blog-card__img  { width: 100%; height: 200px; object-fit: cover; }
.blog-card__body { padding: 1.3rem; }
.blog-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; }
.blog-card__title a:hover { color: var(--green); }
.blog-card__body p { font-size: .88rem; color: var(--text-sm); margin-bottom: 1rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner    { gap: 1.5rem; }
}

@media (max-width: 900px) {
  .experience__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 0;
    min-height: auto;
    padding-top: 2.5rem;
  }
  .hero__photo { width: 65vw; margin: 0 auto; }
  .hero__photo img { max-height: 340px; border-radius: var(--radius); }
  .hero__left  { padding-bottom: 0; }
  .hero__stats { flex-direction: row; justify-content: center; padding-bottom: 2rem; text-align: center; }
  .hero__deco  { margin-inline: auto; }
  .hero__cta   { align-items: center; max-width: none; flex-direction: row; justify-content: center; }

  .site-nav    { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid  { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide { grid-column: span 2; }
  .exp-entry      { grid-template-columns: 80px 1fr; }
  .top-bar__inner { justify-content: center; gap: 1rem; flex-wrap: wrap; }
  .site-footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .exp-entry { grid-template-columns: 1fr; }
  .exp-entry__period { padding-top: 0; }
}
