/* ── Reset & Base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f7f7f7;
  color: #252323;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ─────────────────────────────────────────── */
.header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #93c01c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
}

.brand-sub {
  font-size: 13px;
  color: #9f978e;
  line-height: 1.2;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  gap: 4px;
  background: #f5f5f5;
  padding: 4px;
  border-radius: 999px;
}

.lang-switch a {
  display: block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  transition: all .2s;
}

.lang-switch a:hover { color: #252323; }

.lang-switch a.active {
  background: #93c01c;
  color: #fff;
}

/* ── Buttons ────────────────────────────────────────── */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.btn-primary {
  background: #93c01c;
  color: #fff;
}
.btn-primary:hover { background: #7ea818; }

.btn-outline {
  background: #fff;
  color: #252323;
  border: 1.5px solid #ddd;
}
.btn-outline:hover { border-color: #0080c8; color: #0080c8; }

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  padding: 64px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(147, 192, 28, .12);
  color: #6d9000;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #1a1e25;
}

h1 .green { color: #0080c8; }

.lead {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.65;
  color: #666;
  max-width: 520px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pills span {
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.info-box {
  margin-top: 28px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  line-height: 1.7;
}

.info-box strong { font-size: 14px; color: #252323; }

.mail {
  color: #0080c8;
  font-weight: 700;
  text-decoration: none;
}
.mail:hover { color: #024271; }

.muted { color: #9f978e; font-size: 14px; }

/* ── Profile card ───────────────────────────────────── */
.profile-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.profile-text {
  padding: 16px 20px;
  text-align: center;
  font-size: 15px;
  color: #666;
}

.profile-text strong {
  color: #252323;
  font-size: 17px;
}

/* ── Section headings ───────────────────────────────── */
h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  color: #1a1e25;
}

h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #0080c8;
  border-radius: 2px;
  margin-top: 10px;
}

/* ── Services ───────────────────────────────────────── */
.section-light {
  background: #fff;
  padding: 64px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.card {
  background: #f7f7f7;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  transition: box-shadow .2s;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0080c8;
}

.card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card li {
  font-size: 15px;
  color: #666;
  padding-left: 18px;
  position: relative;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #93c01c;
}

.easy-life-box {
  margin-top: 36px;
  background: rgba(147, 192, 28, .08);
  padding: 18px 24px;
  border-radius: 12px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.easy-life-box a {
  font-weight: 700;
  color: #0080c8;
  text-decoration: none;
}
.easy-life-box a:hover { color: #024271; text-decoration: underline; }

/* ── Contact section ────────────────────────────────── */
.section {
  padding: 64px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-block {}

.contact-heading {
  font-size: 18px;
  font-weight: 700;
  color: #1a1e25;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eaeaea;
}

/* ── Easy Life card ─────────────────────────────────── */
.easylife-card {
  background: #f7f7f7;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 28px 24px;
}

.easylife-card-logo {
  display: inline-block;
  background: #93c01c;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-transform: lowercase;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  letter-spacing: .02em;
}

.easylife-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── Contact form ──────────────────────────────────── */
.form {
  margin-top: 0;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #e0e0e0;
  margin-bottom: 14px;
  font-size: 15px;
  font-family: inherit;
  color: #252323;
  background: #fff;
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: #0080c8;
  box-shadow: 0 0 0 3px rgba(0, 128, 200, .12);
}

.form input::placeholder,
.form textarea::placeholder {
  color: #bbb3ac;
}

.form select { color: #bbb3ac; }
.form select:valid { color: #252323; }

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.full { width: 100%; }

/* ── Footer ─────────────────────────────────────────── */
footer {
  background: #1a1e25;
  color: #9f978e;
  padding: 28px 0;
  text-align: center;
  font-size: 14px;
}

/* ── Mobile: tablet ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 40px 0 36px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .profile-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ── Mobile: phone ──────────────────────────────────── */
@media (max-width: 600px) {
  .header-inner {
    height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  .hero { padding: 32px 0 28px; }

  h1 { font-size: 26px; }

  .lead { font-size: 15px; }

  .actions { flex-direction: column; }

  .actions .btn-primary,
  .actions .btn-outline {
    width: 100%;
    text-align: center;
  }

  .pills { gap: 6px; }
  .pills span { font-size: 12px; padding: 5px 10px; }

  .profile-card { max-width: 100%; }
  .profile-card img { aspect-ratio: 3/4; }

  .section-light { padding: 40px 0; }
  .section { padding: 40px 0; }

  .grid-2 { grid-template-columns: 1fr; gap: 0; }

  .easy-life-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 18px;
  }

  .form { margin-top: 24px; }

  footer { padding: 20px 0; font-size: 13px; }
}
