/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: #262627; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --primary: #262627;
  --primary-dark: #000000;
  --accent: #FFB3C7;
  --accent-dark: #f08cab;
  --bg-light: #F6F5EF;
  --bg-white: #FFFFFF;
  --bg-warm: #F1EFEE;
  --text-dark: #262627;
  --text-muted: #666666;
  --text-light: #FFFFFF;
  --border: #D3DEDC;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --radius: 12px;
  --max-w: 1200px;
}

/* ===== UTILITIES ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--bg-light); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-weight: 600;
  font-size: 1rem; cursor: pointer; border: none;
  transition: all .25s ease;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); padding: 16px 0;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.navbar__logo { display: flex; align-items: center; }
.navbar__logo img { height: 36px; width: auto; }
.navbar__links { display: flex; gap: 32px; align-items: center; }
.navbar__links a { font-weight: 500; color: var(--text-muted); transition: color .2s; }
.navbar__links a:hover { color: var(--primary); }

/* ===== HERO ===== */
.hero {
  background: var(--primary);
  color: var(--text-light); padding: 100px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: rgba(255,255,255,.05); border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px;
  background: rgba(255,255,255,.03); border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__badge {
  display: inline-block; background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  padding: 6px 16px; border-radius: 20px; font-size: .85rem; font-weight: 600; margin-bottom: 20px;
}
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero__subtitle { font-size: 1.15rem; opacity: .9; margin-bottom: 32px; line-height: 1.7; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 32px; margin-top: 32px; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: .9rem; opacity: .85; }
.hero__visual {
  background: rgba(255,255,255,.1); border-radius: var(--radius);
  padding: 40px; backdrop-filter: blur(8px);
}
.hero__price-card { text-align: center; }
.hero__price-card .price-label { font-size: 1rem; opacity: .8; margin-bottom: 8px; }
.hero__price-card .price { font-size: 3.5rem; font-weight: 800; }
.hero__price-card .price sup { font-size: 1.2rem; vertical-align: super; }
.hero__price-card .price-note { font-size: .9rem; opacity: .7; margin-top: 4px; }
.hero__price-card .price-includes { margin-top: 24px; text-align: left; }
.hero__price-card .price-includes li { padding: 8px 0; font-size: .95rem; display: flex; align-items: center; gap: 10px; }
.hero__price-card .price-includes li::before { content: '\2713'; font-weight: 700; color: var(--accent); }

/* ===== SECTION HEADINGS ===== */
.section__header { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.section__header h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; color: var(--text-dark); }
.section__header p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== WHAT IS A HOLDING ===== */
.what-is { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-is__content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.what-is__content p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.05rem; }
.what-is__diagram {
  background: var(--bg-light); border-radius: var(--radius); padding: 40px;
  border: 1px solid var(--border);
}
.diagram-box {
  background: var(--bg-white); border: 2px solid var(--primary); border-radius: 10px;
  padding: 16px 24px; text-align: center; font-weight: 700; font-size: .95rem;
  color: var(--primary);
}
.diagram-box--holding { background: var(--primary); color: #fff; border-color: var(--primary); font-size: 1.1rem; }
.diagram-arrow { text-align: center; padding: 8px 0; color: var(--primary); font-size: 1.5rem; }
.diagram-children { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

/* ===== ADVANTAGES ===== */
.advantages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.advantage-card {
  background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: all .3s ease;
}
.advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.advantage-card__icon {
  width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 16px;
}
.advantage-card__icon--blue { background: var(--bg-warm); color: var(--primary); }
.advantage-card__icon--amber { background: #FFE8EF; color: #c4748d; }
.advantage-card__icon--green { background: #E8F0EE; color: #333333; }
.advantage-card__icon--purple { background: var(--bg-light); color: #666666; }
.advantage-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.advantage-card p { color: var(--text-muted); font-size: .95rem; }

/* ===== WHY LEGALFREE (4 ARGUMENTS) ===== */
.arguments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.argument-card {
  background: var(--bg-white); border-radius: var(--radius); padding: 32px 24px;
  text-align: center; border: 1px solid var(--border); transition: all .3s ease;
  position: relative; overflow: hidden;
}
.argument-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent);
}
.argument-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.argument-card__number {
  font-size: 2.5rem; font-weight: 900; color: var(--primary); opacity: .15;
  position: absolute; top: 16px; right: 20px;
}
.argument-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.argument-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.argument-card p { color: var(--text-muted); font-size: .9rem; }

/* ===== PROCESS / STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative; text-align: center; padding: 24px 16px;
}
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff; font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: .9rem; }

/* ===== PRICING ===== */
.pricing-card {
  max-width: 500px; margin: 0 auto; background: var(--bg-white);
  border: 2px solid var(--primary); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.pricing-card__header {
  background: var(--primary); color: #fff; padding: 32px; text-align: center;
}
.pricing-card__header .price { font-size: 3rem; font-weight: 800; }
.pricing-card__header .price sup { font-size: 1rem; }
.pricing-card__header p { opacity: .8; margin-top: 4px; }
.pricing-card__body { padding: 32px; }
.pricing-card__body ul li {
  padding: 12px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 12px; font-size: .95rem;
}
.pricing-card__body ul li:last-child { border-bottom: none; }
.pricing-card__body ul li::before { content: '\2713'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.pricing-card__footer { padding: 0 32px 32px; text-align: center; }

/* ===== CALENDLY ===== */
.calendly-section { background: var(--primary); color: #fff; }
.calendly-section .section__header h2 { color: #fff; }
.calendly-section .section__header p { color: rgba(255,255,255,.8); }
.calendly-wrapper {
  max-width: 700px; margin: 0 auto;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); min-height: 700px;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-item__question {
  width: 100%; padding: 20px 24px; background: var(--bg-white); border: none;
  font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-dark); transition: background .2s;
}
.faq-item__question:hover { background: var(--bg-light); }
.faq-item__question::after { content: '+'; font-size: 1.3rem; font-weight: 300; transition: transform .3s; }
.faq-item.active .faq-item__question::after { content: '\2212'; }
.faq-item__answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all .3s ease; }
.faq-item.active .faq-item__answer { padding: 0 24px 20px; max-height: 500px; }
.faq-item__answer p { color: var(--text-muted); font-size: .95rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--primary);
  color: #fff; text-align: center; padding: 60px 24px;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { opacity: .85; margin-bottom: 24px; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #262627; color: rgba(255,255,255,.7); padding: 48px 0 24px; }
.footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer__logo { display: flex; align-items: center; }
.footer__logo img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.footer__links { display: flex; gap: 24px; }
.footer__links a:hover { color: #fff; }
.footer__copy { text-align: center; padding-top: 24px; margin-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 32px; }
  .hero h1 { font-size: 2.2rem; }
  .what-is { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .arguments-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .hero { padding: 60px 0 48px; }
  .hero h1 { font-size: 1.8rem; }
  .arguments-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .navbar__links { display: none; }
}
