/* Properoo marketing site – mobile first */
:root {
  --blue: #0033cc;
  --blue-dark: #002299;
  --blue-soft: #e8eefc;
  --silver: #d9d9d9;
  --bg: #f8f9fb;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #5a5a6e;
  --teal: #0f766e;
  --radius: 14px;
  --max: 720px;
  --font: Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.wrap-wide {
  width: min(100% - 2rem, 960px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8e8ee;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  width: min(100% - 2rem, 960px);
  margin-inline: auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
@media (min-width: 700px) {
  .logo img { height: 60px; max-width: 260px; }
}
.logo span { color: var(--text); font-weight: 600; }
.nav {
  display: none;
  gap: 1.25rem;
  align-items: center;
}
.nav a {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font);
}
.nav a:hover { color: var(--blue-dark); text-decoration: underline; }
.nav .btn { color: #fff !important; font-weight: 650; }
.nav .btn:hover { text-decoration: none; color: #fff !important; background: var(--blue-dark); }

.menu-btn {
  border: 1px solid var(--blue);
  background: var(--white);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  font-family: var(--font);
}
.nav-open .nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid #e8e8ee;
  padding: 1rem 1.25rem 1.25rem;
  gap: 0.85rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

@media (min-width: 768px) {
  .menu-btn { display: none; }
  .nav { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--blue);
  color: #fff !important;
  font-weight: 650;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.15s, transform 0.1s;
}
.btn:hover { background: var(--blue-dark); }
.btn:active { transform: scale(0.98); }
.btn-block { width: 100%; }
.btn-secondary {
  background: var(--white);
  color: var(--blue) !important;
  border: 1.5px solid var(--blue);
}
.btn-secondary:hover { background: var(--blue-soft); }
.btn-teal { background: var(--teal); }
.btn-teal:hover { background: #0d9488; }

/* Hero */




/* Hero – text over photo */
.hero {
  position: relative;
  padding: 0;
  background: #e8eefc;
  overflow: hidden;
  min-height: 320px;
}
.hero-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Much lighter – photo stays visible */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.55) 45%,
    rgba(232, 238, 252, 0.72) 100%
  );
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 2.75rem 0 2.5rem;
  color: var(--blue);
  text-align: center;
}
.hero .wrap {
  width: min(100% - 1.5rem, 960px);
}
.hero .hero-eyebrow {
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.hero h1 {
  color: var(--blue);
  font-size: clamp(2.15rem, 7.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  max-width: none;
  font-family: var(--font);
}
.hero .tagline-accent {
  color: var(--blue);
  display: block;
}
.hero .hero-sub {
  color: var(--text);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  max-width: 36rem;
  margin: 0 auto 1.25rem;
}
.hero .hero-note {
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
.hero .btn {
  width: auto;
  min-width: 0;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  border-radius: 10px;
  font-family: var(--font);
}
.hero .btn-block {
  width: auto;
}
.hero .btn-secondary {
  background: var(--white);
  color: var(--blue) !important;
  border: 1.5px solid var(--blue);
}
.hero .btn-secondary:hover {
  background: var(--blue-soft);
}
@media (min-width: 700px) {
  .hero { min-height: 420px; }
  .hero-copy { padding: 4rem 0 3.5rem; }
  .hero h1 { font-size: 3.5rem; }
  .hero .btn { padding: 0.6rem 1.15rem; font-size: 0.88rem; }
}

/* Sections */
section { padding: 2.5rem 0; }
section.alt { background: var(--bg); }
section h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
section .lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.list-plain {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-plain li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  color: var(--text);
  border-bottom: 1px solid #eee;
}
.list-plain li:last-child { border-bottom: none; }
.list-plain li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--blue);
}

/* Cards */
.stack { display: grid; gap: 0.85rem; }
.card {
  background: var(--white);
  border: 1px solid #e6e6ee;
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--blue);
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.card-dark {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.card-dark h3, .card-dark p { color: #fff; }
.card-dark p { opacity: 0.92; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 0.75rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  background: var(--white);
  border: 1px solid #e6e6ee;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}
.step strong { display: block; margin-bottom: 0.15rem; }
.step span { color: var(--muted); font-size: 0.92rem; }

/* Packages */
.pkg {
  border: 1px solid #e6e6ee;
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  background: var(--white);
}
.pkg.popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}
.pkg .badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.4rem;
}
.pkg h3 { margin: 0 0 0.35rem; font-size: 1.1rem; }
.pkg p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* CTA band */
.cta-band {
  background: var(--blue);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.9); margin: 0 0 1.25rem; }
.cta-band .btn {
  background: #fff;
  color: var(--blue) !important;
}
.cta-band .btn:hover { background: var(--blue-soft); }

/* Form */
.form {
  display: grid;
  gap: 0.85rem;
  max-width: 28rem;
}
label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
input, select, textarea {
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  color: var(--text);
  border: 1px solid #d0d0da;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  background: var(--white);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(0,51,204,0.25);
  border-color: var(--blue);
}
textarea { min-height: 110px; resize: vertical; }

/* Footer – match header */
.site-footer {
  background: rgba(255,255,255,0.96);
  color: var(--blue);
  padding: 1.5rem 0 2rem;
  font-size: 0.92rem;
  font-family: var(--font);
  border-top: 1px solid #e8e8ee;
}
.site-footer strong { color: var(--blue); font-family: var(--font); }
.site-footer a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font);
}
.site-footer a:hover { text-decoration: underline; color: var(--blue-dark); }
.footer-grid {
  display: grid;
  gap: 1rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}
.footer-fine {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e8e8ee;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
  font-family: var(--font);
}

.two-col {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .pkg-row { grid-template-columns: repeat(3, 1fr); }
}

.pkg-row { display: grid; gap: 0.85rem; }

.page-hero {
  padding: 2rem 0 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid #e8e8ee;
}
.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 4.5vw, 2.1rem);
  letter-spacing: -0.02em;
}
.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
}

.pkg-list {
  margin: 0.65rem 0 0;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  font-family: var(--font);
}
.pkg-list li { margin: 0.35rem 0; }
.pkg-list strong { color: var(--text); }

/* Workflow timeline */
.workflow {
  display: grid;
  gap: 0;
  margin-top: 1.25rem;
  border-left: 3px solid var(--blue-soft);
  margin-left: 0.85rem;
  padding-left: 0;
}
.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  position: relative;
  padding: 0 0 1.35rem 0.85rem;
}
.workflow-step:last-child { padding-bottom: 0.25rem; }
.workflow-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  font-family: var(--font);
  margin-left: -1.85rem;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--blue-soft);
}
.workflow-body h3 {
  margin: 0.15rem 0 0.25rem;
  font-size: 1.05rem;
  color: var(--blue);
  font-family: var(--font);
}
.workflow-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-family: var(--font);
}
.workflow-foot {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  font-family: var(--font);
}

/* How it works – icons, no boxes */
.how-timeline {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.how-item {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0.85rem 1.1rem;
  position: relative;
  padding-bottom: 1.65rem;
  align-items: start;
}
.how-item:last-child { padding-bottom: 0.25rem; }
.how-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 2.75rem;
  bottom: 0.15rem;
  width: 2px;
  background: var(--blue-soft);
}
.how-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.how-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}
.how-content {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.15rem 0 0;
  border-radius: 0;
}
.how-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 0.2rem;
  font-family: var(--font);
}
.how-content h3 {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
  color: var(--text);
  font-family: var(--font);
}
.how-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  font-family: var(--font);
  max-width: 36rem;
}



.heading-blue {
  color: var(--blue) !important;
  font-family: var(--font);
}

.legal {
  max-width: 40rem;
}
.legal h2 {
  margin-top: 1.75rem;
  font-size: 1.15rem;
  color: var(--blue);
}
.legal h3 {
  margin-top: 1.25rem;
  font-size: 1.02rem;
  color: var(--text);
}
.legal p, .legal li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.legal ul {
  padding-left: 1.2rem;
}
.legal p strong, .legal li strong {
  color: var(--text);
}
