/*
  Dan Shimony – Landing Page Styles
  Theme: Light with orange accent (#f5a300) and deep text (#151112)
*/

:root {
  --bg: #ffffff;
  --bg-alt: #faf9f7;
  --text: #151112;
  --muted: #6a6764;
  --border: #e7e3df;
  --accent: #f5a300;
  --accent-ink: #3a2800;
  --shadow: 0 8px 30px rgba(21, 17, 18, 0.08);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(245,163,0,0.07), transparent), var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 12px; }
h1 { font-family: "Playfair Display", Georgia, Cambria, "Times New Roman", Times, serif; font-size: 44px; letter-spacing: -0.02em; }
h2 { font-size: 28px; margin-top: 4px; }
h3 { font-size: 20px; }
p { margin: 0 0 14px; }
.lead { font-size: 18px; color: var(--muted); }
.lead.muted { color: #8a8682; }
.small { font-size: 13px; color: var(--muted); }
.tiny { font-size: 12px; }
.muted { color: var(--muted); }
.center { text-align: center; }

.container { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,0.9); backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 600; }
.brand-mark { background: var(--accent); color: var(--accent-ink); font-weight: 800; padding: 6px 10px; border-radius: 8px; letter-spacing: 0.5px; }
.brand-text { opacity: 0.9; }
.nav { display: flex; gap: 16px; align-items: center; }
.nav a { color: var(--text); text-decoration: none; opacity: 0.88; font-weight: 500; }
.nav a:hover { opacity: 1; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border-radius: 999px; text-decoration: none; font-weight: 600; border: 1px solid transparent; cursor: pointer; transition: transform .06s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow); }
.btn-primary:hover { filter: saturate(1.05) brightness(0.98); }
.btn-outline { border-color: var(--border); color: var(--text); background: #fff; }
.btn-outline:hover { border-color: #d8d3cf; }
.btn-ghost { color: var(--text); background: transparent; border-color: transparent; }
.btn-lg { padding: 14px 22px; font-size: 16px; }
.btn-block { width: 100%; }

/* Hero */
.hero { padding: 64px 0 24px; }
.hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: center; }
.hero-copy .accent-underline { background: linear-gradient(180deg, rgba(245,163,0,0) 60%, rgba(245,163,0,0.35) 60%); }
.cta-row { display: flex; gap: 12px; margin: 18px 0 12px; flex-wrap: wrap; }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; color: var(--muted); font-size: 14px; margin-top: 6px; }
.hero-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.price-tag { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.price { font-size: 32px; font-weight: 800; }
.price-tag .note { color: var(--muted); }
.highlights { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 8px; }
.highlights li::before { content: "✓"; color: var(--accent-ink); background: var(--accent); border-radius: 50%; font-weight: 800; display: inline-flex; width: 20px; height: 20px; align-items: center; justify-content: center; margin-right: 8px; }
.highlights li { display: flex; align-items: center; }

/* Sections */
.section { padding: 54px 0; }
.section.alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.grid.two { display: grid; gap: 28px; grid-template-columns: 1fr 1fr; align-items: start; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards.auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.card.center { text-align: center; }
.about-panel { background: linear-gradient(180deg, #fff, #fff), radial-gradient(600px 200px at 100% -40%, rgba(245,163,0,0.15), transparent); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.avatar { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; display: block; margin-bottom: 12px; border: 3px solid #fff; box-shadow: 0 6px 18px rgba(21,17,18,0.15); }
.badge { display: inline-block; background: #fff3d9; color: var(--accent-ink); font-weight: 700; padding: 6px 12px; border-radius: 999px; border: 1px solid #ffe3a8; margin-bottom: 10px; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ticks li { position: relative; padding-left: 26px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); box-shadow: inset 0 0 0 3px #fff; }

.testimonial-widget { display: grid; gap: 14px; }
.testimonial-widget iframe { width: 100%; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); display: block; background: #fff; }

.pricing { display: grid; place-items: center; }
.pricing-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px; width: min(560px, 100%); box-shadow: var(--shadow); text-align: center; }
.price-large { font-size: 48px; font-weight: 800; margin: 6px 0 10px; }

/* FAQ */
.faq details { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; box-shadow: var(--shadow); }
.faq details + details { margin-top: 12px; }
.faq summary { cursor: pointer; font-weight: 600; }

/* Footer */
.site-footer { padding: 24px 0 28px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 10px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-actions { display: flex; gap: 10px; }

/* Utilities */
.help { color: var(--muted); margin-top: 8px; }

/* Responsive */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
}

@media (max-width: 680px) {
  .container { width: min(1100px, calc(100% - 28px)); }
  .section { padding: 36px 0; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  .lead { font-size: 16px; }
  .cards.three { grid-template-columns: 1fr; }
  .grid.two { grid-template-columns: 1fr; }
  .nav a:not(.btn) { display: none; }
  .pricing-card { padding: 18px; }
  .price-large { font-size: 36px; }
  .site-footer { padding: 20px 0 24px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 14px; padding-bottom: 8px; }
  .footer-brand { flex-direction: column; align-items: center; gap: 6px; }
  .footer-actions { width: 100%; display: grid; grid-template-columns: 1fr; gap: 10px; }
  .footer-actions .btn { width: 100%; }
}
