/* ==========================================================================
   SHARED INNER-PAGE STYLES
   Pricing cards, comparison tables, timelines, detail rows, forms, legal
   ========================================================================== */

/* ---------- PRICING CARDS ---------- */
.pricing-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; align-items:stretch; }
.price-card{
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 26px; display:flex; flex-direction:column; position:relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.price-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured{ border-color: var(--gold); background: linear-gradient(180deg, #FFFDF7 0%, #fff 100%); box-shadow: var(--shadow-md); }
.price-card__ribbon{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background: var(--seal); color:#fff; font-size:.7rem; font-weight:700; letter-spacing:.04em;
  padding: 6px 16px; border-radius:999px; box-shadow: 0 6px 16px rgba(166,54,42,.3); white-space:nowrap;
}
.price-card__name{ font-size:1.3rem; margin-bottom:6px; }
.price-card__desc{ color: var(--muted); font-size:.86rem; line-height:1.5; min-height:42px; }
.price-card__meta{ margin: 18px 0; padding: 16px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); display:flex; flex-direction:column; gap:10px; }
.price-card__meta div{ font-size:.82rem; }
.price-card__meta dt{ color: var(--muted-lt); font-weight:600; display:inline; }
.price-card__meta dd{ color: var(--ink); font-weight:700; margin:2px 0 0; }
.price-card__price{ margin: 6px 0 20px; }
.price-card__was{ color: var(--muted-lt); text-decoration: line-through; font-size:.92rem; }
.price-card__now{ font-family: var(--font-display); font-size: 2rem; font-weight:700; color: var(--ink); }
.price-card__gst{ font-size:.74rem; color: var(--muted-lt); }
.price-card__features{ display:flex; flex-direction:column; gap:12px; margin-bottom:26px; flex-grow:1; }
.price-card__features li{ display:flex; gap:10px; align-items:flex-start; font-size:.86rem; color: var(--ink-text); line-height:1.5; }
.price-card__features .check-ico{ width:20px; height:20px; }
.price-card__features .check-ico svg{ width:12px; height:12px; }

@media (max-width: 1100px){ .pricing-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .pricing-grid{ grid-template-columns: 1fr; } }

/* Pricing comparison table */
.compare-wrap{ overflow-x:auto; border-radius: var(--radius-lg); border:1px solid var(--line); background:#fff; }
.compare-table{ width:100%; border-collapse:collapse; min-width: 760px; }
.compare-table th, .compare-table td{ padding: 16px 20px; text-align:left; border-bottom:1px solid var(--line); font-size:.9rem; }
.compare-table thead th{ background: var(--ink); color:#fff; font-family:var(--font-display); font-weight:600; font-size:1rem; }
.compare-table thead th:first-child{ border-radius: 0; }
.compare-table tbody tr:nth-child(even){ background: var(--cream-2); }
.compare-table tbody th{ font-weight:700; color: var(--ink); background:transparent; }
.compare-table td.yes{ color: var(--success); font-weight:700; }
.compare-table td.no{ color: var(--muted-lt); }

/* ---------- TIMELINE (about founder story) ---------- */
.timeline{ position:relative; padding-left: 32px; }
.timeline::before{ content:''; position:absolute; left:6px; top:6px; bottom:6px; width:2px; background: var(--paper-line); }
.timeline__item{ position:relative; padding-bottom: 36px; }
.timeline__item:last-child{ padding-bottom:0; }
.timeline__dot{ position:absolute; left:-32px; top:2px; width:14px; height:14px; border-radius:50%; background: var(--seal); border:3px solid var(--cream); box-shadow: 0 0 0 2px var(--seal); }
.timeline__item h4{ font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; color: var(--gold-dark); font-weight:700; margin-bottom:6px; }
.timeline__item h3{ font-size:1.15rem; margin-bottom:8px; }
.timeline__item p{ color: var(--muted); font-size:.92rem; line-height:1.65; max-width:600px; }

/* ---------- DETAIL ROWS (legal entity table, credentials) ---------- */
.detail-table{ width:100%; border-collapse:collapse; background:#fff; border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--line); }
.detail-table tr:not(:last-child) td{ border-bottom:1px solid var(--line); }
.detail-table td{ padding: 16px 22px; font-size:.92rem; }
.detail-table td:first-child{ color: var(--muted); font-weight:600; width:38%; background: var(--cream-2); }
.detail-table td:last-child{ color: var(--ink); font-weight:600; }

/* ---------- TEAM ---------- */
.team-card{ text-align:center; padding: 30px 22px; }
.team-card__photo{ width:120px; height:120px; border-radius:50%; overflow:hidden; margin: 0 auto 18px; border: 4px solid var(--cream-2); position:relative; background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 55%, var(--gold-dark) 150%); }
.team-card__photo img{ width:100%; height:100%; object-fit:cover; }
.team-card h3{ font-size:1.05rem; margin-bottom:4px; }
.team-card .role{ color: var(--seal-dark); font-size:.82rem; font-weight:700; margin-bottom:10px; }
.team-card p{ color: var(--muted); font-size:.85rem; line-height:1.6; }
.team-card .creds{ display:flex; gap:8px; justify-content:center; margin-top:14px; flex-wrap:wrap; }

/* ---------- VALUE / WHAT-WE-DO GRID (about page) ---------- */
.value-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card{ padding: 28px; }
.value-card .num{ font-family: var(--font-display); font-size:2.4rem; color: var(--paper-line); font-weight:700; line-height:1; margin-bottom:12px; }
.value-card h3{ font-size:1.08rem; margin-bottom:10px; }
.value-card p{ color: var(--muted); font-size:.9rem; line-height:1.6; }
@media (max-width: 780px){ .value-grid{ grid-template-columns:1fr; } }

/* ---------- SERVICE DETAIL BLOCKS (services page) ---------- */
.svc-detail{ display:grid; grid-template-columns: .5fr 1.5fr; gap: 48px; padding: 52px 0; border-bottom: 1px solid var(--paper-line); scroll-margin-top: 100px; }
.svc-detail:last-child{ border-bottom:none; }
.svc-detail__head{ position:sticky; top:110px; align-self:start; }
.svc-detail__head .seal{ --seal-size:56px; margin-bottom:18px; }
.svc-detail__head .seal .seal-mark{ background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 100%); }
.svc-detail__head h2{ font-size: 1.55rem; }
.svc-detail__head p.tag{ color: var(--seal-dark); font-weight:700; font-size:.8rem; text-transform:uppercase; letter-spacing:.06em; margin-top:8px; }
.svc-detail__body p.lead{ font-size: 1.05rem; color: var(--ink-text); line-height:1.7; margin-bottom:24px; }
.svc-sub-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 20px; }
.svc-sub{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius-md); padding: 20px; }
.svc-sub h4{ font-size:.98rem; display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.svc-sub h4 .check-ico{ width:22px; height:22px; }
.svc-sub p{ color: var(--muted); font-size:.86rem; line-height:1.55; }
@media (max-width: 900px){
  .svc-detail{ grid-template-columns:1fr; gap: 20px; }
  .svc-detail__head{ position:static; }
  .svc-sub-grid{ grid-template-columns:1fr; }
}

/* Service nav (jump links) */
.svc-jumpnav{ display:flex; gap:10px; flex-wrap:wrap; padding: 22px 0; border-bottom:1px solid var(--paper-line); position:sticky; top:82px; background: rgba(250,245,233,.98); z-index:50; }
.svc-jumpnav a{
  padding: 9px 16px; border-radius:999px; border:1.5px solid var(--line); font-size:.84rem; font-weight:700; color: var(--ink);
  transition: all .2s;
}
.svc-jumpnav a:hover, .svc-jumpnav a.active{ background: var(--ink); border-color: var(--ink); color:#fff; }

/* ---------- CONTACT ---------- */
.contact-grid{ display:grid; grid-template-columns: .8fr 1.2fr; gap: 48px; }
.contact-info-card{ background: var(--ink); color:#fff; border-radius: var(--radius-lg); padding: 40px 32px; }
.contact-info-card h3{ color:#fff; font-size:1.3rem; margin-bottom: 8px; }
.contact-info-card p.sub{ color:#B9C2D4; font-size:.9rem; margin-bottom: 30px; }
.contact-row{ display:flex; gap:16px; align-items:flex-start; margin-bottom:24px; }
.contact-row .ico{
  width:42px; height:42px; border-radius:12px; background: rgba(255,255,255,.08); color: var(--gold-light);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-row h4{ color:#fff; font-size:.9rem; margin-bottom:4px; }
.contact-row p, .contact-row a{ color:#B9C2D4; font-size:.9rem; line-height:1.55; }
.contact-row a:hover{ color: var(--gold-light); }
.contact-hours{ margin-top: 30px; padding-top: 26px; border-top:1px solid rgba(255,255,255,.12); }
.contact-hours h4{ color:#fff; font-size:.9rem; margin-bottom:10px; }
.contact-hours div{ display:flex; justify-content:space-between; font-size:.85rem; color:#B9C2D4; padding:4px 0; }

.contact-form-card{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-card h3{ font-size:1.35rem; margin-bottom:8px; }
.contact-form-card p.sub{ color: var(--muted); margin-bottom: 26px; }
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .field.full{ grid-column: 1 / -1; }
.contact-form-card textarea{
  width:100%; padding: 12px 14px; border-radius:10px; border:1.5px solid var(--line);
  background: var(--cream); font-size:.94rem; resize:vertical; min-height:110px;
}
.contact-form-card textarea:focus{ border-color: var(--gold-dark); outline:none; }
@media (max-width: 900px){
  .contact-grid{ grid-template-columns:1fr; }
}
@media (max-width: 560px){
  .form-grid{ grid-template-columns:1fr; }
  .contact-form-card{ padding: 28px 22px; }
}

.map-frame{ margin-top: 40px; border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line); }
.map-frame iframe{ width:100%; height:340px; border:none; display:block; filter: grayscale(.2) contrast(1.05); }

/* ---------- LEGAL / DISCLAIMER PAGES ---------- */
.legal-body{ max-width: 780px; }
.legal-body h2{ font-size:1.3rem; margin-top: 40px; margin-bottom:14px; }
.legal-body h2:first-child{ margin-top:0; }
.legal-body p, .legal-body li{ color: var(--muted); font-size:.96rem; line-height:1.75; margin-bottom: 14px; }
.legal-body ul{ padding-left: 22px; list-style: disc; }
.legal-body strong{ color: var(--ink); }
.legal-note{ background: var(--cream-2); border-left: 4px solid var(--seal); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 22px; margin: 24px 0; }
.legal-note p{ margin:0; color: var(--ink-text); font-size:.92rem; }

/* ---------- CALCULATOR-STYLE FAQ PAGE FILTER ---------- */
.faq-cats{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 36px; }
.faq-cat-btn{
  padding: 9px 18px; border-radius:999px; border:1.5px solid var(--line); background:#fff; font-size:.84rem; font-weight:700; color: var(--ink);
}
.faq-cat-btn.active{ background: var(--ink); border-color: var(--ink); color:#fff; }
.faq-group{ margin-bottom: 40px; }
.faq-group h3{ font-size:1.1rem; margin-bottom: 6px; color: var(--seal-dark); }

/* ---------- COMPARE / DECISION cards (used on FAQ or services) ---------- */
.two-col-compare{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width: 700px){ .two-col-compare{ grid-template-columns:1fr; } }
