  :root{
      --tsd-blue:#337ab7;
      --tsd-text:#1a1a1a;
      --tsd-muted:#6b7280;
      --tsd-border:#e6e9ee;
      --tsd-bg:#ffffff;
      --tsd-bg-soft:#f7fafc;
      --tsd-card:#ffffff;
      --radius:12px;
    }

    *{box-sizing:border-box;}
    body{
      margin:0;
      /*font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,"Noto Sans","Liberation Sans",sans-serif;*/
      color:var(--tsd-text);
      background:var(--tsd-bg);
      line-height:1.5;
    }

    a{color:var(--tsd-blue); text-decoration:none;}
    a:hover{text-decoration:underline;}

    /* Layout */
    .pro-shell{
      min-height:100vh;
      display:grid;
      grid-template-columns: 260px 1fr;
      background:var(--tsd-bg);
    }

    /* Sidebar */
    .pro-sidebar{
      border-right:1px solid var(--tsd-border);
      padding:18px 14px;
      position:sticky;
      top:0;
      height:100vh;
      overflow:auto;
      background:#fff;
    }

    .pro-brand{
      display:flex;
      flex-direction:column;
      gap:2px;
      padding:8px 10px 14px;
    }
    .pro-brand .name{
      font-weight:800;
      letter-spacing:-0.2px;
      color:#00458b;
    }
    .pro-brand .sub{
      font-size:12px;
      color:var(--tsd-muted);
    }

    .pro-nav{
      margin-top:8px;
      display:flex;
      flex-direction:column;
      gap:4px;
      padding:0 6px;
    }

    .pro-nav a{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 10px;
      border-radius:10px;
      color:#111827;
      text-decoration:none;
      font-weight:600;
      font-size:14px;
    }
    .pro-nav a:hover{
      background:var(--tsd-bg-soft);
      text-decoration:none;
    }
    .pro-nav a.active{
      background:rgba(51,122,183,0.10);
      border:1px solid rgba(51,122,183,0.18);
      color:#0f2a3d;
    }

    .group{
      margin-top:10px;
      padding:8px 10px 6px;
      font-size:12px;
      color:var(--tsd-muted);
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:0.6px;
    }

    .pro-nav .indent{
      padding-left:18px;
      font-weight:600;
      color:#1f2a37;
    }

    /* Main content */
    .pro-main{
      padding:26px 20px 60px;
    }

    .pro-container{
      max-width: 1040px;
      margin:0 auto;
    }

    /* Header */
    .pro-header{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
    }

    .pro-header h1{
      margin:0 0 6px;
      font-size:28px;
      font-weight:800;
      letter-spacing:-0.3px;
      color:#00458b;
    }

    .pro-header p{
      margin:0;
      color:var(--tsd-muted);
      max-width: 720px;
      font-size:14px;
    }

    .pro-header .account-link{
      white-space:nowrap;
      font-weight:700;
      font-size:14px;
      padding:10px 12px;
      border-radius:10px;
      border:1px solid var(--tsd-border);
      color:#111827;
      background:#fff;
      text-decoration:none;
    }
    .pro-header .account-link:hover{
      background:var(--tsd-bg-soft);
      text-decoration:none;
    }

    /* Sections */
    .pro-section{
      margin-top:20px;
      padding-top:18px;
      border-top:1px solid var(--tsd-border);
    }

    .pro-section h2{
      margin:0 0 10px;
      font-size:18px;
      font-weight:800;
      color:#00458b;
    }

    /* Cards */
    .pro-card{
      background:var(--tsd-card);
      border:1px solid var(--tsd-border);
      border-radius:var(--radius);
      padding:16px;
    }

    /* Updates list */
    .pro-updates{
      display:grid;
      gap:10px;
    }

    .pro-update{
      border:1px solid var(--tsd-border);
      border-radius:var(--radius);
      padding:14px 14px;
      background:#fff;
    }

    .pro-update .title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:6px;
    }

    .pro-update .title strong{
      font-size:14px;
      font-weight:800;
      color:#111827;
    }

    .pro-update .meta{
      font-size:12px;
      color:var(--tsd-muted);
      white-space:nowrap;
    }

    .pro-update p{
      margin:0 0 8px;
      color:#374151;
      font-size:14px;
    }

    .pro-update .link{
      font-weight:800;
      font-size:14px;
      text-decoration:none;
    }

    /* Quick Access tiles */
    .pro-tiles{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
      margin-top:12px;
    }

    .pro-tile{
      display:flex;
      flex-direction:column;
      gap:8px;
      padding:14px;
      border-radius:var(--radius);
      border:1px solid var(--tsd-border);
      background:#fff;
      text-decoration:none;
      color:#111827;
    }
    .pro-tile:hover{
      background:var(--tsd-bg-soft);
      text-decoration:none;
    }

    .pro-tile .tile-title{
      font-weight:900;
      letter-spacing:-0.1px;
    }
    .pro-tile .tile-desc{
      margin:0;
      font-size:13px;
      color:var(--tsd-muted);
      line-height:1.45;
    }

    /* Small “badge” tags inside tiles */
    .pro-pillrow{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .pro-pill{
      font-size:12px;
      font-weight:700;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(51,122,183,0.10);
      border:1px solid rgba(51,122,183,0.18);
      color:#2c5f8f;
    }

    /* Responsive */
    @media (max-width: 920px){
      .pro-shell{ grid-template-columns: 1fr; }
      .pro-sidebar{
        position:relative;
        height:auto;
        border-right:none;
        border-bottom:1px solid var(--tsd-border);
      }
      .pro-main{ padding-top:18px; }
    }

    @media (max-width: 640px){
      .pro-header{
        flex-direction:column;
        align-items:flex-start;
      }
      .pro-tiles{
        grid-template-columns: 1fr;
      }
    }
    
    /* Operator Insights landing page only (add-on styles).
   These are NOT included in the main PRO dashboard CSS. */

/* Wrapper + header */
.oi-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 16px 60px;
}

.oi-header h1{
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #00458b;
}

.oi-header p{
  margin: 0;
  max-width: 760px;
  color: #6b7280;
  font-size: 14px;
}

.oi-note{
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  background: #f7fafc;
  font-size: 13px;
  color: #374151;
}

/* Sections */
.oi-section{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e6e9ee;
}

.oi-section h2{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #00458b;
}

/* Destination list */
.oi-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.oi-item{
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  background: #fff;
}

/* Top-level destination link row */
.oi-link{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: #111827;
}

.oi-link:hover{
  background: #f7fafc;
  text-decoration: none;
}

.oi-left{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.oi-title{
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.1px;
}

.oi-sub{
  font-size: 12px;
  color: #6b7280;
}

.oi-right{
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
  padding-top: 2px;
}

/* Nested sub-destinations */
.oi-sublist{
  margin: 0;
  padding: 0 0 10px 0;
  list-style: none;
  border-top: 1px solid #e6e9ee;
}

.oi-sublink{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px 10px 34px;
  text-decoration: none;
  color: #111827;
}

.oi-sublink:hover{
  background: #f7fafc;
  text-decoration: none;
}

.oi-bullet{
  position: relative;
}

.oi-bullet::before{
  content: "";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(51, 122, 183, 0.7);
}

.oi-sublabel{
  font-size: 12px;
  color: #6b7280;
}

/* Footer note */
.oi-footer{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e6e9ee;
  font-size: 13px;
  color: #6b7280;
}

.oi-footer a{
  color: #337ab7;
  text-decoration: none;
  font-weight: 700;
}

.oi-footer a:hover{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px){
  .oi-header h1{ font-size: 24px; }
  .oi-link, .oi-sublink{ flex-direction: column; }
  .oi-right{ padding-top: 0; }
}

/* Operator Insights – Destination Page Only */

/* Page wrapper */
.operator-insights-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  line-height: 1.6;
}

/* Header */
.operator-insights-header {
  margin-bottom: 18px;
}

.operator-insights-header h1 {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #00458b;
}

.operator-insights-meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

/* Tag pills */
.operator-insights-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.operator-insights-tags span {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(51, 122, 183, 0.10);
  border: 1px solid rgba(51, 122, 183, 0.18);
  color: #2c5f8f;
}

/* Sections */
.operator-insights-section,
.operator-insights-verdict {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e6e9ee;
}

.operator-insights-section h2,
.operator-insights-verdict h2 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #00458b;
}

/* Verdict card */
.operator-insights-verdict {
  background: #f7fafc;
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  padding: 16px;
}

/* Sub-headings */
.operator-insights-section h3 {
  margin: 16px 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}

/* Lists */
.operator-insights-page ul {
  margin: 0;
  padding-left: 18px;
}

.operator-insights-page li {
  margin: 6px 0;
  font-size: 14px;
}

.operator-insights-page li strong {
  font-weight: 700;
  color: #111827;
}

/* Callout */
.operator-insights-callout {
  margin-top: 26px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(51, 122, 183, 0.08);
  border: 1px solid rgba(51, 122, 183, 0.18);
}

.operator-insights-callout strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #2c5f8f;
  margin-bottom: 6px;
}

.operator-insights-callout p {
  margin: 0;
  font-size: 14px;
  color: #1f2a37;
}

/* Responsive */
@media (max-width: 640px) {
  .operator-insights-header h1 {
    font-size: 24px;
  }

  .operator-insights-section h2 {
    font-size: 16px;
  }
}

/*monthly dive brif*/
/* Monthly Dive Brief page only */
/* Matches your PRO editorial theme and uses your brand blue (#337ab7). */

.dive-brief-page{
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Header */
.dive-brief-header{
  margin-bottom: 18px;
}

.dive-brief-header h1{
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #00458b;
}

.dive-brief-subtitle{
  margin: 0 0 10px;
  font-size: 14px;
  color: #6b7280;
  max-width: 760px;
}

.dive-brief-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 12px;
  color: #6b7280;
}

/* Sections */
.dive-brief-section{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e6e9ee;
}

.dive-brief-section h2{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #00458b;
}

.dive-brief-section p{
  margin: 0;
  font-size: 14px;
  color: #374151;
  max-width: 860px;
}

/* Blocks for destinations */
.dive-brief-block{
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  background: #fff;
}

.dive-brief-block h3{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}

.dive-brief-block ul{
  margin: 0;
  padding-left: 18px;
}

.dive-brief-block li{
  margin: 6px 0;
  font-size: 14px;
  color: #1f2a37;
}

.dive-brief-block li strong{
  font-weight: 700;
  color: #111827;
}

/* Simple bullet lists */
.dive-brief-bullets{
  margin: 0;
  padding-left: 18px;
}

.dive-brief-bullets li{
  margin: 6px 0;
  font-size: 14px;
  color: #1f2a37;
}

/* Callout */
.dive-brief-callout{
  margin-top: 22px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(51, 122, 183, 0.08);
  border: 1px solid rgba(51, 122, 183, 0.18);
}

.dive-brief-callout strong{
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #2c5f8f;
  margin-bottom: 6px;
}

.dive-brief-callout p{
  margin: 0;
  font-size: 14px;
  color: #1f2a37;
}

/* Links (if you add any) */
.dive-brief-page a{
  color: #337ab7;
  text-decoration: none;
  font-weight: 700;
}

.dive-brief-page a:hover{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px){
  .dive-brief-header h1{
    font-size: 24px;
  }

  .dive-brief-section h2{
    font-size: 16px;
  }

  .dive-brief-block{
    padding: 12px;
  }
}

/* Monthly Dive Briefs index page only */

.briefs-index-page{
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  line-height: 1.6;
  color: #1a1a1a;
}

.briefs-index-header h1{
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #00458b;
}

.briefs-index-header p{
  margin: 0;
  max-width: 760px;
  font-size: 14px;
  color: #6b7280;
}

.briefs-index-section{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e6e9ee;
}

.briefs-index-section h2{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #00458b;
}

/* Latest card */
.briefs-card{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: #111827;
}

.briefs-card:hover{
  background: #f7fafc;
  text-decoration: none;
}

.briefs-card-title{
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.1px;
  margin-bottom: 4px;
}

.briefs-card-sub{
  font-size: 13px;
  color: #6b7280;
}

.briefs-card-right{
  text-align: right;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}

.briefs-card-meta{
  font-size: 12px;
  color: #6b7280;
}

.briefs-card-cta{
  font-size: 13px;
  font-weight: 800;
  color: #337ab7;
}

/* Archive rows */
.briefs-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.briefs-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: #111827;
}

.briefs-row:hover{
  background: #f7fafc;
  text-decoration: none;
}

.briefs-row-title{
  font-weight: 800;
  font-size: 14px;
}

.briefs-row-meta{
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
}

/* Tip note */
.briefs-index-note{
  margin-top: 22px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(51, 122, 183, 0.08);
  border: 1px solid rgba(51, 122, 183, 0.18);
}

.briefs-index-note strong{
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #2c5f8f;
  margin-bottom: 6px;
}

.briefs-index-note p{
  margin: 0;
  font-size: 14px;
  color: #1f2a37;
}

/* Responsive */
@media (max-width: 640px){
  .briefs-index-header h1{
    font-size: 24px;
  }

  .briefs-index-section h2{
    font-size: 16px;
  }

  .briefs-card{
    flex-direction: column;
  }

  .briefs-card-right{
    text-align: left;
  }

  .briefs-row{
    flex-direction: column;
    align-items: flex-start;
  }

  .briefs-row-meta{
    white-space: normal;
  }
}

/* Deals & Alerts page only */

.alerts-page{
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Header */
.alerts-header h1{
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #00458b;
}

.alerts-header p{
  margin: 0 0 10px;
  max-width: 760px;
  font-size: 14px;
  color: #6b7280;
}

.alerts-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 12px;
  color: #6b7280;
}

/* Sections */
.alerts-section{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e6e9ee;
}

.alerts-section h2{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #00458b;
}

/* Cards */
.alerts-card{
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.alerts-help{
  margin: 0 0 12px;
  font-size: 14px;
  color: #374151;
}

/* Preferences */
.alerts-prefs{
  display: grid;
  gap: 10px;
}

.alerts-check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #1f2a37;
}

.alerts-check input{
  margin-top: 3px;
}

.alerts-actions{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.alerts-btn{
  background: #337ab7;
  color: #fff;
  border: 1px solid #2f6fa6;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.alerts-btn:hover{
  background: #2f6fa6;
}

.alerts-note{
  font-size: 12px;
  color: #6b7280;
}

/* Alert items */
.alerts-list{
  display: grid;
  gap: 12px;
}

.alert-item{
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.alert-item-featured{
  background: #f7fafc;
}

.alert-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.alert-title strong{
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 4px;
}

.alert-sub{
  font-size: 12px;
  color: #6b7280;
  max-width: 680px;
}

.alert-meta{
  text-align: right;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 2px;
}

.alert-pill{
  display: inline-flex;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(51, 122, 183, 0.10);
  border: 1px solid rgba(51, 122, 183, 0.18);
  color: #2c5f8f;
}

.alert-date{
  font-size: 12px;
  color: #6b7280;
}

.alert-body{
  margin-top: 10px;
}

.alert-body ul{
  margin: 0;
  padding-left: 18px;
}

.alert-body li{
  margin: 6px 0;
  font-size: 14px;
  color: #1f2a37;
}

.alert-body li strong{
  font-weight: 700;
  color: #111827;
}

.alert-links{
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.alert-link{
  color: #337ab7;
  font-weight: 800;
  text-decoration: none;
}

.alert-link:hover{
  text-decoration: underline;
}

/* Footer callout */
.alerts-callout{
  margin-top: 22px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(51, 122, 183, 0.08);
  border: 1px solid rgba(51, 122, 183, 0.18);
}

.alerts-callout strong{
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #2c5f8f;
  margin-bottom: 6px;
}

.alerts-callout p{
  margin: 0;
  font-size: 14px;
  color: #1f2a37;
}

/* Responsive */
@media (max-width: 640px){
  .alerts-header h1{ font-size: 24px; }
  .alerts-section h2{ font-size: 16px; }

  .alert-top{
    flex-direction: column;
  }

  .alert-meta{
    text-align: left;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}

.ccp-hub {
  padding: 32px 0;
}

.ccp-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.ccp-header h1 {
  font-size: 32px;
  margin: 0 0 8px;
}

.ccp-header p {
  margin: 0 0 20px;
  opacity: 0.85;
}

.ccp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.ccp-card {
  grid-column: span 12;
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.ccp-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,0,0,0.3);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.ccp-card--primary {
  border-color: rgba(0,0,0,0.35);
}

.ccp-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,0,0,0.05);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ccp-card__icon svg {
  width: 26px;
  height: 26px;
}

.ccp-card__body h2 {
  font-size: 18px;
  margin: 0 0 6px;
}

.ccp-card__body p {
  margin: 0 0 10px;
  opacity: 0.85;
}

.ccp-cta {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ccp-help {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
  .ccp-card {
    grid-column: span 6;
  }

  .ccp-header h1 {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ccp-card {
    transition: none;
  }
  .ccp-card:hover {
    transform: none;
  }
}

.svp-page {
  padding: 32px 0;
}

.svp-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

.svp-header h1 {
  font-size: 34px;
  margin: 0 0 8px;
}

.svp-header p {
  margin: 0 0 18px;
  opacity: 0.85;
  font-size: 16px;
  line-height: 1.5;
}

.svp-actions {
  margin-top: 14px;
}

.svp-note {
  margin: 10px 0 0;
  font-size: 14px;
  opacity: 0.75;
}

.svp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.18);
  color: inherit;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
  margin-right: 10px;
}

.svp-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(0,0,0,0.3);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.svp-btn--primary {
  background: #00bcd4;
  color: #fff;
  border-color: #00bcd4;
}

.svp-btn--ghost {
  background: transparent;
}

.svp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}

.svp-card {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}

.svp-card h2 {
  font-size: 18px;
  margin: 0 0 10px;
}

.svp-card ul {
  margin: 0;
  padding-left: 18px;
}

.svp-card li {
  margin: 6px 0;
  opacity: 0.9;
}

.svp-faq {
  margin-top: 18px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}

.svp-faq h2 {
  font-size: 18px;
  margin: 0 0 10px;
}

.svp-faq details {
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.svp-faq details:first-of-type {
  border-top: none;
}

.svp-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.svp-faq p {
  margin: 8px 0 0;
  opacity: 0.85;
}

.svp-actions--bottom {
  margin-top: 14px;
}

@media (min-width: 760px) {
  .svp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .svp-header h1 {
    font-size: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svp-btn {
    transition: none;
  }
  .svp-btn:hover {
    transform: none;
  }
}

/* =========================
   PRO Preview Page
   ========================= */

.pro-preview-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 16px 64px;
  color: #1f2a37;
  line-height: 1.6;
}

/* Header */
.pro-preview-header {
  max-width: 820px;
  margin-bottom: 28px;
}

.pro-preview-header h1 {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.pro-preview-header p {
  margin: 0 0 14px;
  font-size: 15px;
  color: #4b5563;
}

.pro-preview-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pro-preview-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00bcd4;
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

.pro-preview-btn:hover {
  background: #2f6fa6;
}

.pro-preview-note {
  font-size: 13px;
  color: #6b7280;
}

/* Shell */
.pro-preview-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  border: 1px solid #e6e9ee;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

/* Sidebar */
.pro-preview-sidebar {
  background: #f9fafb;
  padding: 18px 14px;
  border-right: 1px solid #e6e9ee;
}

.pro-preview-brand {
  margin-bottom: 18px;
}

.pro-preview-brand-title {
  font-weight: 900;
  font-size: 15px;
}

.pro-preview-brand-sub {
  font-size: 12px;
  color: #6b7280;
}

.pro-preview-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pro-preview-navgroup {
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #9ca3af;
}

.pro-preview-navitem {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  color: #4b5563;
  cursor: default;
}

.pro-preview-navitem.active {
  background: rgba(51, 122, 183, 0.12);
  color: #2f6fa6;
  font-weight: 800;
}

.pro-preview-navitem.indent {
  padding-left: 24px;
}

.lock {
  opacity: 0.6;
}

/* Main area */
.pro-preview-main {
  padding: 22px;
}

/* Welcome */
.pro-preview-welcome {
  margin-bottom: 20px;
}

.pro-preview-welcome h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
}

.pro-preview-welcome p {
  margin: 0;
  color: #4b5563;
}

/* Sections */
.pro-preview-section {
  margin-top: 22px;
}

.pro-preview-section-title {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 10px;
}

/* Updates */
.pro-preview-update {
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}

.pro-preview-update-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
}

.pro-preview-update-top span {
  font-size: 12px;
  color: #6b7280;
}

.pro-preview-update p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #374151;
}

.pro-preview-link {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #9ca3af;
}

/* Tiles */
.pro-preview-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.pro-preview-tile {
  border: 1px solid #e6e9ee;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}

.pro-preview-tile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.pro-preview-tile-title {
  font-weight: 900;
  font-size: 14px;
}

.pro-preview-lockpill {
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(51, 122, 183, 0.1);
  color: #2f6fa6;
}

.pro-preview-tile p {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

/* Bottom CTA */
.pro-preview-bottomcta {
  margin-top: 28px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(51, 122, 183, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pro-preview-bottomcta-text strong {
  display: block;
  font-size: 15px;
}

.pro-preview-bottomcta-text span {
  font-size: 13px;
  color: #4b5563;
}

/* Responsive */
@media (max-width: 900px) {
  .pro-preview-shell {
    grid-template-columns: 1fr;
  }

  .pro-preview-sidebar {
    border-right: none;
    border-bottom: 1px solid #e6e9ee;
  }
}

.pro-included-note {
  margin-top: 14px;
  font-size: 14px;
  color: #4b5563;
}

.pro-included-note strong {
  color: #1f2a37;
}

.pro-link {
  margin-left: 6px;
  font-weight: 600;
  color: #337ab7;
  text-decoration: none;
}

.pro-link:hover {
  text-decoration: underline;
}

/*index pro section*/
.homepage-pro-promo {
  padding: 26px 0;
  background: #f7fafc;
  text-align: center;
}

.homepage-pro-promo h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111827;
}

.homepage-pro-promo .subtitle {
  color: #4b5563;
  font-size: 16px;
  margin-bottom: 28px;
}

.pro-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.pro-benefit {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e6e9ee;
}

.pro-benefit strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f2a3d;
}

.pro-benefit p {
  font-size: 14px;
  color: #4b5563;
}

.pro-cta .btn-primary {
  background: #337ab7;
  border-color: #337ab7;
  color: #fff;
  padding: 12px 22px;
  font-weight: 700;
}

.pro-cta .btn-link {
  margin-left: 16px;
  font-size: 14px;
  color: #337ab7;
}

/*confirmation page*/
.pro-success-next {
  margin-top: 40px;
  text-align: center;
}

.pro-success-next h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}

.pro-success-next p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 20px;
}

.btn-pro-primary {
  display: inline-block;
  background: #4ac6d2;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.btn-pro-primary:hover {
  background: #4ac6d2;
}

.pro-success-note {
  margin-top: 12px;
  font-size: 13px;
  color: #6b7280;
}

/*support pages*/
/* Base layout */
.pro-support-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 16px 64px;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2a37;
  line-height: 1.6;
}

/* Breadcrumb */
.pro-support-breadcrumb {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

.pro-support-breadcrumb a {
  color: #337ab7;
  text-decoration: none;
}

.pro-support-breadcrumb a:hover {
  text-decoration: underline;
}

/* Headings */
.pro-support-wrap h1 {
  font-size: 30px;
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.pro-support-subhead {
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 15px;
  max-width: 780px;
}

.pro-support-wrap h2 {
  margin: 28px 0 8px;
  font-size: 20px;
  font-weight: 800;
  padding-top: 10px;
  border-top: 1px solid #eef0f3;
}

.pro-support-wrap h3 {
  margin: 14px 0 6px;
  font-size: 16px;
  font-weight: 800;
}

/* Paragraphs and lists */
.pro-support-wrap p {
  margin: 8px 0;
}

.pro-support-wrap ol,
.pro-support-wrap ul {
  margin: 8px 0 10px;
  padding-left: 20px;
}

.pro-support-wrap li {
  margin: 6px 0;
}

/* Callout boxes */
.pro-support-callout {
  border: 1px solid #e6e9ee;
  border-left: 4px solid #337ab7;
  border-radius: 12px;
  padding: 14px 14px 12px;
  background: #f9fbff;
  margin: 18px 0 22px;
}

.pro-support-callout strong {
  display: block;
  margin-bottom: 6px;
}

.pro-support-callout p {
  margin: 0;
  color: #374151;
  font-size: 14px;
}

/* Table of contents */
.pro-support-toc {
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  padding: 14px;
  background: #f9fafb;
  margin: 18px 0 26px;
}

.pro-support-toc-title {
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 10px;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pro-support-toc a {
  color: #337ab7;
  text-decoration: none;
}

.pro-support-toc a:hover {
  text-decoration: underline;
}

/* Notes and tips */
.pro-support-note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  border-radius: 12px;
  padding: 12px;
  margin: 12px 0;
  font-size: 14px;
}

.pro-support-tip {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #14532d;
  border-radius: 12px;
  padding: 12px;
  margin: 12px 0;
  font-size: 14px;
}

/* Code / inline blocks */
.pro-support-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
               "Liberation Mono", "Courier New", monospace;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  overflow-x: auto;
  margin: 10px 0;
}

/* Buttons */
.pro-support-btn {
  display: inline-block;
  background: #337ab7;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 10px;
  margin-top: 8px;
}

.pro-support-btn:hover {
  background: #2f6fa6;
}

/* Footer / help links */
.pro-support-footer {
  margin-top: 34px;
  border-top: 1px solid #eef0f3;
  padding-top: 16px;
  font-size: 14px;
  color: #4b5563;
}

.pro-support-footer a {
  color: #337ab7;
  text-decoration: none;
  font-weight: 700;
}

.pro-support-footer a:hover {
  text-decoration: underline;
}

/* Small text */
.pro-support-small {
  font-size: 13px;
  color: #6b7280;
}
