:root {
  --bg-main: #0f172a;
  --bg-card: #111827;
  --blue-main: #3b82f6;
  --blue-soft: #60a5fa;
  --text-main: #e5e7eb;
  --text-soft: #9ca3af;
  --border-soft: #1f2933;
}

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

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: linear-gradient(180deg, #020617, var(--bg-main));
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--blue-soft);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 1rem;
}

.site-title {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.site-title img {
  width: clamp(52px, 7vw, 70px);
  height: auto;
}

header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 1rem 0.9rem;
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(31, 41, 51, 0.6);
  }

  header h1 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    margin-bottom: 0.5rem;
  }

  header p {
    display: none;
  }

  header .phone-cta {
    margin-top: 0.25rem;
  }

  .contact-header .phone-cta {
    display: none;
  }
}

.phone-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.35);
  text-decoration: none;
}

.phone-cta--inline {
  margin-top: 0.75rem;
}

.phone-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.phone-link {
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
}

.phone-cta:hover {
  text-decoration: none;
}

.phone-cta:hover .phone-link {
  color: var(--blue-soft);
}

.phone-cta:focus-visible {
  outline: 2px solid var(--blue-soft);
  outline-offset: 2px;
}

section {
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-header h2 {
  margin-bottom: 0;
}

.contact-header .phone-cta {
  margin-top: 0;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.presentation-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title photo"
    "text photo";
  column-gap: 1.5rem;
  row-gap: 0.75rem;
  align-items: start;
}

.presentation-intro h2 {
  grid-area: title;
  margin-bottom: 0;
}

.presentation-intro p {
  grid-area: text;
}

.profile-photo {
  grid-area: photo;
  width: clamp(95px, 15vw, 135px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid rgba(96, 165, 250, 0.35);
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.35);
  margin-top: -15px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service h3 {
  margin-bottom: 0.5rem;
  color: var(--blue-soft);
  font-size: 1.1rem;
}

.service p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.zones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.zone {
  background-color: #020617;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

form {
  display: grid;
  gap: 1rem;
  width: 100%;
}

form > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 1rem;
}

label {
  font-size: 0.9rem;
  color: var(--text-soft);
}

input,
textarea {
  background-color: #020617;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 0.7rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue-main);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

textarea,
input {
  width: 100%;
}

form > div:has(textarea) {
  align-items: start;
}

@media (max-width: 640px) {
  .presentation-intro {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title photo"
      "text text";
    column-gap: 1rem;
  }

  .profile-photo {
    margin-top: -18px;
  }

  form > div {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

button {
  background-color: var(--blue-main);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
}

button:hover {
  background-color: #2563eb;
}

footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--text-soft);
  font-size: 0.85rem;
  border-top: 1px solid var(--border-soft);
  background-color: #020617;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  border-radius: 12px;
  overflow: hidden;
  background-color: #0b1220;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.35);
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(31, 41, 51, 0.6);
}

.pricing-table thead th {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: rgba(2, 6, 23, 0.65);
}

.pricing-table tbody tr {
  transition: background-color 180ms ease;
}

.pricing-table tbody tr:nth-child(even) {
  background-color: rgba(2, 6, 23, 0.35);
}

.pricing-table tbody tr:hover {
  background-color: rgba(59, 130, 246, 0.12);
}

.pricing-table td:last-child,
.pricing-table th:last-child {
  text-align: right;
  white-space: nowrap;
}

/* Checklist services */
.checklist {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-soft);
  font-weight: 600;
  opacity: 0.85;
}
