/* GrooMe landing page — palette and components mirror the GrooMe app brand */

.gmp {
  --gmp-teal: #116468;
  --gmp-teal-dark: #0d5457;
  --gmp-teal-deep: #0a3f42;
  --gmp-teal-tint: #e9f2f2;
  --gmp-coral: #db7a5f;
  --gmp-coral-tint: #fbeee9;
  --gmp-cream: #f7f4ef;
  --gmp-surface: #ffffff;
  --gmp-ink: #221e19;
  --gmp-gray: #6e655a;
  --gmp-border: #e8e2d8;
  --gmp-amber-tint: #faf3df;
  font-size: 16px;
  color: var(--gmp-ink);
  background: var(--gmp-cream);
  line-height: 1.6;
  overflow-x: hidden;
}
@supports (color: oklch(0.45 0.09 195)) {
  .gmp {
    --gmp-teal: oklch(0.45 0.09 195);
    --gmp-teal-dark: oklch(0.4 0.09 195);
    --gmp-teal-deep: oklch(0.34 0.07 195);
    --gmp-teal-tint: oklch(0.96 0.02 195);
    --gmp-coral: oklch(0.68 0.13 40);
    --gmp-coral-tint: oklch(0.95 0.03 40);
  }
}

.gmp * { box-sizing: border-box; }
.gmp img { max-width: 100%; }

.gmp-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
}

.gmp h1, .gmp h2, .gmp h3 { margin: 0; color: inherit; }

/* ---------- paw logo (pure CSS, same mark as the app) ---------- */
.gmp-paw {
  position: relative;
  display: inline-block;
  width: 54px; height: 54px;
  background: var(--gmp-coral);
  border-radius: 16px;
  flex: none;
}
.gmp-paw i {
  position: absolute;
  background: #221e19;
  border-radius: 50%;
}
.gmp-paw i:nth-child(1) { left: 11px; top: 10px; width: 8px; height: 8px; }
.gmp-paw i:nth-child(2) { left: 24px; top: 7px;  width: 8px; height: 8px; }
.gmp-paw i:nth-child(3) { left: 37px; top: 10px; width: 8px; height: 8px; }
.gmp-paw i:nth-child(4) { left: 17px; top: 23px; width: 21px; height: 18px; border-radius: 50% 50% 46% 46%; }

/* ---------- hero ---------- */
.gmp-hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(219, 122, 95, 0.22), transparent 60%),
    radial-gradient(800px 420px at -10% 110%, rgba(255, 255, 255, 0.08), transparent 60%),
    var(--gmp-teal-deep);
  color: #f5f1e9;
  padding: 84px 0 0;
  position: relative;
}
.gmp-hero-grid {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.gmp-hero-copy { flex: 1 1 440px; padding-bottom: 84px; }
.gmp-hero-visual {
  flex: 1 1 380px;
  align-self: flex-end;
  display: flex;
  justify-content: center;
  padding-top: 12px;
}
.gmp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9fc4c4;
  margin-bottom: 22px;
}
.gmp-eyebrow .gmp-paw { width: 34px; height: 34px; border-radius: 10px; }
.gmp-eyebrow .gmp-paw i:nth-child(1) { left: 7px; top: 6px; width: 5px; height: 5px; }
.gmp-eyebrow .gmp-paw i:nth-child(2) { left: 15px; top: 4px; width: 5px; height: 5px; }
.gmp-eyebrow .gmp-paw i:nth-child(3) { left: 23px; top: 6px; width: 5px; height: 5px; }
.gmp-eyebrow .gmp-paw i:nth-child(4) { left: 10px; top: 14px; width: 14px; height: 12px; }
.gmp-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fdfcf9;
  margin: 0 0 20px;
}
.gmp-hero h1 em { font-style: normal; color: var(--gmp-coral); }
.gmp-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: #cddddd;
  max-width: 540px;
  margin: 0 0 32px;
}
.gmp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.gmp-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}
.gmp-btn:hover { transform: translateY(-2px); }
.gmp-btn-coral {
  background: var(--gmp-coral);
  color: #221e19 !important;
  box-shadow: 0 8px 24px rgba(219, 122, 95, 0.35);
}
.gmp-btn-coral:hover { background: #e58a6f; box-shadow: 0 12px 28px rgba(219, 122, 95, 0.45); }
.gmp-btn-ghost {
  color: #f5f1e9 !important;
  border-color: rgba(245, 241, 233, 0.4);
}
.gmp-btn-ghost:hover { border-color: #f5f1e9; background: rgba(245, 241, 233, 0.08); }
.gmp-btn-teal {
  background: var(--gmp-teal);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(17, 100, 104, 0.3);
}
.gmp-btn-teal:hover { background: var(--gmp-teal-dark); }
.gmp-hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.gmp-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 30px;
  background: rgba(245, 241, 233, 0.1);
  border: 1px solid rgba(245, 241, 233, 0.18);
  font-size: 13px;
  font-weight: 600;
  color: #dce8e8;
}
.gmp-chip .uk-icon-check { color: var(--gmp-coral); }

/* ---------- device mockups ---------- */
.gmp-phone {
  width: 270px;
  border-radius: 40px;
  border: 9px solid #10181a;
  background: #10181a;
  box-shadow: 0 30px 60px rgba(6, 30, 32, 0.45), 0 4px 14px rgba(6, 30, 32, 0.3);
  overflow: hidden;
  position: relative;
}
.gmp-phone::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 86px; height: 20px;
  background: #10181a;
  border-radius: 12px;
  z-index: 2;
}
.gmp-phone img { display: block; width: 100%; }
.gmp-hero-phones { position: relative; padding: 0 40px; }
.gmp-hero-phones .gmp-phone-back {
  position: absolute;
  right: -30px; bottom: -50px;
  transform: rotate(7deg) scale(0.86);
  transform-origin: bottom right;
  opacity: 0.95;
  z-index: 1;
}
.gmp-hero-phones .gmp-phone-front { position: relative; z-index: 2; margin-bottom: -60px; }

.gmp-browser {
  border-radius: 14px;
  overflow: hidden;
  background: var(--gmp-surface);
  border: 1px solid var(--gmp-border);
  box-shadow: 0 24px 54px rgba(34, 30, 25, 0.16);
}
.gmp-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #ece7dd;
  border-bottom: 1px solid var(--gmp-border);
}
.gmp-browser-bar b {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.gmp-browser-bar b:nth-child(1) { background: #e2685c; }
.gmp-browser-bar b:nth-child(2) { background: #e5b054; }
.gmp-browser-bar b:nth-child(3) { background: #71b374; }
.gmp-browser-bar span {
  margin-left: 12px;
  flex: 1;
  background: #f7f4ef;
  border-radius: 7px;
  font-size: 11.5px;
  color: var(--gmp-gray);
  padding: 3px 12px;
  white-space: nowrap;
  overflow: hidden;
}
.gmp-browser img { display: block; width: 100%; }
.gmp a.gmp-shot-link { display: block; text-decoration: none; }

/* ---------- section scaffolding ---------- */
.gmp-section { padding: 84px 0; }
.gmp-section-alt { background: var(--gmp-surface); border-top: 1px solid var(--gmp-border); border-bottom: 1px solid var(--gmp-border); }
.gmp-kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gmp-teal);
  background: var(--gmp-teal-tint);
  border-radius: 30px;
  padding: 6px 16px;
  margin-bottom: 16px;
}
.gmp-kicker-coral { color: #b35a41; background: var(--gmp-coral-tint); }
.gmp-h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin: 0 0 14px;
}
.gmp-lead { font-size: 17px; color: var(--gmp-gray); max-width: 640px; margin: 0 0 40px; }
.gmp-center { text-align: center; }
.gmp-center .gmp-lead { margin-left: auto; margin-right: auto; }

/* ---------- how it works ---------- */
.gmp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gmp-step {
  background: var(--gmp-surface);
  border: 1px solid var(--gmp-border);
  border-radius: 18px;
  padding: 30px 26px;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.gmp-step:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(34, 30, 25, 0.1); }
.gmp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 14px 6px;
  background: var(--gmp-teal);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 18px;
}
.gmp-step h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.gmp-step p { margin: 0; font-size: 14.5px; color: var(--gmp-gray); }

/* ---------- alternating feature rows (phones) ---------- */
.gmp-feature {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 44px 0;
  flex-wrap: wrap;
}
.gmp-feature-visual { flex: 0 0 300px; display: flex; justify-content: center; }
.gmp-feature-copy { flex: 1 1 380px; }
.gmp-feature-reverse { flex-direction: row-reverse; }
.gmp-feature h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.4px; margin-bottom: 12px; }
.gmp-feature p { color: var(--gmp-gray); font-size: 15.5px; margin: 0 0 18px; }
.gmp-ticks { list-style: none; margin: 0; padding: 0; }
.gmp-ticks li {
  position: relative;
  padding: 7px 0 7px 34px;
  font-size: 15px;
}
.gmp-ticks li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gmp-teal-tint);
  color: var(--gmp-teal);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  line-height: 22px;
}

/* ---------- business grid ---------- */
.gmp-biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.gmp-biz-card { display: flex; flex-direction: column; }
.gmp-biz-card.gmp-biz-wide { grid-column: 1 / -1; }
.gmp-biz-card h3 { font-size: 20px; font-weight: 800; margin: 22px 0 8px; }
.gmp-biz-card p { color: var(--gmp-gray); font-size: 14.5px; margin: 0; }

/* ---------- groomer strip ---------- */
.gmp-groomer {
  background:
    radial-gradient(800px 400px at 110% 0%, rgba(219, 122, 95, 0.16), transparent 55%),
    var(--gmp-teal-deep);
  color: #f5f1e9;
  border-radius: 26px;
  padding: 56px 56px 0;
  display: flex;
  gap: 56px;
  align-items: flex-end;
  flex-wrap: wrap;
  overflow: hidden;
}
.gmp-groomer-copy { flex: 1 1 400px; padding-bottom: 56px; }
.gmp-groomer-visual { flex: 0 0 280px; margin: 0 auto; }
.gmp-groomer-visual .gmp-phone { margin-bottom: -70px; }
.gmp-groomer .gmp-h2 { color: #fdfcf9; }
.gmp-groomer p { color: #cddddd; font-size: 15.5px; }
.gmp-groomer .gmp-ticks li::before { background: rgba(245, 241, 233, 0.14); color: var(--gmp-coral); }

/* ---------- final CTA ---------- */
.gmp-cta {
  text-align: center;
  padding: 90px 0;
}
.gmp-cta .gmp-h2 { margin-bottom: 12px; }
.gmp-cta .gmp-lead { margin: 0 auto 34px; }
.gmp-note {
  margin-top: 60px;
  text-align: center;
  font-size: 12.5px;
  color: var(--gmp-gray);
}

/* ---------- responsive ---------- */
@media (max-width: 959px) {
  .gmp-steps { grid-template-columns: 1fr; }
  .gmp-biz-grid { grid-template-columns: 1fr; }
  .gmp-hero { padding-top: 60px; }
  .gmp-hero-copy { padding-bottom: 60px; }
  .gmp-hero-phones { padding: 0 20px; }
  .gmp-hero-phones .gmp-phone-back { right: -14px; bottom: -40px; }
  .gmp-groomer { padding: 40px 28px 0; }
  .gmp-groomer-copy { padding-bottom: 40px; }
  .gmp-section { padding: 60px 0; }
  .gmp-feature { gap: 34px; padding: 30px 0; }
}
@media (max-width: 640px) {
  .gmp-phone { width: 230px; }
  .gmp-hero-phones .gmp-phone-back { display: none; }
  .gmp-hero-phones .gmp-phone-front { margin-bottom: -40px; }
  .gmp-groomer-visual .gmp-phone { margin-bottom: -50px; }
}
