/* TopIbogaineClinics — Navy Clinical skin + custom components (loads after style.css) */
:root {
  --theme-color: #1D4E89; --theme-color2: #F4F7FB; --secondary-color: #0E2A47;
  --title-color: #13202E; --body-color: #F4F7FB; --text-color: #4E5D6C;
  --border-color: #D3DCE6; --smoke-color: #EDF2F8;
  --title-font: "IBM Plex Serif", Georgia, serif; --body-font: "IBM Plex Sans", Arial, sans-serif;
}
body { color: var(--text-color); font-family: var(--body-font); }
h1, h2, h3, h4, h5, h6 { font-family: var(--title-font); color: var(--title-color); font-weight: 700; }

/* ---------- header ---------- */
.tic-topbar { background: var(--secondary-color); color: #B9CBE0; font-size: 13px; padding: 7px 0; }
.tic-topbar a { color: #DCE7F3; text-decoration: none; }
.tic-header { background: #fff; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; }
.tic-header .inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.tic-logo img { height: 44px; width: auto; display: block; }
.tic-nav { display: flex; gap: 26px; align-items: center; }
.tic-nav a { font-family: var(--body-font); font-weight: 600; font-size: 14.5px; color: var(--title-color); text-decoration: none; }
.tic-nav a:hover, .tic-nav a.active { color: var(--theme-color); }
.tic-nav .vs-btn { color: #fff; font-size: 13.5px; padding: 12px 20px; }
.tic-burger { display: none; background: none; border: 1px solid var(--border-color); border-radius: 6px; padding: 8px 10px; }
.tic-burger span { display: block; width: 20px; height: 2px; background: var(--title-color); margin: 4px 0; }
@media (max-width: 991px) {
  .tic-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 18px; border-bottom: 1px solid var(--border-color); gap: 14px; }
  .tic-nav.open { display: flex; }
  .tic-burger { display: block; }
}

/* ---------- hero ---------- */
.tic-hero { background: var(--secondary-color); color: #fff; padding: 84px 0 92px;
  background-image: linear-gradient(rgba(244,247,251,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(244,247,251,.045) 1px, transparent 1px);
  background-size: 56px 56px; }
.tic-hero .kicker { color: #7FB2E5; font-weight: 600; letter-spacing: 2px; font-size: 13px; text-transform: uppercase; margin-bottom: 18px; display: block; }
.tic-hero h1 { color: #fff; font-size: 52px; line-height: 1.14; max-width: 780px; }
.tic-hero h1 .hl { color: #7FB2E5; }
.tic-hero p.lede { color: #B9CBE0; font-size: 18px; max-width: 640px; margin-top: 18px; }
.tic-hero .stats { display: flex; gap: 38px; margin-top: 38px; flex-wrap: wrap; }
.tic-hero .stat b { display: block; font-family: var(--title-font); font-size: 30px; color: #fff; }
.tic-hero .stat span { font-size: 13.5px; color: #9FB3C8; }
@media (max-width: 767px) { .tic-hero h1 { font-size: 34px; } .tic-hero { padding: 56px 0 60px; } }

/* ---------- page title band ---------- */
.tic-band { background: var(--smoke-color); padding: 46px 0 40px; border-bottom: 1px solid var(--border-color); }
.tic-band h1 { font-size: 36px; margin: 0 0 6px; }
.tic-band .crumbs { font-size: 13.5px; color: var(--text-color); }
.tic-band .crumbs a { color: var(--theme-color); text-decoration: none; }
@media (max-width: 767px) { .tic-band h1 { font-size: 27px; } }

/* ---------- cards ---------- */
.tic-card { background: #fff; border: 1px solid var(--border-color); border-top: 3px solid var(--accent, var(--theme-color)); border-radius: 14px; overflow: hidden; margin-bottom: 26px; transition: transform .22s ease, box-shadow .22s ease; display: flex; flex-direction: column; height: calc(100% - 26px); }
.tic-card .price { color: var(--accent, var(--secondary-color)); }
.tic-card .region-tag { color: var(--accent, var(--secondary-color)); }
.tic-card .vs-btn { background: var(--accent, var(--theme-color)); }
.tic-card .vs-btn:hover { background: var(--secondary-color); }
.tic-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(14,42,71,.14); }
.tic-card .img { overflow: hidden; }
.tic-card .img img { transition: transform .35s ease; }
.tic-card:hover .img img { transform: scale(1.04); }
.tic-card .img { position: relative; }
.tic-card .img img { width: 100%; display: block; }
.tic-card .region-tag { position: absolute; top: 12px; left: 12px; background: #fff; border-radius: 999px; padding: 5px 13px; font-size: 12.5px; font-weight: 600; color: var(--secondary-color); }
.tic-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.tic-card h3 { font-size: 20px; margin: 0 0 4px; }
.tic-card h3 a { color: var(--title-color); text-decoration: none; }
.tic-card h3 a:hover { color: var(--theme-color); }
.tic-card .city { font-size: 13.5px; color: var(--text-color); margin-bottom: 10px; }
.tic-card .badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.tic-card .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--smoke-color); padding-top: 14px; }
.tic-card .price { font-family: var(--title-font); font-weight: 700; color: var(--secondary-color); font-size: 17px; }
.tic-card .price small { display: block; font-family: var(--body-font); font-weight: 400; font-size: 11.5px; color: var(--text-color); }
.tic-badge { display: inline-block; font-size: 11.5px; font-weight: 600; border-radius: 999px; padding: 3px 10px; background: var(--smoke-color); color: var(--secondary-color); }
.tic-badge.good { background: #E4F1EA; color: #1E6641; }
.tic-badge.warn { background: #FBEEE7; color: #9A4419; }
.tic-badge.na { background: #F1F1F1; color: #666; }

/* ---------- safety scorecard ---------- */
.tic-score { background: #fff; border: 1px solid var(--border-color); border-radius: 14px; padding: 22px; }
.tic-score h4 { font-size: 17px; margin-bottom: 4px; }
.tic-score .sub { font-size: 12.5px; color: var(--text-color); margin-bottom: 14px; }
.tic-score ul { list-style: none; margin: 0; padding: 0; }
.tic-score li { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--smoke-color); font-size: 14px; color: var(--title-color); }
.tic-score li:last-child { border-bottom: 0; }
.tic-pill { font-size: 11.5px; font-weight: 700; border-radius: 6px; padding: 3px 9px; }
.tic-pill.yes { background: #E4F1EA; color: #1E6641; }
.tic-pill.partial { background: #FDF3DC; color: #8A6410; }
.tic-pill.unstated { background: #F1F1F1; color: #777; }
.tic-scorebar { height: 8px; border-radius: 99px; background: var(--smoke-color); margin: 10px 0 4px; overflow: hidden; }
.tic-scorebar i { display: block; height: 100%; background: var(--theme-color); border-radius: 99px; }

/* ---------- tables ---------- */
.tic-tablewrap { overflow-x: auto; border: 1px solid var(--border-color); border-radius: 12px; background: #fff; }
table.tic-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 760px; }
.tic-table th { background: var(--secondary-color); color: #fff; text-align: left; padding: 12px 14px; font-family: var(--body-font); font-size: 13px; letter-spacing: .3px; }
.tic-table td { padding: 12px 14px; border-bottom: 1px solid var(--smoke-color); color: var(--title-color); vertical-align: top; }
.tic-table tr:last-child td { border-bottom: 0; }
.tic-table td a { color: var(--theme-color); font-weight: 600; text-decoration: none; }

/* ---------- prose / article ---------- */
.tic-prose { max-width: 780px; }
.tic-prose p { margin-bottom: 18px; font-size: 16.5px; line-height: 1.72; }
.tic-prose h2 { font-size: 27px; margin: 38px 0 14px; }
.tic-prose h3 { font-size: 21px; margin: 30px 0 10px; }
.tic-prose ul { margin: 0 0 18px 20px; }
.tic-prose li { margin-bottom: 8px; line-height: 1.6; }
.tic-prose a { color: var(--theme-color); }
.tic-callout { border-left: 4px solid var(--theme-color); background: var(--smoke-color); border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 24px 0; font-size: 15.5px; }
.tic-callout.warn { border-color: #9A4419; background: #FBEEE7; }

/* ---------- misc ---------- */
.tic-section { padding: 64px 0; }
.tic-section.alt { background: var(--smoke-color); }
.tic-section h2.sec { font-size: 30px; margin-bottom: 8px; }
.tic-section p.seclede { color: var(--text-color); margin-bottom: 34px; max-width: 640px; }
.tic-regiontile2 { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border-color); border-radius: 14px; overflow: hidden; text-decoration: none; margin-bottom: 24px; height: calc(100% - 24px); transition: transform .22s ease, box-shadow .22s ease; border-top: 3px solid var(--coast, var(--theme-color)); }
.tic-regiontile2:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(14,42,71,.16); }
.tic-regiontile2 .scene { position: relative; display: block; }
.tic-regiontile2 .scene img { width: 100%; height: 158px; object-fit: cover; display: block; transition: transform .35s ease; }
.tic-regiontile2:hover .scene img { transform: scale(1.045); }
.tic-regiontile2 .scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(8,20,34,.72) 100%); }
.tic-regiontile2 .overline { position: absolute; left: 18px; bottom: 38px; z-index: 2; color: #B9CBE0; font-size: 10.5px; font-weight: 700; letter-spacing: 2px; }
.tic-regiontile2 .scene b { position: absolute; left: 18px; bottom: 12px; z-index: 2; color: #fff; font-family: var(--title-font); font-size: 22px; font-weight: 700; line-height: 1.1; }
.tic-regiontile2 .chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 14px 16px 4px; }
.tic-regiontile2 .chip { font-size: 12px; font-weight: 600; border-radius: 999px; padding: 5px 12px; background: var(--smoke-color); color: var(--secondary-color); }
.tic-regiontile2 .chip.main { background: var(--theme-color); color: #fff; }
.tic-regiontile2 .chip.ghost { background: #fff; border: 1px solid var(--border-color); color: var(--text-color); font-weight: 500; }
.tic-regiontile2 .go { display: flex; align-items: center; gap: 6px; padding: 12px 16px 16px; margin-top: auto; color: var(--theme-color); font-weight: 700; font-size: 13.5px; }
.tic-regiontile2 .go i { font-style: normal; transition: transform .2s; }
.tic-regiontile2:hover .go i { transform: translateX(5px); }
.tic-regiontile { display: block; background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 20px; text-decoration: none; margin-bottom: 22px; height: calc(100% - 22px); }
.tic-regiontile:hover { box-shadow: 0 10px 26px rgba(14,42,71,.1); }
.tic-regiontile b { font-family: var(--title-font); color: var(--title-color); font-size: 18px; display: block; margin-bottom: 4px; }
.tic-regiontile span { font-size: 13px; color: var(--text-color); }
.tic-regiontile .cnt { color: var(--theme-color); font-weight: 700; font-size: 12.5px; display: block; margin-top: 8px; }
.tic-filterbar { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 16px 18px; margin-bottom: 26px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.tic-filterbar select, .tic-filterbar label { font-size: 14px; }
.tic-filterbar select { border: 1px solid var(--border-color); border-radius: 8px; padding: 8px 12px; background: #fff; color: var(--title-color); }
.tic-filterbar label { display: flex; gap: 6px; align-items: center; color: var(--title-color); cursor: pointer; }
.tic-footer { background: var(--secondary-color); color: #9FB3C8; padding: 56px 0 0; margin-top: 70px; }
.tic-footer h5 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.tic-footer a { color: #B9CBE0; text-decoration: none; font-size: 14px; display: inline-block; margin-bottom: 8px; }
.tic-footer a:hover { color: #fff; }
.tic-footer .disclaimer { font-size: 12.5px; line-height: 1.6; color: #7E93A9; }
.tic-footer .bottom { border-top: 1px solid rgba(255,255,255,.09); margin-top: 40px; padding: 18px 0; font-size: 13px; }
.tic-verified { display: inline-flex; align-items: center; gap: 7px; background: #E4F1EA; color: #1E6641; font-weight: 700; font-size: 12.5px; border-radius: 999px; padding: 5px 13px; }
/* featured placement */
.tic-featlabel { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: #8A6410; background: #FDF3DC; border: 1px solid #E9D9A8; border-radius: 6px; padding: 3px 9px; }
.tic-featuredcard { display: flex; background: #fff; border: 1px solid var(--border-color); border-left: 5px solid var(--accent, var(--theme-color)); border-radius: 16px; overflow: hidden; margin-bottom: 22px; box-shadow: 0 10px 32px rgba(14,42,71,.10); transition: transform .22s, box-shadow .22s; }
.tic-featuredcard:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(14,42,71,.16); }
.tic-featuredcard .fimg { flex: 0 0 38%; position: relative; min-height: 220px; }
.tic-featuredcard .fimg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tic-featuredcard .fbody { padding: 22px 26px; flex: 1; display: flex; flex-direction: column; }
.tic-featuredcard h3 { font-size: 23px; margin: 8px 0 2px; }
.tic-featuredcard h3 a { color: var(--title-color); text-decoration: none; }
.tic-featuredcard .fmeta { font-size: 13.5px; color: var(--text-color); margin-bottom: 10px; }
.tic-featuredcard .fpitch { font-size: 14.5px; line-height: 1.6; color: var(--text-color); margin-bottom: 12px; }
.tic-featuredcard .ffoot { margin-top: auto; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tic-featuredcard .fprice { font-family: var(--title-font); font-weight: 700; font-size: 18px; color: var(--accent, var(--secondary-color)); margin-right: auto; }
.tic-featuredcard .vs-btn { background: var(--accent, var(--theme-color)); }
.tic-featuredcard .vs-btn.ghost { background: transparent; border: 2px solid var(--border-color); color: var(--title-color); }
@media (max-width: 767px) { .tic-featuredcard { flex-direction: column; } .tic-featuredcard .fimg { min-height: 170px; flex-basis: auto; } }
.tic-tiertable { border: 1px solid var(--border-color); border-radius: 14px; overflow: hidden; background: #fff; }
.tic-tiertable .tier { padding: 26px; border-bottom: 1px solid var(--border-color); }
.tic-tiertable .tier:last-child { border-bottom: 0; }
.tic-tiertable .tier.hot { background: linear-gradient(135deg, #0E2A47, #1D4E89); color: #B9CBE0; }
.tic-tiertable .tier.hot h4, .tic-tiertable .tier.hot .tic-price-tag { color: #fff; }
.tic-tiertable .tier.hot .tic-price-tag small { color: #9FB3C8; }
.tic-tiertable .tier.hot li { color: #DCE7F3; }
.tic-tiertable .tier.hot .vs-btn { background: #fff; color: var(--secondary-color); }

/* claimed premium profile */
.tic-samplebar { background: #8A6410; color: #fff; text-align: center; font-size: 13.5px; font-weight: 700; padding: 9px 14px; letter-spacing: .4px; }
/* directory-style profile header: cover photo + white profile bar with overlapping logo card */
.tic-cover { position: relative; height: 280px; overflow: hidden; background: var(--secondary-color); }
.tic-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tic-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,20,34,.08) 55%, rgba(8,20,34,.38) 100%); }
@media (max-width: 767px) { .tic-cover { height: 180px; } }
.tic-profilebar { background: #fff; border-bottom: 1px solid var(--border-color); }
.tic-profilebar .inner { display: flex; align-items: flex-start; gap: 22px; padding: 0 0 20px; position: relative; }
.tic-profilebar .logocard { flex: 0 0 auto; width: 100px; height: 100px; background: #fff; border: 1px solid var(--border-color); border-radius: 50%; padding: 6px; margin-top: -50px; box-shadow: 0 0 0 4px #fff, 0 5px 16px rgba(14,42,71,.15); position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.tic-profilebar .logocard img { max-width: 100%; max-height: 100%; width: auto; height: auto; display: block; border-radius: 50%; }
.tic-profilebar .idblock { padding-top: 16px; min-width: 0; flex: 1; }
.tic-profilebar .meta { max-width: 520px; }
.tic-profilebar h1 { font-size: 30px; margin: 0 0 3px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tic-profilebar .meta { font-size: 14px; color: var(--text-color); }
.tic-profilebar .meta a { color: var(--theme-color); text-decoration: none; }
.tic-profilebar .ctas { margin-left: auto; padding-top: 18px; display: flex; gap: 10px; flex-wrap: nowrap; flex-shrink: 0; justify-content: flex-end; align-items: flex-start; }
.tic-profilebar .vs-btn { padding: 11px 20px; font-size: 13.5px; }
.tic-profilebar .vs-btn.ghost { background: #fff; border: 1.5px solid var(--border-color); color: var(--title-color); }
.tic-profilebar .vs-btn.ghost:hover { border-color: var(--theme-color); color: var(--theme-color); background: #fff; }
@media (max-width: 991px) { .tic-profilebar .inner { flex-wrap: wrap; } .tic-profilebar .ctas { margin-left: 0; padding-top: 6px; justify-content: flex-start; width: 100%; } }
.tic-ownerbadge { display: inline-flex; align-items: center; gap: 5px; background: #E4F1EA; color: #1E6641; font-weight: 700; font-size: 11px; letter-spacing: .2px; border-radius: 999px; padding: 4px 11px; vertical-align: middle; }
.tic-provided { font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-color); background: var(--smoke-color); display: inline-block; border-radius: 6px; padding: 4px 10px; margin-bottom: 12px; }
.tic-gallery2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tic-gallery2 img, .tic-gallery2 .ph { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; display: block; }
.tic-gallery2 .ph { border: 2px dashed var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-color); font-size: 13px; background: var(--smoke-color); }
.tic-video { position: relative; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; background: var(--secondary-color); }
.tic-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tic-programcard { border: 1px solid var(--border-color); border-left: 4px solid var(--accent, var(--theme-color)); border-radius: 12px; background: #fff; padding: 18px 20px; margin-bottom: 14px; }
.tic-programcard .top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.tic-programcard b { font-family: var(--title-font); font-size: 17px; color: var(--title-color); }
.tic-programcard .p { font-family: var(--title-font); font-weight: 700; color: var(--accent, var(--theme-color)); }
.tic-programcard ul { margin: 10px 0 0 18px; font-size: 14px; color: var(--text-color); }
.tic-staff { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.tic-staffcard { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 16px; text-align: center; }
.tic-staffcard .avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--accent, var(--theme-color)); color: #fff; font-family: var(--title-font); font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.tic-staffcard b { display: block; font-size: 14.5px; color: var(--title-color); }
.tic-staffcard span { font-size: 12.5px; color: var(--text-color); }
.tic-sticky { position: sticky; top: 92px; }
.tic-unlinked { color: var(--title-color); font-weight: 600; }
.tic-unlinked small { display: block; font-weight: 400; font-size: 11px; color: var(--text-color); }
.tic-claim { background: linear-gradient(135deg, #0E2A47, #1D4E89); border-radius: 14px; padding: 22px; color: #B9CBE0; }
.tic-claim h4 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.tic-claim p { font-size: 13.5px; line-height: 1.55; margin-bottom: 14px; }
.tic-claim .vs-btn { background: #fff; color: var(--secondary-color); }
.tic-claim .vs-btn:hover { background: var(--smoke-color); color: var(--secondary-color); }
.tic-price-tag { font-family: var(--title-font); font-size: 44px; color: var(--secondary-color); font-weight: 700; }
.tic-price-tag small { font-family: var(--body-font); font-size: 15px; color: var(--text-color); font-weight: 500; }
.tic-check li { margin-bottom: 10px; padding-left: 26px; position: relative; list-style: none; line-height: 1.55; }
.tic-check li::before { content: "\2713"; position: absolute; left: 0; color: #1E6641; font-weight: 700; }
.tic-check.no li::before { content: "\2717"; color: #9A4419; }
.tic-contactblock { background: #fff; border: 1px solid var(--border-color); border-left: 4px solid #1E6641; border-radius: 12px; padding: 20px; }
.tic-contactblock .row-line { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--smoke-color); font-size: 14px; }
.tic-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0; }
.tic-gallery img { width: 100%; border-radius: 8px; display: block; }
.tic-faq details { background: #fff; border: 1px solid var(--border-color); border-radius: 10px; padding: 16px 20px; margin-bottom: 12px; }
.tic-faq summary { font-family: var(--title-font); font-weight: 600; font-size: 16.5px; color: var(--title-color); cursor: pointer; }
.tic-faq details p { margin-top: 12px; font-size: 15px; line-height: 1.65; }
.star { color: #E9A426; }
.breadcrumb-sep { margin: 0 6px; color: #A5B4C4; }

.vs-btn { display:inline-block; background: var(--theme-color); color:#fff; font-family: var(--body-font); font-weight:600; font-size:14px; padding:13px 24px; border-radius:999px; border:none; text-decoration:none; letter-spacing:.3px; transition: background .2s; }
.vs-btn:hover { background: var(--secondary-color); color:#fff; }
