:root {
  /* LyfWis Color Palette */
  --bg-start: #F8FAFC;     /* Cool slate off-white */
  --bg-end: #F1F5F9;       /* Warm light gray */
  --text: #1E293B;         /* Deep slate */
  --muted: #64748B;        /* Medium slate */
  --border: #E2E8F0;       /* Light slate border */
  --accent: #3A6F6B;       /* Teal accent (LyfWis brand) */
  --accent-hover: #2C5B59;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    	"Hoefler Text",
    	"Garamond",
    	"EB Garamond",
    	"Times New Roman",
    	serif;
  background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-end) 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 960px;
  padding: 0 24px;
  margin: 0 auto;
  
}

header {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0px;
}

.logo {
  height: 32px;
  width: auto;
  display: block;
  
}


header strong {
  font-size: 24px;
  font-weight: 650;
  background: linear-gradient(135deg, var(--accent), #2C5B59);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 550;
  margin-left: 24px;
  transition: color 0.2s ease;
}

header a,
.btn {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

header a:hover {
  color: var(--accent);
}

section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.hero {
  padding-top: 140px;
  padding-bottom: 120px;
  text-align: center;
}

h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 24px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

p {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 24px;
  font-weight: 550;

}

.cta {
  margin-top: 48px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 550;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--white);
  transition: all 0.2s ease;
  //font-family: inherit;
  display: inline-block;
}

.btn.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(58, 111, 107, 0.15);
}

.btn.primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 8px 25px rgba(58, 111, 107, 0.3);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 48px;
  text-align: center;
}

form {
  max-width: 560px;
  margin-top: 48px;
  text-align: center;
}

input, textarea, select {
  width: 100%;
  padding: 16px;
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease;
  
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  
}

footer {
  padding: 30px 0 15px;
  font-size: 15px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  text-align: center;
}

footer strong {
  color: var(--text);
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  header nav {
    flex-direction: column;
    gap: 20px;
  }
  
  header a {
    margin-left: 0;
    margin-right: 20px;
  }
  
  .cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    min-width: 240px;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

.grid > div {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;

  padding: 32px;
  transition: all 0.25s ease;
}

.grid > div:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.budget-field {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  margin-top: 16px;
}

.budget-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 10px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

