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

:root {
  --primary:   #009490;
  --primary-lt:#40AF9C;
  --primary-bg:#E4F3F0;
  --dark:      #1A251F;
  --blue:      #253C57;
  --grey:      #8F8F8F;
  --light:     #F8FAFC;
  --border:    #E2E2E2;
  --white:     #fff;
  --font: 'Helvetica Neue', Arial, sans-serif;
}

body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.6; }

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

img { display: block; max-width: 100%; height: auto; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}
header .logo img { height: 48px; width: auto; }
nav ul { list-style: none; display: flex; gap: 1.5rem; flex-wrap: wrap; }
nav a { font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--dark); transition: color .2s; }
nav a:hover { color: var(--primary); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: .75rem 1.75rem;
  background: var(--primary); color: var(--white);
  font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 2px; transition: background .2s;
}
.btn:hover { background: var(--primary-lt); }
.btn-outline {
  background: transparent; border: 2px solid var(--white); color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 520px;
  display: flex; align-items: center;
  background: var(--dark) center/cover no-repeat;
  color: var(--white); padding: 4rem 2rem;
}
.hero::after { content:''; position:absolute; inset:0; background:rgba(26,37,31,.5); }
.hero-inner { position: relative; z-index: 1; max-width: 680px; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.hero p  { font-size: 1.05rem; margin-bottom: 1.5rem; opacity: .92; }
.hero .sub { font-size: .95rem; margin-bottom: 2rem; opacity: .8; }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: clamp(1.4rem,3vw,2rem); font-weight: 800; color: var(--dark); }
.section-title p  { color: var(--grey); margin-top: .5rem; font-size: 1rem; }

/* ── SERVICE CARDS ── */
.services { background: var(--light); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white); border-radius: 6px;
  overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.07);
  display: flex; flex-direction: column;
}
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; color: var(--dark); }
.card-body p  { font-size: .9rem; color: var(--grey); flex: 1; }
.card-body a  { margin-top: 1rem; font-size: .85rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .04em; }
.card-body a:hover { color: var(--primary-lt); }

/* ── AUDIENCE ── */
.audience { background: var(--white); }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 2rem; }
.audience-item { display: flex; gap: 1rem; align-items: flex-start; }
.audience-item img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.audience-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.audience-item p  { font-size: .9rem; color: var(--grey); }
.audience .cta { text-align: center; margin-top: 3rem; }

/* ── HOW WE WORK ── */
.how { background: var(--primary-bg); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 2rem; counter-reset: step; }
.step { position: relative; padding: 1.5rem; background: var(--white); border-radius: 6px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: block; width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  font-weight: 800; font-size: .95rem; line-height: 36px; text-align: center;
  margin-bottom: .75rem;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.step p  { font-size: .9rem; color: var(--grey); }

/* ── GUARANTEES ── */
.guarantees { background: var(--white); }
.guarantee-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 2rem; }
.guarantee-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem; background: var(--light); border-radius: 6px; }
.guarantee-item img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.guarantee-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.guarantee-item p  { font-size: .9rem; color: var(--grey); }
.guarantees .cta { text-align: center; margin-top: 3rem; }

/* ── CTA BAND ── */
.cta-band { background: var(--primary); color: var(--white); text-align: center; padding: 4rem 2rem; }
.cta-band h2 { font-size: clamp(1.3rem,3vw,1.9rem); font-weight: 800; margin-bottom: .75rem; }
.cta-band p  { opacity: .9; margin-bottom: 2rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: var(--white);
  padding: 3rem 2rem 1.5rem;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 2.5rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.12);
}
footer .logo img { height: 44px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-col h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; color: var(--primary-lt); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .9rem; opacity: .8; transition: opacity .2s; }
.footer-col a:hover { opacity: 1; }
.footer-col p { font-size: .9rem; opacity: .8; line-height: 1.8; }
.footer-bottom {
  max-width: 1100px; margin: 1.2rem auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
  font-size: .8rem; opacity: .55;
}
.footer-bottom a { opacity: 1; }
.footer-bottom a:hover { text-decoration: underline; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--primary-bg) center/cover no-repeat;
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 800; color: var(--dark); }
.page-hero p  { color: var(--grey); margin-top: .5rem; font-size: 1.05rem; }

/* ── CONTENT BLOCK ── */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block img { width: 100%; border-radius: 6px; object-fit: cover; max-height: 420px; }
.content-block .text h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; }
.content-block .text p  { color: var(--grey); margin-bottom: .75rem; line-height: 1.7; }
.content-block .text ul { padding-left: 1.25rem; color: var(--grey); }
.content-block .text li { margin-bottom: .4rem; }
@media (max-width: 768px) {
  .content-block { grid-template-columns: 1fr; }
  .content-block.reverse { direction: ltr; }
}

/* ── BULLET LIST SECTION ── */
.bullet-list { list-style: none; padding: 0; }
.bullet-list li {
  padding: .6rem 0 .6rem 1.5rem; border-bottom: 1px solid var(--border);
  position: relative; font-weight: 600;
}
.bullet-list li::before { content: '→'; position: absolute; left: 0; color: var(--primary); }

/* ── TEAM GRID ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1.5rem; }
.team-card { text-align: center; }
.team-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; }
.team-card h3 { font-size: .95rem; font-weight: 700; }
.team-card p  { font-size: .85rem; color: var(--grey); }

/* ── BLOG GRID ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; }
.blog-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.07); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-card-body h2 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.4; }
.blog-card-body p  { font-size: .875rem; color: var(--grey); margin-bottom: 1rem; }
.blog-card-body a.read-more { font-size: .85rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .04em; }

/* ── CONTACT LAYOUT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; }
.contact-info p  { color: var(--grey); margin-bottom: .5rem; line-height: 1.8; }
.contact-info a  { color: var(--primary); }

/* ── FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; color: var(--dark); }
input[type=text], input[type=email], input[type=tel], input[type=file], textarea, select {
  width: 100%; padding: .65rem .9rem;
  border: 1.5px solid var(--border); border-radius: 4px;
  font-family: var(--font); font-size: .95rem; color: var(--dark);
  background: var(--white); transition: border-color .2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--primary); }
textarea { min-height: 130px; resize: vertical; }
.form-check { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: 1.25rem; }
.form-check input { width: auto; margin-top: .2rem; flex-shrink: 0; }
.form-check label { font-size: .85rem; color: var(--grey); font-weight: 400; }
.form-check a { color: var(--primary); }
.form-note { font-size: .8rem; color: var(--grey); margin-top: .25rem; }

/* ── AREA LIST ── */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 1rem; }
.area-item { background: var(--primary); color: var(--white); border-radius: 6px; padding: 1.25rem; text-align: center; font-weight: 700; font-size: 1.05rem; }

/* ── CERT GRID ── */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1.5rem; }
.cert-item { background: var(--light); border-radius: 6px; padding: 1.5rem; text-align: center; }
.cert-item h3 { font-size: .9rem; font-weight: 700; color: var(--primary); margin-bottom: .4rem; }
.cert-item p  { font-size: .85rem; color: var(--grey); }
.cert-item a  { display: inline-block; margin-top: .75rem; font-size: .8rem; font-weight: 700; color: var(--primary); text-transform: uppercase; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav ul { gap: .75rem; }
  nav a  { font-size: .75rem; }
  header { padding: 0 1rem; }
  section { padding: 3rem 1rem; }
}
@media (max-width: 560px) {
  nav { display: none; }
}
