/* ============================================================
   INTED SERVICES — style.css  v2
   Primary: #2e8b8a  |  Fonts: Outfit + Source Sans 3
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Source+Sans+3:ital,opsz,wght@0,8..32,300;0,8..32,400;0,8..32,600;1,8..32,300&display=swap');

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

:root {
  --teal:        #2e8b8a;
  --teal-dark:   #1f6665;
  --teal-hover:  #257170;
  --teal-light:  #eef7f6;
  --teal-mid:    #c8e6e5;
  --white:       #ffffff;
  --offwhite:    #f8f9f9;
  --grey-border: #dde3e3;
  --text-dark:   #172222;
  --text-body:   #374848;
  --text-muted:  #6b8282;
  --radius:      5px;
  --shadow-sm:   0 1px 8px rgba(0,0,0,.06);
  --shadow:      0 3px 20px rgba(0,0,0,.09);
  --max:         1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--white);
}

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 5vw; }

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; color: var(--text-dark); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); font-weight: 600; }
h3 { font-size: 1.1rem; font-weight: 600; }

.label {
  display: inline-block;
  font-size: .75rem; font-weight: 600; letter-spacing: .11em;
  text-transform: uppercase; color: var(--teal); margin-bottom: .85rem;
}

.section-intro { margin-bottom: 3.5rem; }
.section-intro h2 { margin-bottom: .75rem; }
.section-intro p { color: var(--text-muted); font-size: 1.05rem; font-weight: 300; max-width: 620px; }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: .95rem;
  padding: .78rem 1.85rem; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: background .17s, color .17s, border-color .17s, transform .13s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-hover); border-color: var(--teal-hover); }
.btn-ghost { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-ghost:hover { background: var(--teal); color: var(--white); }
.btn-white { background: var(--white); color: var(--teal); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-ghost-white { background: transparent; color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.45); }
.btn-ghost-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

/* NAV */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white); border-bottom: 1px solid var(--grey-border); box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 5vw;
  height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 500;
  color: var(--text-body); transition: color .17s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-btn { font-size: .88rem !important; padding: .55rem 1.3rem !important; }

/* HERO */
.hero {
  background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal) 55%, #3fa5a4 100%);
  color: var(--white); padding: 88px 5vw 96px;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.14); color: rgba(255,255,255,.92);
  font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .32rem .9rem; border-radius: 100px; margin-bottom: 1.4rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.3rem; }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.82); font-weight: 300;
  line-height: 1.7; margin-bottom: 2.2rem; max-width: 490px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-panel {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; padding: 2.2rem; backdrop-filter: blur(4px);
}
.hero-panel-title {
  font-family: 'Outfit', sans-serif; font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .09em;
  margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 1px solid rgba(255,255,255,.18);
}
.hero-items { display: flex; flex-direction: column; gap: .9rem; }
.hero-item { display: flex; align-items: flex-start; gap: .85rem; font-size: .95rem; color: rgba(255,255,255,.88); font-weight: 300; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.55); margin-top: .6rem; flex-shrink: 0; }

/* TRUST STRIP */
.trust-strip { background: var(--offwhite); border-bottom: 1px solid var(--grey-border); padding: 1.3rem 5vw; }
.trust-strip-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 3.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: .55rem; font-size: .85rem; font-weight: 400; color: var(--text-muted); }
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* SECTIONS */
.section { padding: 88px 5vw; }
.section-alt { background: var(--offwhite); }

/* STAT PANEL */
.stat-panel { background: var(--teal-light); border: 1px solid var(--teal-mid); border-radius: 8px; padding: 2.2rem; }
.stat-row { padding: 1.4rem 0; border-bottom: 1px solid var(--teal-mid); }
.stat-row:first-child { padding-top: 0; }
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-num { font-family: 'Outfit', sans-serif; font-size: 1.85rem; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: .3rem; }
.stat-label { font-size: .85rem; color: var(--text-muted); font-weight: 300; }

/* PILLARS */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 2rem; }
.pillar { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 1.15rem 1.3rem; }
.pillar h4 { font-size: .88rem; font-weight: 600; color: var(--teal); margin-bottom: .28rem; }
.pillar p { font-size: .84rem; color: var(--text-muted); font-weight: 300; }

/* SERVICE CARDS */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.4rem; }
.service-card {
  background: var(--white); border: 1px solid var(--grey-border); border-radius: 8px; padding: 1.9rem 1.7rem;
  transition: box-shadow .2s, border-color .2s, transform .15s;
}
.service-card:hover { box-shadow: var(--shadow); border-color: var(--teal-mid); transform: translateY(-2px); }
.svc-icon { width: 40px; height: 40px; background: var(--teal-light); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--teal); margin-bottom: 1.15rem; }
.service-card h3 { margin-bottom: .65rem; }
.service-card p { font-size: .9rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }
.svc-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: 1.1rem; }
.tag { background: var(--teal-light); color: var(--teal-dark); font-size: .74rem; font-weight: 600; padding: .22rem .7rem; border-radius: 100px; }

/* IMPACT CARDS */
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.impact-card {
  background: var(--white); border: 1px solid var(--grey-border); border-radius: 8px;
  padding: 2rem 1.8rem; border-top: 3px solid var(--teal);
}
.impact-card h3 { margin-bottom: .9rem; font-size: 1.05rem; }
.impact-card p { font-size: .9rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }
.impact-stat { margin-top: 1.3rem; padding-top: 1.3rem; border-top: 1px solid var(--grey-border); }
.impact-num { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: .25rem; }
.impact-lbl { font-size: .8rem; color: var(--text-muted); font-weight: 300; }

/* HOW IT WORKS */
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.how-grid::before { content: ''; position: absolute; top: 25px; left: calc(12.5% + 12px); right: calc(12.5% + 12px); height: 1px; background: var(--teal-mid); z-index: 0; }
.how-step { position: relative; z-index: 1; }
.how-num { width: 50px; height: 50px; background: var(--teal); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 1.4rem; }
.how-step h3 { margin-bottom: .55rem; font-size: 1rem; }
.how-step p { font-size: .88rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; }

/* LOCATION GRID */
.location-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2.5rem; }
.loc-card { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 1.3rem 1rem; text-align: center; }
.loc-flag { font-size: 1.8rem; margin-bottom: .5rem; }
.loc-name { font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 600; color: var(--text-dark); }
.loc-role { font-size: .8rem; color: var(--text-muted); font-weight: 300; margin-top: .2rem; }

/* PRICING */
.pricing-intro { background: var(--teal-light); border: 1px solid var(--teal-mid); border-radius: 8px; padding: 1.8rem 2.2rem; margin-bottom: 2.2rem; }
.pricing-intro p { color: var(--text-body); font-weight: 300; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-bottom: 2rem; }
.price-card { background: var(--white); border: 1px solid var(--grey-border); border-radius: 8px; padding: 1.8rem 1.6rem; position: relative; }
.price-card.featured { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal); }
.price-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--white); font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .25rem .85rem; border-radius: 100px; white-space: nowrap; }
.price-type { font-family: 'Outfit', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .6rem; }
.price-name { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: .5rem; }
.price-desc { font-size: .88rem; color: var(--text-muted); font-weight: 300; margin-bottom: 1.3rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--grey-border); line-height: 1.55; }
.price-features { display: flex; flex-direction: column; gap: .65rem; }
.price-feat { display: flex; align-items: flex-start; gap: .65rem; font-size: .88rem; color: var(--text-body); font-weight: 300; }
.pcheck { color: var(--teal); flex-shrink: 0; margin-top: .1rem; }
.pricing-currency { background: var(--white); border: 1px solid var(--grey-border); border-radius: 8px; padding: 1.8rem 2.2rem; }
.currency-items { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
.c-pill { background: var(--teal-light); color: var(--teal-dark); font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .9rem; padding: .45rem 1.2rem; border-radius: 100px; }

/* CTA BAND */
.cta-band { background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal) 100%); color: var(--white); padding: 78px 5vw; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: .85rem; }
.cta-band p { color: rgba(255,255,255,.8); font-weight: 300; font-size: 1.05rem; max-width: 550px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-detail { display: flex; gap: .85rem; align-items: flex-start; margin-bottom: 1.35rem; }
.contact-icon { width: 36px; height: 36px; background: var(--teal-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
.contact-detail strong { display: block; font-size: .83rem; font-weight: 600; color: var(--text-dark); margin-bottom: .12rem; font-family: 'Outfit', sans-serif; }
.contact-detail span { font-size: .9rem; color: var(--text-muted); font-weight: 300; line-height: 1.5; }

/* FORM */
.form { display: flex; flex-direction: column; gap: .95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .95rem; }
.form-group { display: flex; flex-direction: column; gap: .32rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text-dark); font-family: 'Outfit', sans-serif; letter-spacing: .02em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius);
  padding: .68rem 1rem; font-family: 'Source Sans 3', sans-serif; font-size: .95rem;
  color: var(--text-dark); outline: none; transition: border-color .18s, box-shadow .18s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(46,139,138,.11); }
.form-group textarea { resize: vertical; min-height: 115px; }

/* FOOTER */
.site-footer { background: #172222; color: rgba(255,255,255,.65); padding: 52px 5vw 28px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.09); margin-bottom: 2rem; }
.footer-brand img { height: 33px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .8; }
.footer-brand p { font-size: .88rem; font-weight: 300; line-height: 1.65; max-width: 290px; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.88); letter-spacing: .07em; text-transform: uppercase; margin-bottom: 1.15rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .88rem; font-weight: 300; color: rgba(255,255,255,.5); transition: color .17s; }
.footer-col a:hover { color: rgba(255,255,255,.88); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }

/* PAGE HEADER */
.page-header { background: var(--teal-light); border-bottom: 1px solid var(--teal-mid); padding: 58px 5vw; }
.page-header-inner { max-width: var(--max); margin: 0 auto; }
.page-header h1 { margin-bottom: .65rem; }
.page-header p { color: var(--text-muted); font-weight: 300; font-size: 1.05rem; max-width: 570px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--text-muted); margin-bottom: .9rem; }
.breadcrumb a { color: var(--teal); }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-grid::before { display: none; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .how-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
}
