/* LetUsMeet — letusmeet.in */
:root {
  --primary: #FF3A6A;
  --primary-light: #FF7A9A;
  --primary-dark: #CC2E55;
  --secondary: #6C63FF;
  --secondary-dark: #4A44CC;
  --text: #333333;
  --text-light: #666666;
  --text-extra-light: #999999;
  --surface: #F9F9F9;
  --border: #EEEEEE;
  --white: #FFFFFF;
  --max-width: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img { height: 40px; width: 40px; border-radius: 10px; }

.brand span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.brand span em {
  font-style: normal;
  color: var(--primary);
}

nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

nav a:hover, nav a.active { color: var(--primary); }

nav a.btn { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 58, 106, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 58, 106, 0.4); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #FFF0F4 0%, #F0EFFF 100%);
  padding: 90px 0 100px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  font-weight: 800;
  max-width: 780px;
  margin: 0 auto 20px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }

section.alt { background: var(--surface); }

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

.section-head h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }

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

/* ---------- Feature grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07); }

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #FFF0F4, #F0EFFF);
}

.card h3 { font-size: 1.15rem; margin-bottom: 8px; }

.card p { color: var(--text-light); font-size: 0.97rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }

.step { text-align: center; }

.step .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 { font-size: 1.05rem; margin-bottom: 6px; }

.step p { color: var(--text-light); font-size: 0.95rem; }

/* ---------- Pricing ---------- */
.pricing-highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  color: var(--white);
  padding: 40px;
  text-align: center;
  margin-bottom: 44px;
}

.pricing-highlight .rate { font-size: 2.6rem; font-weight: 800; }

.pricing-highlight p { opacity: 0.92; }

table.rates {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

table.rates th, table.rates td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

table.rates th { background: var(--surface); font-weight: 700; }

table.rates tr:last-child td { border-bottom: none; }

.table-wrap { overflow-x: auto; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}

.cta-band h2 { font-size: 2rem; margin-bottom: 12px; }

.cta-band p { opacity: 0.9; margin-bottom: 28px; }

.cta-band .btn { background: var(--white); color: var(--primary-dark); }

/* ---------- Prose pages (policies) ---------- */
.prose { max-width: 800px; margin: 0 auto; padding: 60px 24px 80px; }

.prose h1 { font-size: 2.2rem; margin-bottom: 8px; }

.prose .updated { color: var(--text-extra-light); font-size: 0.9rem; margin-bottom: 36px; }

.prose h2 { font-size: 1.35rem; margin: 36px 0 12px; }

.prose h3 { font-size: 1.1rem; margin: 24px 0 8px; }

.prose p, .prose li { color: var(--text-light); }

.prose ul, .prose ol { padding-left: 24px; margin: 12px 0; }

.prose li { margin-bottom: 6px; }

.prose a { color: var(--primary); }

.notice {
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
  color: #9A3412;
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }

.contact-card { text-align: center; }

.contact-card a { color: var(--primary); text-decoration: none; font-weight: 600; }

/* ---------- Footer ---------- */
footer {
  background: #1F2430;
  color: #C9CDD6;
  padding: 56px 0 32px;
  font-size: 0.93rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }

footer ul { list-style: none; }

footer li { margin-bottom: 8px; }

footer a { color: #C9CDD6; text-decoration: none; }

footer a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid #333A4A;
  padding-top: 24px;
  text-align: center;
  color: #8A8FA0;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
  nav ul { gap: 16px; }
  nav ul li.hide-mobile { display: none; }
}
