:root {
  --bg-deep: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-elevated: #FFFFFF;
  --text: #1F2937;
  --text-muted: rgba(31, 41, 55, 0.78);
  --accent: #DE1C37;
  --accent-hover: #DE1C37;
  --accent-soft: rgba(222, 28, 55, 0.12);
  --border: rgba(76, 160, 217, 0.35);
  --max-w: 1440px;
  --radius: 12px;
  --radius-lg: 20px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Header — relative by default (inner pages); absolute on landing pages that have .hero */
.site-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: #4CA0D9;
  color: #FFFFFF;
  border-bottom: 1px solid #4CA0D9;
  padding: 0.75rem 0;
}

body:has(.hero) .site-header {
  position: absolute;
  height: 100px;
}

.site-header .inner,
.site-footer .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.site-header .inner {
  row-gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand:hover .brand-text strong {
  color: var(--accent-hover);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(222, 28, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

/* Logo height: 45px default (inner pages), 80px on landing pages */
.brand-logo {
  height: 45px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

body:has(.hero) .brand-logo {
  height: 80px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.brand-text .tagline {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.header-contact {
  display: none;
  align-items: center;
  gap: 1.25rem 1.75rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .header-contact {
    display: flex;
  }
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link svg {
  flex-shrink: 0;
  color: #DE1C37;
  transition: color 0.2s, transform 0.2s;
}

.contact-link:hover {
  color: #FFFFFF;
}

.contact-link:hover svg {
  color: var(--accent-hover);
  transform: scale(1.05);
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 0.95rem;
  margin-left: auto;
  margin-right: 0.5rem;
}

.nav-link {
  color: #DE1C37;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.3rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-nav {
    display: inline-flex;
  }

  .header-cta {
    display: inline-flex;
  }
}

.site-footer {
  background: #4CA0D9;
  color: #FFFFFF;
  border-top: 1px solid #4CA0D9;
  padding: 1.5rem 0;
}

.site-footer .inner {
  align-items: flex-start;
}

@media (min-width: 768px) {
  .site-footer .inner {
    align-items: center;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-contact {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
    width: auto;
    flex: 1;
    justify-content: center;
  }
}

.footer-copy {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  width: 100%;
  text-align: center;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .footer-copy {
    width: auto;
    text-align: right;
    padding-top: 0;
    border-top: none;
    margin-left: auto;
    max-width: 280px;
  }

  .site-footer .inner {
    flex-wrap: nowrap;
  }
}

/* ========== Landing page — hero section ========== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 8.25rem 0 4rem;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.82) 45%, rgba(76, 160, 217, 0.26) 100%),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=2000&q=80") center / cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
}

.badge-48 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-soft);
  border: 1px solid rgba(222, 28, 55, 0.35);
  color: #DE1C37;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.badge-48 svg {
  flex-shrink: 0;
  opacity: 0.95;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero .lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 34em;
  margin-bottom: 0.75rem;
}

.hero .value-prop {
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: var(--accent);
  color: #FFFFFF;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(76, 160, 217, 0.1);
  border-color: rgba(76, 160, 217, 0.7);
}

.hero-note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

section {
  padding: 4.5rem 0;
}

section.alt {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head h2 {
  color: #4CA0D9;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.about-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  max-width: 900px;
}

.about-block p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.55;
  color: #1F2937;
  text-align: center;
}

.atouts-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.atout-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}

.atout-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.atout-item p {
  font-size: 1rem;
  font-weight: 500;
  padding-top: 0.35rem;
}

.steps-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  flex: 1;
  min-width: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  border-color: rgba(222, 28, 55, 0.22);
  box-shadow: 0 20px 40px -28px rgba(0, 0, 0, 0.45);
}

.step-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(222, 28, 55, 0.35);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.step-card-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.25;
}

.step-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-join {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.55;
  padding: 0.35rem 0;
}

.step-join svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 900px) {
  .steps-row {
    flex-direction: row;
    align-items: stretch;
  }

  .step-join {
    width: 2.5rem;
    padding: 0 0.25rem;
    opacity: 0.65;
  }

  .step-join svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 899px) {
  .step-join svg {
    transform: rotate(90deg);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: rgba(222, 28, 55, 0.25);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.5);
}

.service-num {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  flex: 1;
}

.service-card .link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card .link:hover {
  text-decoration: underline;
}

.regions-map-wrap {
  max-width: 440px;
  margin: 0 auto 2rem;
}

.regions-map {
  width: 100%;
  height: auto;
  display: block;
  color: rgba(31, 41, 55, 0.65);
}

.regions-map .regions-land {
  fill: rgba(76, 160, 217, 0.18);
  stroke: rgba(76, 160, 217, 0.7);
  stroke-width: 0.65;
  vector-effect: non-scaling-stroke;
}

.regions-map .regions-pin {
  fill: var(--accent);
  stroke: var(--bg-deep);
  stroke-width: 1.25;
}

.regions-map .regions-pin-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 0.9;
  opacity: 0.35;
  vector-effect: non-scaling-stroke;
}

.regions-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
  max-width: 900px;
  margin: 0 auto 1.75rem;
}

.region-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.region-chip .region-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.region-chip .region-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #DE1C37;
  background: var(--accent-soft);
  border: 1px solid rgba(222, 28, 55, 0.3);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  margin-left: 0.15rem;
}

.regions-closing {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  border-color: rgba(222, 28, 55, 0.25);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.5);
}

.testimonial-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-meta {
  min-width: 0;
}

.testimonial-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.testimonial-company {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

.testimonial-body {
  position: relative;
  margin: 0 0 1.25rem;
  padding: 0 0 0 0.15rem;
  border: none;
}

.testimonial-body::before {
  content: "\201C";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.35rem;
}

.testimonial-body p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.testimonial-body p::after {
  content: "\201D";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 0;
  color: var(--accent);
  opacity: 0.5;
  margin-left: 0.08em;
  vertical-align: -0.15em;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-form-section .contact-form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
}

.luxcrew-form .form-field {
  margin-bottom: 1.25rem;
}

.luxcrew-form .form-field:last-of-type {
  margin-bottom: 1rem;
}

.luxcrew-form input,
.luxcrew-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.luxcrew-form input::placeholder,
.luxcrew-form textarea::placeholder {
  color: rgba(31, 41, 55, 0.65);
}

.luxcrew-form input:hover,
.luxcrew-form textarea:hover {
  border-color: rgba(76, 160, 217, 0.7);
}

.luxcrew-form input:focus,
.luxcrew-form textarea:focus {
  outline: none;
  border-color: rgba(222, 28, 55, 0.55);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.luxcrew-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.55;
}

.luxcrew-form .form-redirect-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.luxcrew-form .btn-submit {
  width: 100%;
  justify-content: center;
}

.cta-bar {
  padding: 3rem 0 4rem;
  text-align: center;
}

.cta-bar .container {
  max-width: var(--max-w);
}

.cta-bar-inner {
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.cta-bar h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.cta-bar-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* ========== Inner pages — shared page title ========== */

.page-title {
  background: linear-gradient(135deg, #F8FAFE 0%, #F0F4FA 100%);
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.page-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4CA0D9;
  margin-bottom: 0.5rem;
}

.page-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
}

@media (max-width: 768px) {
  .page-title h1 {
    font-size: 1.8rem;
  }
}

/* ========== About page ========== */

.about-section {
  padding: 3rem 0;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s;
}

.about-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4CA0D9;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-card h2 .icon {
  font-size: 1.8rem;
}

.about-card p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.values-list {
  list-style: none;
  margin-top: 1rem;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.values-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .about-card {
    padding: 1.5rem;
  }
}

/* ========== Services page ========== */

.services-page-section {
  padding: 3rem 0;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .services-page-grid {
    grid-template-columns: 1fr;
  }
}

.service-page-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-page-card:hover {
  border-color: rgba(222, 28, 55, 0.25);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.5);
}

.service-icon {
  font-size: 2.5rem;
}

.service-page-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4CA0D9;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.service-page-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  flex: 1;
}

.service-features {
  list-style: none;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  color: var(--text);
}

.service-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
}

.service-page-card .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
  width: fit-content;
}

.service-page-card .btn-link:hover {
  background: var(--accent-hover);
}

@media (max-width: 768px) {
  .service-page-card {
    padding: 1.5rem;
  }
}

/* ========== Contacts page ========== */

.contacts-section {
  padding: 3rem 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-info-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4CA0D9;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  color: var(--accent);
}

.contact-detail-text {
  flex: 1;
}

.contact-detail-text .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}

.contact-detail-text .value {
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
}

.contact-detail-text a.value {
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-text a.value:hover {
  color: var(--accent);
}

.work-hours {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.work-hours p {
  margin-bottom: 0.25rem;
}

.response-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-top: 0.75rem;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-form-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4CA0D9;
  margin-bottom: 1.5rem;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-card button {
  width: 100%;
  justify-content: center;
}

.form-redirect-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }
}
