/* ===================================
   POCITOS STUDIO FOR SALE
   Design System — Coastal Modern Premium
   Accent: Teal / Sea-Glass
   =================================== */

:root {
  --navy:    #0D1B2A;
  --teal:    #1A9E8F;
  --teal-lt: #22BBA9;
  --sand:    #C9A96E;
  --cream:   #F7F4EF;
  --white:   #FFFFFF;
  --gray-50: #F9F9F7;
  --gray-100:#F0EFEB;
  --gray-300:#C4C2BC;
  --gray-600:#6B6860;
  --gray-800:#2E2D2A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(13,27,42,.10);
  --shadow-lg: 0 12px 48px rgba(13,27,42,.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
}

/* ---- Typography ---- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--gray-600); margin-bottom: .75rem; }
a  { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Layout ---- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }
.bg-cream   { background: var(--cream); }
.bg-navy    { background: var(--navy); }
.bg-gray    { background: var(--gray-50); }
.text-center{ text-align: center; }

.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26,158,143,.10);
  border-radius: 32px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.section-header { margin-bottom: 52px; }
.section-header p { font-size: 1.05rem; max-width: 580px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem; font-weight: 600;
  padding: 13px 28px; border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer; transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal); color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: #148578; border-color: #148578; text-decoration: none; }
.btn-outline {
  background: transparent; color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); text-decoration: none; }
.btn-white {
  background: var(--white); color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--cream); text-decoration: none; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ---- Navigation ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: .88rem; font-weight: 500;
  color: var(--gray-800);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal); }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #163045 55%, #1A4A5A 100%);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A9E8F' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,158,143,.2); border: 1px solid rgba(26,158,143,.4);
  color: var(--teal-lt); border-radius: 32px;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; margin-bottom: 20px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--teal-lt); border-radius: 50%; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--teal-lt); font-style: normal; }
.hero-lead { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 36px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat { }
.hero-stat strong {
  display: block;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); font-family: var(--font-display);
}
.hero-stat span { font-size: .8rem; color: rgba(255,255,255,.55); }

/* ---- Card Form ---- */
.form-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 36px;
  position: relative;
}
.form-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.form-card p.sub { font-size: .85rem; color: var(--gray-600); margin-bottom: 24px; }
.form-step { display: none; }
.form-step.active { display: block; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--gray-800); margin-bottom: 6px; letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: .9rem;
  color: var(--gray-800); background: var(--white);
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--teal);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.choice-grid.two-col { grid-template-columns: 1fr 1fr; }
.choice-item {
  position: relative;
}
.choice-item input[type="checkbox"],
.choice-item input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.choice-item label {
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 9px 6px; font-size: .8rem; font-weight: 500;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius); cursor: pointer;
  transition: all .2s; line-height: 1.3;
}
.choice-item input:checked + label {
  border-color: var(--teal); background: rgba(26,158,143,.08); color: var(--teal);
}
.choice-item label:hover { border-color: var(--teal); }
.form-progress { display: flex; gap: 6px; margin-bottom: 24px; }
.form-progress span {
  flex: 1; height: 3px; border-radius: 3px;
  background: var(--gray-100);
}
.form-progress span.done { background: var(--teal); }
.form-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 8px; }
.form-honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: .85rem; color: var(--teal); margin-top: 12px; }
.form-status[hidden] { display: none; }
.form-status-error { color: #c0392b; }

/* ---- Grid layouts ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- Feature Cards ---- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(26,158,143,.10);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { font-size: .9rem; margin: 0; }

/* ---- Stat Blocks ---- */
.stat-block {
  text-align: center;
  padding: 28px 20px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-100);
}
.stat-block .num {
  display: block;
  font-size: 2rem; font-weight: 700;
  font-family: var(--font-display);
  color: var(--teal); line-height: 1.1;
  margin-bottom: 6px;
}
.stat-block .label { font-size: .82rem; color: var(--gray-600); line-height: 1.4; }

/* ---- Source Cite ---- */
.source-cite {
  font-size: .78rem; color: var(--gray-600);
  border-left: 2px solid var(--teal);
  padding-left: 10px; margin-top: 6px;
}
.source-cite a { color: var(--teal); }

/* ---- Comparison Table ---- */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  background: var(--navy); color: var(--white);
  padding: 14px 18px; text-align: left; font-size: .85rem;
}
.compare-table td {
  padding: 12px 18px; border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
}
.compare-table tr:nth-child(even) td { background: var(--gray-50); }
.check { color: var(--teal); font-weight: 700; }
.dash  { color: var(--gray-300); }

/* ---- Accordion / FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--navy);
}
.faq-question svg { flex-shrink: 0; width: 20px; height: 20px; transition: transform .3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 0 20px; }
.faq-answer-inner p { font-size: .92rem; margin: 0; }
.faq-answer-inner a { color: var(--teal); }

/* ---- Process Steps ---- */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 20px; padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
}
.step-num {
  counter-increment: step;
  width: 48px; height: 48px;
  background: var(--teal); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
  font-family: var(--font-display);
}
.step h4 { margin-bottom: 6px; }
.step p  { font-size: .92rem; margin: 0; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, #0F6B60 100%);
  padding: 72px 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  padding: 64px 0 32px;
  color: rgba(255,255,255,.6);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer p { font-size: .88rem; line-height: 1.6; }
.footer h5 {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white); margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  font-size: .88rem; color: rgba(255,255,255,.6);
  text-decoration: none; transition: color .2s;
}
.footer ul li a:hover { color: var(--teal-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--teal-lt); }

/* ---- Page Header ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #163045 100%);
  padding: 72px 0 56px;
}
.page-header h1 { color: var(--white); margin-bottom: 14px; }
.page-header p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 600px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--teal-lt); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ---- Info Box ---- */
.info-box {
  background: rgba(26,158,143,.08);
  border: 1px solid rgba(26,158,143,.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box h5 { color: var(--teal); margin-bottom: 6px; font-size: .9rem; }
.info-box p  { font-size: .88rem; margin: 0; }
.info-box a  { color: var(--teal); font-weight: 600; }

/* ---- Checklist ---- */
.checklist { list-style: none; }
.checklist li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; font-size: .92rem;
  border-bottom: 1px solid var(--gray-100);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  color: var(--teal); font-weight: 700; flex-shrink: 0;
}

/* ---- Tax Table ---- */
.tax-table { width: 100%; border-collapse: collapse; }
.tax-table th {
  background: var(--teal); color: var(--white);
  padding: 12px 16px; font-size: .85rem; text-align: left;
}
.tax-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: .88rem;
}
.tax-table tr:nth-child(even) td { background: var(--gray-50); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-grid     { grid-template-columns: 1fr; }
  .grid-4        { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section       { padding: 56px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4        { grid-template-columns: 1fr; }
  .hero-stats    { flex-wrap: wrap; gap: 20px; }
  .hero          { padding: 72px 0 56px; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .nav-links     { display: none; }
  .hamburger     { display: block; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: var(--white);
  flex-direction: column;
  padding: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { border-bottom: 1px solid var(--gray-100); }
.mobile-nav ul li a { display: block; padding: 16px 0; font-size: 1.05rem; font-weight: 500; color: var(--navy); }

/* ---- Utilities ---- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-teal  { color: var(--teal); }
.text-sand  { color: var(--sand); }
.text-white { color: var(--white); }
.text-navy  { color: var(--navy); }
.font-display { font-family: var(--font-display); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* Highlight box for legal/data references */
.ref-box {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: 6px; padding: 6px 12px;
  font-size: .8rem; color: var(--gray-600);
}
.ref-box a { color: var(--teal); font-weight: 600; }
