/*
  LAXO Coming Soon - Pure HTML5/CSS3
  Brand colors:
    - Primary: #D72638
    - Shadow/hover: #9F1E2E
    - Text: #4A4A4A
    - Card bg: #E5E5E5
    - Light ember highlight: #FFE4E1
    - Background: #FFFFFF
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --primary: #D72638;
  --primary-shadow: #9F1E2E;
  --text: #4A4A4A;
  --card-bg: #E5E5E5;
  --ember: #FFE4E1;
}

html,
body {
  height: 100%;
}

body {
  margin: 10;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Main page layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.header {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.logo {
  max-width: 180px;
  width: 100%;
  height: auto;
}

.hero {
  text-align: center;
  max-width: 920px;
}

.title {
  margin: 10px 0 14px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.15;
  color: var(--primary);
}

.subtitle {
  margin: 0 auto;
  font-size: clamp(1rem, 2.3vw, 1.1rem);
  line-height: 1.7;
  font-weight: 400;
  max-width: 760px;
}

/* Services grid */
.services {
  width: 100%;
  margin-top: 26px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(159, 30, 46, 0.18);
  background-color: var(--ember);
}

.card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__icon img {
  width: 750px;
  height: 750px;
  object-fit: contain;
}

.card__desc {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.65;
  font-weight: 400;
}

/* Social links */
.social {
  width: 100%;
  margin-top: 50px;
}

.social__row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(215, 38, 56, 0.28);
  background: rgba(215, 38, 56, 0.06);
  transition: background-color 160ms ease, transform 120ms ease, box-shadow 160ms ease;
}

.social__link:hover {
  background: rgba(255, 228, 225, 0.95);
  box-shadow: 0 10px 22px rgba(159, 30, 46, 0.14);
  transform: translateY(-1px);
}

/* Footer */
.footer {
  width: 100%;
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.footer__text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(74, 74, 74, 0.85);
  font-weight: 300;
}

/* Responsive rules */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
  }

  .capture__row {
    flex-direction: column;
  }

  .capture__btn {
    width: 100%;
  }
}

