/* ===== Theme ===== */
:root{
  --teal:#099488;        /* brand teal */
  --teal-700:#07756C;    /* darker teal */
  --text:#0f172a;
  --muted:#475569;
  --white:#ffffff;

  /* soft tints */
  --teal-soft: #eafaf8;
  --shadow: 0 10px 28px rgba(2,6,23,.10);
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:#fff;
}

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

/* ===== HERO ===== */
.services-hero{
  color:var(--white);
  background:var(--teal);

  text-align:center;
  padding: 72px 20px;
}

.services-hero h1{
  margin:0 0 10px;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  letter-spacing:.2px;
}
.services-hero p{
  margin:0;
  font-size: clamp(16px, 2.4vw, 22px);
  opacity:.95;
}

/* ===== INTRO ===== */
.intro{
  text-align:center;
  padding: 56px 0 28px;
}
.intro h2{
  margin:0 0 10px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
}
.intro p{
  margin:0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
}

/* ===== ALT ROWS ===== */
.service-row{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding: 34px 0;
}
.service-row.reverse{ grid-template-columns: .9fr 1.1fr; }
.service-row.reverse .service-text{ order:2; }
.service-row.reverse .service-visual{ order:1; }

.service-text h3{
  margin: 10px 0 12px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
}
.service-text p{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

/* icon bubble at the heading */
.icon-bubble{
  width: 72px; height: 72px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: var(--teal-soft);
  color: var(--teal-700);
  box-shadow: 0 6px 16px rgba(2,6,23,.06);
}
.icon-bubble svg{
  width: 30px; height: 30px; fill: currentColor;
}

/* check list */
.check{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.check li{
  display: grid; grid-template-columns: 22px 1fr; align-items: start;
  font-size: 16px; color: var(--text);
}
.check li::before{
  content: "✔";
  color: var(--teal);
  font-weight: 900;
  line-height: 1;
}

/* right/left image card */
.service-visual{
  margin: 0;
  background:#fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.service-visual img{
  display:block;
  width:100%;
  height: 360px;
  object-fit: cover;
}

/* ===== SUPPORT GRID ===== */
.support{ padding: 56px 0; }
.support h2{
  text-align:center; margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
}
.support-sub{
  text-align:center; margin: 0 auto 28px;
  color: var(--muted);
  font-size: 16px;
  max-width: 900px;
}
.support-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.support-card{
  background:#fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(2,6,23,.06);
  border: 1px solid #e9eef4;
}
.support-card .icon-bubble{
  width: 64px; height: 64px; margin-bottom: 10px;
}
.support-card h4{
  margin: 0 0 8px; font-size: 18px; font-weight: 800;
}
.support-card p{
  margin: 0; color: var(--muted); line-height: 1.6; font-size: 15px;
}

/* ===== ATTENTION ===== */
.attention{
  background: var(--teal-soft);
  padding: 56px 0 72px;
}
.attention-grid{
  display:grid; gap: 32px;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
}
.attention-text h2{
  margin: 0 0 12px; font-size: clamp(26px, 4vw, 40px); font-weight: 900;
}
.attention-text p{
  margin: 0 0 16px; color: var(--muted); line-height: 1.7;
}
.feature-list{
  list-style: none; padding: 0; margin: 0; display: grid; gap: 14px;
}
.feature-list li{ display: grid; grid-template-columns: 28px 1fr; gap: 10px; }
.feature-icon{ font-size: 20px; line-height: 28px; }

.attention-visual{
  margin: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
}
.attention-visual img{
  display:block; width:100%; height: 360px; object-fit: cover;
}

/* ===== CTA BAR ===== */
.services-cta{
  background:var(--soft);
  color: #fff;
  text-align:center;
  padding: 64px 16px 80px;
}
.services-cta h2{
  margin: 0 0 12px; font-size: clamp(26px, 4.6vw, 44px); font-weight: 900;
}
.services-cta p{
  margin: 0 auto 22px; max-width: 900px; font-size: 18px; line-height: 1.6;
}
/* Default: desktop/tablet */
.cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-row a {
  flex: 1 1 auto;
  text-align: center;
  min-width: 200px;
  max-width: 260px;
}

/* Mobile: force vertical stacking */
@media screen and (max-width: 768px) {
  .cta-row {
    flex-direction: column !important;  /* force stack */
    align-items: center;                /* center them */
  }

  .cta-row a {
    width: 90% !important;              /* stretch nicely */
    max-width: 320px !important;
  }
}

/* buttons: white + outline (to match screenshot) */
.btn-white{
  background:#fff; color: var(--teal); text-decoration:none;
  padding: 12px 20px; border-radius: 14px; font-weight: 800;
  border: 2px solid #fff; box-shadow: 0 2px 10px rgba(0,0,0,.08);
  transition: transform .04s ease, background .2s ease, color .2s ease;
}
.btn-white:hover{ transform: translateY(-1px); color: var(--teal-700); }

.btn-ghost{
  background: transparent; color:#fff; text-decoration:none;
  padding: 12px 20px; border-radius: 14px; font-weight: 800;
  border: 2px solid #fff;
  transition: transform .04s ease, background .2s ease, color .2s ease;
}
.btn-ghost:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); }

.cta-link{
  color:#fff; text-underline-offset: 3px; text-decoration-thickness: 2px;
}
.cta-link:hover{ opacity:.9; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px){
  .service-row,
  .attention-grid{ grid-template-columns: 1fr; }
  .service-row.reverse .service-text,
  .service-row.reverse .service-visual{ order: initial; }
  .service-visual img,
  .attention-visual img{ height: 320px; }
  .support-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .services-hero{ padding: 72px 16px; }
  .service-visual img,
  .attention-visual img{ height: 240px; }
  .support-grid{ grid-template-columns: 1fr; }
}
