/* ============================================================
   Tyne Tree Leads — Main Stylesheet
   Mobile-first, no frameworks, vanilla CSS

   Colours:
     Deep Green:  #2D6A4F
     Mid Green:   #52B788
     Off White:   #F8F9FA
     Near Black:  #1B1B1B
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Nunito:wght@400;600;700&display=swap');

/* === CSS CUSTOM PROPERTIES === */
:root {
  --green-dark:   #2D6A4F;
  --green-mid:    #52B788;
  --green-light:  #B7E4C7;
  --green-pale:   #D8F3DC;
  --bg:           #F8F9FA;
  --text:         #1B1B1B;
  --text-muted:   #555555;
  --white:        #ffffff;
  --border:       #e0e0e0;
  --shadow:       0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg:    0 8px 32px rgba(0, 0, 0, 0.12);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.2s ease;
  --container:    1100px;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* === UTILITY === */
.text-center { text-align: center; }
.bg-white    { background: var(--white); }
.bg-light    { background: var(--bg); }
.bg-pale     { background: var(--green-pale); }

.bg-green {
  background: var(--green-dark);
  color: var(--white);
}

.bg-green h2,
.bg-green h3 {
  color: var(--white);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
}

.btn-primary:hover {
  background: #3d9a6f;
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--green-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #1a4a36;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* === NAVIGATION === */
.site-nav {
  background: var(--white);
  border-bottom: 2px solid var(--green-pale);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo:hover {
  text-decoration: none;
  color: var(--green-dark);
}

.logo-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--green-dark);
  text-decoration: none;
}

.nav-cta {
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--green-mid);
  color: var(--white) !important;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav dropdown */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--green-pale);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav li a {
  display: block;
  padding: 0.85rem 1.25rem;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--green-pale);
  transition: background var(--transition);
}

.mobile-nav li:last-child a {
  border-bottom: none;
  color: var(--green-dark);
  font-weight: 600;
}

.mobile-nav li a:hover {
  background: var(--green-pale);
  text-decoration: none;
}

/* === SEASONAL BANNER === */
.seasonal-banner {
  background: #e6f4ea;
  border-left: 4px solid var(--green-mid);
  padding: 0.85rem 1.5rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--green-dark);
  font-weight: 500;
}

.seasonal-banner strong {
  font-weight: 700;
}

/* === HERO (HOMEPAGE) === */
/*
  To add a background image:
  1. Download a high-res trees/arborist photo (e.g. from unsplash.com/s/photos/tree-canopy)
  2. Save it as /images/hero-bg.jpg
  3. The CSS below will automatically use it with a dark overlay
*/
.hero {
  background-color: #0f1e14;
  background-image:
    linear-gradient(to bottom, rgba(10, 22, 15, 0.78) 0%, rgba(20, 45, 30, 0.72) 100%),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  color: var(--white);
  padding: 7rem 0 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero > .container {
  position: relative;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero .hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.badge::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 6px;
  border-left: 2px solid rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
  transform: rotate(-45deg) translateY(-1px);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === PAGE HERO (inner pages + location/service pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a4a36 100%);
  color: var(--white);
  padding: 3.5rem 0;
  min-height: 180px;
  box-sizing: border-box;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 0;
}

.breadcrumb {
  font-size: 0.82rem;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

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

.breadcrumb span {
  margin: 0 0.4rem;
}

/* === HOW IT WORKS — STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 0.5rem;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.6rem;
  text-decoration: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  background: #1a4a36;
  transform: translateY(-3px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  display: none;
}

.service-card h3 {
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  flex: 1;
  line-height: 1.6;
}

.service-card-cta {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 0.01em;
}

/* === WHY USE US === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  width: 4px;
  min-width: 4px;
  height: 44px;
  background: var(--green-mid);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0;
}

.why-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* === LEAD CAPTURE FORM === */
.form-section {
  background: var(--green-dark);
}

.form-section .section-header h2 {
  color: var(--white);
}

.form-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.form-wrapper {
  max-width: 660px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.required-mark {
  color: #e53e3e;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* GDPR checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--green-dark);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success .success-icon {
  width: 52px;
  height: 52px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 0;
}

.form-success .success-icon::before {
  content: '';
  display: block;
  width: 22px;
  height: 11px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg) translate(2px, -2px);
}

.form-success h3 {
  color: var(--green-dark);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-muted);
  margin: 0;
}

/* Form error state */
.form-control.error {
  border-color: #e53e3e;
}

.field-error {
  display: block;
  font-size: 0.8rem;
  color: #e53e3e;
  margin-top: 0.3rem;
}

/* === FAQ ACCORDION === */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--green-pale);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--green-dark);
}

.faq-toggle {
  font-size: 1.35rem;
  color: var(--green-dark);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* === PRICING CARD === */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid var(--green-mid);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  display: none;
}

.trial-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.price-display {
  margin: 1rem 0;
}

.price-main {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.price-main sup {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 0.5rem;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.pricing-features {
  text-align: left;
  margin: 1.5rem 0;
}

.pricing-features li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--green-pale);
  font-size: 0.93rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  margin-top: 1px;
}

.check::after {
  content: '';
  display: block;
  width: 11px;
  height: 6px;
  border-left: 2.5px solid var(--green-dark);
  border-bottom: 2.5px solid var(--green-dark);
  transform: rotate(-45deg) translateY(-1px);
}

/* === FREE TRIAL BOX === */
.trial-box {
  background: var(--green-pale);
  border: 2px solid var(--green-mid);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  margin: 2.5rem auto;
  max-width: 680px;
  text-align: center;
}

.trial-box h3 {
  color: var(--green-dark);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.trial-box p {
  color: var(--text);
  font-size: 1rem;
}

/* === WHAT YOU RECEIVE (surgeon page) === */
.receive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.receive-item {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--green-mid);
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
}

.receive-item .r-icon {
  display: none;
}

.q-icon {
  width: 4px;
  min-width: 4px;
  height: 44px;
  background: var(--green-mid);
  border-radius: 2px;
  flex-shrink: 0;
  font-size: 0;
  align-self: flex-start;
  margin-top: 0.2rem;
}

/* === COMPARISON TABLE === */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
}

.comparison-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--green-pale);
}

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

.comparison-table tr:nth-child(even) td {
  background: #fafafa;
}

.row-highlight td {
  background: #e8f5e9 !important;
  font-weight: 600;
  color: var(--green-dark);
}

.bad  { color: #c0392b; font-weight: 500; }
.good { color: var(--green-dark); font-weight: 600; }

/* === TRUST STRIP === */
.trust-strip {
  background: var(--green-dark);
  color: var(--white);
  padding: 1.75rem 0;
  text-align: center;
}

.trust-strip p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin: 0;
}

.trust-strip strong {
  font-weight: 700;
}

/* === CONTENT + SIDEBAR LAYOUT (location/service pages) === */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}

.content-body h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-body h2:first-child {
  margin-top: 0;
}

.content-body p {
  color: var(--text-muted);
}

.content-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.content-body ul li {
  margin-bottom: 0.4rem;
}

.sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green-dark);
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  color: var(--green-dark);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  border-bottom: 1px solid var(--green-pale);
}

.sidebar-links li a {
  display: block;
  padding: 0.6rem 0;
  color: var(--text);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.sidebar-links li a:hover {
  color: var(--green-dark);
  text-decoration: none;
  padding-left: 4px;
}

.sidebar-links li:last-child {
  border-bottom: none;
}

/* Internal link pills */
.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pill-links a {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background var(--transition);
}

.pill-links a:hover {
  background: var(--green-light);
  text-decoration: none;
}

/* Inline form on location pages */
.inline-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.inline-form h3 {
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.inline-form p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-detail-icon {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--green-mid);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  font-size: 0;
}

/* === PRIVACY POLICY === */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: var(--green-dark);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  margin-bottom: 0.4rem;
}

/* === FOOTER === */
.site-footer {
  background: #141414;
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  opacity: 0.55;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: var(--white);
  padding: 1rem 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  opacity: 0.85;
  flex: 1;
  min-width: 200px;
}

.cookie-banner p a {
  color: var(--green-mid);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: opacity var(--transition);
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-accept {
  background: var(--green-mid);
  color: var(--white);
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.35) !important;
}

/* === RESPONSIVE BREAKPOINTS === */

/* Tablet */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .surgeon-hero {
    padding: 3.5rem 0 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 1.75rem 1.25rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .table-wrapper {
    font-size: 0.82rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .receive-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}
