/*
Theme Name: DolphinParents V2
Theme URI: https://dolphinparents.com
Author: DolphinParents
Description: Modern redesign of the DolphinParents college planning platform.
Version: 2.1
License: GNU General Public License v2 or later
Text Domain: dolphinparents-v2
*/

/* =============================================
   NUCLEAR HEADER RESET
   Hides every possible old-theme header/nav
   selector so nothing leaks through.
   ============================================= */
#masthead,
#site-header,
#header,
.site-header:not(.dp-header),
.page-header:not(.dp-page-header),
.main-navigation,
.primary-navigation,
#primary-navigation,
#main-navigation,
.nav-primary,
.header-navigation,
.header-nav,
.header-menu,
.top-navigation,
.navbar,
.navbar-default,
header nav:not(.dp-nav),
header > nav:not(.dp-nav),
.site-branding,
.header-branding,
.header-logo:not(.dp-logo),
#et-top-navigation,
#top-header,
.et_header_style_centered,
.astra-header,
.ast-header-break-point,
.ocean-main-menu,
.fl-page-header,
.fl-page-nav,
[class*="header-container"]:not(.dp-header__inner),
[class*="nav-container"]:not(.dp-header__inner),
[id*="header-nav"],
[id*="main-nav"],
[id*="primary-nav"],
[class*="header-wrapper"]:not(.dp-header),
/* Elementor header */
.elementor-location-header,
section.elementor-section[data-element_type="section"].dp-elementor-header-off {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  	--dp-dark:       #1a3d54;
    --dp-teal:       steelblue;
    --dp-teal-light: #568dba;
    --dp-teal-pale:  #e8f6f8;
    --dp-accent:     #f0a500;
    --dp-text:       #1e2d3d;
    --dp-muted:      #5a6a7a;
    --dp-bg:         #f5f8fa;
    --dp-white:      #ffffff;
    --dp-border:     steelblue;
    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --shadow-sm:     0 2px 8px rgba(13,33,54,.07);
    --shadow-md:     0 6px 24px rgba(13,33,54,.12);
    --shadow-lg:     0 16px 48px rgba(13,33,54,.16);
    --font-display:  Space Grotesk,system-ui,sans-serif;
    --font-body:     'DM Sans', system-ui, sans-serif;
    --transition:    0.25s cubic-bezier(.4,0,.2,1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::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.65;
    color: var(--dp-text);
    background: var(--dp-white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    color: var(--dp-dark);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--dp-teal);
    color: var(--dp-white);
    box-shadow: 0 4px 14px rgba(26,122,138,.35);
}
.btn-primary:hover {
    background: var(--dp-teal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26,122,138,.4);
}
.btn-outline {
    background: transparent;
    color: var(--dp-dark);
    border: 2px solid var(--dp-border);
}
.btn-outline:hover {
    border-color: var(--dp-teal);
    color: var(--dp-teal);
    transform: translateY(-2px);
}

/* =============================================
   BADGE / PILL
   ============================================= */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    background: var(--dp-teal-pale);
    color: var(--dp-teal);
    border: 1px solid rgba(26,122,138,.2);
}
.badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--dp-teal);
}

/* =============================================
   DP HEADER  (scoped to .dp-header only)
   ============================================= */
.dp-header {
    position: sticky;
    top: 0;
    z-index: 99999;          /* above Elementor, WP Bar, everything */
    width: 100%;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 5px solid var(--dp-border);
    transition: box-shadow var(--transition);
}
.dp-header.scrolled {
    box-shadow: 0 4px 24px rgba(13,33,54,.09);
}

.dp-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    height: 70px;
    display: flex;
    align-items: center;
}

/* Logo */
.dp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 36px;
}
.dp-logo img { height: 40px; width: auto; }
.dp-logo__icon {
    width: 40px; height: 40px;
    background: var(--dp-teal);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26,122,138,.3);
}
.dp-logo__text {
    font-family: var(--font-display);
    font-size: 21px;
    color: var(--dp-dark);
    line-height: 1;
    letter-spacing: -.01em;
}
.dp-logo__text em {
    font-style: normal;
    color: var(--dp-teal);
}

/* Nav */
.dp-nav {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 2px;
    flex: 1;
}

/* ── Top-level <ul> ── */
.dp-nav > ul.dp-nav__list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0; padding: 0;
}

/* ── Every <li> is relative so dropdown positions under it ── */
.dp-nav__list li {
    position: relative;
}

/* ── Top-level links ── */
.dp-nav__list > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--dp-muted);
    text-decoration: none;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.dp-nav__list > li > a:hover,
.dp-nav__list > li.current-menu-item > a,
.dp-nav__list > li.current_page_item > a,
.dp-nav__list > li.current-menu-ancestor > a {
    color: var(--dp-teal);
    background: var(--dp-teal-pale);
}

/* Arrow indicator for items that have children */
.dp-nav__list > li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.55;
    transition: transform var(--transition);
    flex-shrink: 0;
}
.dp-nav__list > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
    opacity: 1;
}

/* ── SUB-MENU DROPDOWN ── */
.dp-nav__list .sub-menu {
    display: none;                          /* hidden by default */
    position: absolute;
    top: calc(100%);
    left: 0;
    min-width: 200px;
    background: var(--dp-white);
    border: 1px solid var(--dp-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 6px;
    list-style: none;
    margin: 0;
    z-index: 10000;
    /* Smooth fade-down */
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
}

/* Show on hover — CSS only, no JS needed */
.dp-nav__list li:hover > .sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Sub-menu links */
.dp-nav__list .sub-menu li a {
    display: block;
    padding: 9px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dp-text);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.dp-nav__list .sub-menu li a:hover,
.dp-nav__list .sub-menu li.current-menu-item > a {
    color: var(--dp-teal);
    background: var(--dp-teal-pale);
}

/* 3rd level: nest to the right */
.dp-nav__list .sub-menu .sub-menu {
    top: 0;
    left: calc(100% + 4px);
}

/* Actions */
.dp-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 20px;
}
.dp-header__signin {
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dp-muted);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.dp-header__signin:hover {
    color: var(--dp-teal);
    background: var(--dp-teal-pale);
}
.dp-header__cta {
    padding: 10px 22px;
    background: var(--dp-teal);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(26,122,138,.3);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}
.dp-header__cta:hover {
    background: var(--dp-teal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26,122,138,.38);
}

/* Hamburger */
.dp-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    margin-left: 12px;
    flex-shrink: 0;
}
.dp-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--dp-dark);
    border-radius: 2px;
    transition: all .3s ease;
    transform-origin: center;
}
.dp-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dp-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.dp-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(160deg, #f0f8fa 0%, #ffffff 60%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,122,138,.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,122,138,.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge { margin-bottom: 24px; }
.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    max-width: 760px;
    margin: 0 auto 20px;
    line-height: 1.1;
}
.hero h1 em { font-style: normal; color: var(--dp-teal); }
.hero-sub {
    font-size: 18px;
    color: var(--dp-muted);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--dp-muted);
}
.trust-item svg { width: 16px; height: 16px; color: var(--dp-teal); flex-shrink: 0; }

/* Dolphin AI Widget */
.dolphin-ai-widget {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.dolphin-ai-label {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dp-muted);
    font-weight: 600;
}
.dolphin-ai-orb {
    width: 72px; height: 72px;
    background: var(--dp-teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 12px rgba(26,122,138,.1), 0 8px 24px rgba(26,122,138,.3);
    cursor: pointer;
    transition: all var(--transition);
    animation: pulse 3s infinite;
}
.dolphin-ai-orb:hover {
    transform: scale(1.08);
    box-shadow: 0 0 0 16px rgba(26,122,138,.12), 0 12px 32px rgba(26,122,138,.4);
}
.dolphin-ai-orb svg { width: 32px; height: 32px; color: #fff; }
.dolphin-ai-name { font-size: 15px; font-weight: 600; color: var(--dp-dark); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 12px rgba(26,122,138,.1), 0 8px 24px rgba(26,122,138,.3); }
    50%       { box-shadow: 0 0 0 20px rgba(26,122,138,.05), 0 8px 24px rgba(26,122,138,.3); }
}

/* =============================================
   PORTALS SECTION
   ============================================= */
.portals-section {
    padding: 96px 0;
    background: var(--dp-bg);
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .badge { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 16px; }
.section-head p { font-size: 17px; color: var(--dp-muted); max-width: 520px; margin: 0 auto; }

.portals-row-top    { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.portals-row-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }

.portal-card {
    background: var(--dp-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--dp-border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.portal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portal-img {
    width: 100%; height: 200px;
    background: linear-gradient(135deg, var(--dp-teal-pale), #d0eef3);
    display: flex; align-items: center; justify-content: center;
    font-size: 56px;
}
.portal-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.portal-body h3 { font-size: 20px; margin-bottom: 10px; }
.portal-body p { font-size: 14px; color: var(--dp-muted); flex: 1; margin-bottom: 16px; line-height: 1.6; }
.portal-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dp-teal); }

/* =============================================
   WHY SECTION
   ============================================= */
.why-section { padding: 96px 0; background: var(--dp-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-text .badge { margin-bottom: 20px; }
.why-text h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 20px; }
.why-text > p { font-size: 16px; color: var(--dp-muted); margin-bottom: 36px; line-height: 1.75; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: var(--dp-teal-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.why-feature-text h4 { font-size: 15px; font-family: var(--font-body); font-weight: 700; margin-bottom: 4px; }
.why-feature-text p  { font-size: 14px; color: var(--dp-muted); }
.why-visual { position: relative; }
.why-visual-card { background: var(--dp-dark); border-radius: var(--radius-lg); padding: 36px; color: #fff; }
.why-visual-card h3 { font-family: var(--font-body); font-size: 18px; font-weight: 600; margin-bottom: 24px; color: #fff; }
.stat-row { display: flex; flex-direction: column; gap: 16px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 8px; display: flex; justify-content: space-between; }
.stat-bar { height: 8px; background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; }
.stat-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--dp-teal), var(--dp-teal-light)); }
.floating-badge {
    position: absolute;
    top: -20px; right: -20px;
    background: var(--dp-accent);
    color: var(--dp-dark);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-weight: 700; font-size: 14px;
    box-shadow: var(--shadow-md);
}
.floating-badge span { display: block; font-size: 26px; font-family: var(--font-display); }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section { background: var(--dp-dark); padding: 72px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h2 { font-size: clamp(24px, 3vw, 36px); color: #fff; margin-bottom: 8px; }
.newsletter-text h2 span { color: rgb(36, 168, 196); }
.newsletter-text p { font-size: 14px; color: rgba(255,255,255,.55); }
.newsletter-form { display: flex; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-md); min-width: 360px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: none; font-size: 14px; font-family: var(--font-body); outline: none; background: rgba(255,255,255,.1); color: #fff; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button { padding: 14px 22px; background: var(--dp-teal); color: #fff; border: none; font-weight: 600; font-size: 14px; cursor: pointer; white-space: nowrap; font-family: var(--font-body); transition: background var(--transition); }
.newsletter-form button:hover { background: var(--dp-teal-light); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #0d2c3f; padding: 64px 0 32px; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin: 16px 0 24px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,.6); transition: all var(--transition); text-decoration: none; }
.social-btn:hover { background: var(--dp-teal); color: #fff; }
.footer-col h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgb(36, 168, 196); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: #fff; transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.contact-item { display: flex; gap: 10px; align-items: flex-start; }
.contact-item-icon { font-size: 15px; margin-top: 1px; }
.contact-item-text { font-size: 13px; line-height: 1.5; }
.contact-item-text strong { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255, 255, 255, 0.5); margin-bottom: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.45); margin-left: 16px; transition: color var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp .65s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .45s; }
.delay-5 { animation-delay: .6s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .portals-row-bottom { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Admin notice when no menu is assigned yet */
.dp-nav__notice {
    font-size: 13px;
    color: var(--dp-teal);
    background: var(--dp-teal-pale);
    border: 1px dashed var(--dp-teal);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}
.dp-nav__notice a { color: var(--dp-teal); font-weight: 600; text-decoration: underline; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    /* Hide desktop nav & sign-in, show hamburger */
    .dp-nav,
    .dp-header__signin { display: none; }
    .dp-hamburger { display: flex; }

    /* Open state — full-width drawer */
    .dp-nav.is-open {
        display: block;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--dp-border);
        padding: 12px 16px 20px;
        box-shadow: 0 8px 24px rgba(13,33,54,.1);
        z-index: 99998;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    /* Top-level list */
    .dp-nav.is-open .dp-nav__list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 2px;
    }
    .dp-nav.is-open .dp-nav__list > li { width: 100%; }
    .dp-nav.is-open .dp-nav__list > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 11px 14px;
        font-size: 15px;
        border-radius: var(--radius-sm);
    }

    /* Mobile sub-menus: shown as indented accordion on tap */
    .dp-nav.is-open .sub-menu {
        position: static !important;
        display: none;
        opacity: 1 !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: var(--dp-bg) !important;
        border-radius: var(--radius-sm) !important;
        padding: 4px 0 4px 12px !important;
        margin: 2px 0 4px !important;
        pointer-events: auto !important;
    }
    .dp-nav.is-open .menu-item-has-children.is-open > .sub-menu {
        display: block;
    }
    .dp-nav.is-open .sub-menu li a {
        padding: 9px 14px;
        font-size: 13.5px;
        display: block;
        color: var(--dp-text);
        border-radius: var(--radius-sm);
    }
    .dp-nav.is-open .sub-menu li a:hover {
        color: var(--dp-teal);
        background: var(--dp-teal-pale);
    }

    /* other page sections */
    .portals-row-top,
    .portals-row-bottom { grid-template-columns: 1fr; }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { min-width: unset; width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 10px; }
}

/* =============================================
   FOOTER DYNAMIC MENUS
   ============================================= */

/* Footer column <ul> from wp_nav_menu() */
.footer-menu-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-menu-list li a {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-menu-list li a:hover { color: #fff; }
/* Hide any sub-menus in footer — stays flat */
.footer-menu-list .sub-menu { display: none !important; }

/* Footer bottom legal bar from wp_nav_menu() */
.footer-legal-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
.footer-legal-list li a {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    padding: 0 10px;
    border-right: 1px solid rgba(255,255,255,.15);
    transition: color var(--transition);
}
.footer-legal-list li:last-child a { border-right: none; }
.footer-legal-list li a:hover { color: #fff; }

/* Footer logo variant (dark background) */
.dp-logo--footer .dp-logo__text { color: #fff; }
.dp-logo--footer .dp-logo__text em { color: var(--dp-teal-light); }

/* Admin notice in footer */
.dp-footer-notice {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    border: 1px dashed rgba(255,255,255,.2);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
}
.dp-footer-notice a { color: var(--dp-teal-light); text-decoration: underline; }

/* =============================================
   APP DOWNLOAD BANNER
   ============================================= */
.footer-app-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    margin: 48px 0 0;
    flex-wrap: wrap;
}
.footer-app-text h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.footer-app-text h3 span { color: rgb(36, 168, 196); }
.footer-app-text p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
}
.footer-app-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Store badge buttons */
.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #111;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: all var(--transition);
    min-width: 160px;
}
.app-store-btn:hover {
    background: #1a1a1a;
    border-color: rgba(255,255,255,.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.app-store-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.app-store-btn__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.app-store-btn__text small {
    font-size: 10px;
    color: rgba(255,255,255,.6);
    letter-spacing: .03em;
    text-transform: uppercase;
}
.app-store-btn__text strong {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* Social icons — proper SVG sizing */
.social-btn svg { display: block; }

/* Contact icon color */
.contact-item-icon svg { color: var(--dp-teal-light); flex-shrink: 0; }
.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .footer-app-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }
    .footer-app-buttons { width: 100%; }
    .app-store-btn { flex: 1; justify-content: center; min-width: 130px; }
}
.portal-img-wrap {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #c8e6ea;
    flex-shrink: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.portal-img-wrap img {
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    transition: transform 0.45s ease;
}
.portal-card:hover .portal-img-wrap img {
    transform: scale(1.04);
}
.portal-img {
    display: none;
}
/* =============================================
   ABOUT PAGE
   ============================================= */
 
/* ── Hero ── */
.about-hero {
    padding: 100px 0 80px;
    background: linear-gradient(160deg, #eaf4f7 0%, #f5f8fa 50%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,122,138,.07) 0%, transparent 70%);
    pointer-events: none;
}
.about-hero__badge { margin-bottom: 24px; }
.about-hero__title {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 400;
    max-width: 820px;
    margin: 0 auto 24px;
    line-height: 1.1;
    color: var(--dp-dark);
}
.about-hero__title em {
    font-style: normal;
    color: var(--dp-teal);
}
.about-hero__sub {
    font-size: 18px;
    color: var(--dp-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}
 
/* ── Mission cards ── */
.about-mission {
    padding: 80px 0;
    background: var(--dp-white);
}
.about-mission__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.about-mission__card {
    background: var(--dp-bg);
    border: 1px solid var(--dp-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition);
}
.about-mission__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--dp-teal);
}
.about-mission__icon {
    width: 52px; height: 52px;
    background: var(--dp-teal-pale);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--dp-teal);
    margin-bottom: 20px;
}
.about-mission__card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.about-mission__card p {
    font-size: 15px;
    color: var(--dp-muted);
    line-height: 1.7;
}
 
/* ── Stats band ── */
.about-stats {
    background: var(--dp-dark);
    padding: 60px 0;
}
.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.about-stats__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,.1);
}
.about-stats__item:last-child { border-right: none; }
.about-stats__num {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--dp-teal-light);
    line-height: 1;
}
.about-stats__label {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}
 
/* ── Meet the Team ── */
.about-team {
    padding: 96px 0;
    background: var(--dp-bg);
}
.about-team .section-head h2 em {
    font-style: normal;
    color: var(--dp-teal);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.team-card {
    background: var(--dp-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--dp-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    text-align: center;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.team-card__photo-wrap {
    width: 120px; height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 32px auto 0;
    background: var(--dp-teal-pale);
    border: 4px solid var(--dp-teal-pale);
    flex-shrink: 0;
}
.team-card__photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.team-card__initials {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--dp-teal);
    font-family: var(--font-display);
    background: var(--dp-teal-pale);
}
.team-card__body {
    padding: 20px 24px 28px;
}
.team-card__name {
    font-size: 17px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--dp-dark);
    margin-bottom: 5px;
}
.team-card__role {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--dp-teal);
    margin-bottom: 14px;
}
.team-card__bio {
    font-size: 13.5px;
    color: var(--dp-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}
.team-card__linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dp-teal);
    text-decoration: none;
    transition: color var(--transition);
}
.team-card__linkedin:hover { color: var(--dp-teal-light); }
 
/* ── About CTA ── */
.about-cta {
    background: var(--dp-teal);
    padding: 80px 0;
}
.about-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.about-cta__text h2 {
    font-size: clamp(24px, 3vw, 38px);
    color: #fff;
    margin-bottom: 10px;
}
.about-cta__text p {
    font-size: 16px;
    color: rgba(255,255,255,.75);
}
.about-cta__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.btn-white {
    background: #fff;
    color: var(--dp-teal);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn-white:hover {
    background: var(--dp-teal-pale);
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
    font-weight: 600;
}
.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
}
 
/* ── Responsive ── */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    .about-stats__item:nth-child(3),
    .about-stats__item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
    .about-mission__grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .about-cta__inner { flex-direction: column; text-align: center; }
    .about-cta__actions { justify-content: center; }
}
@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
    .about-stats__grid { grid-template-columns: 1fr 1fr; }
}
/* =============================================
   ABOUT PAGE  (ab- prefix, no conflicts)
   ============================================= */
 
/* Shared: pill badge */
.ab-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(26,122,138,.3);
    background: rgba(26,122,138,.06);
    color: var(--dp-teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
 
/* Shared: fade-up animation triggered by IntersectionObserver */
.ab-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.ab-fade-up.is-visible        { opacity: 1; transform: translateY(0); }
.ab-delay-1.is-visible        { transition-delay: .08s; }
.ab-delay-2.is-visible        { transition-delay: .16s; }
.ab-delay-3.is-visible        { transition-delay: .24s; }
 
/* Shared: blob decorations */
.ab-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(26,122,138,.10);
    filter: blur(80px);
    pointer-events: none;
}
.ab-blob--tr { width: 480px; height: 480px; top: -128px; right: -128px; }
.ab-blob--bl { width: 420px; height: 420px; bottom: -128px; left: -128px; }
 
/* Shared: section title */
.ab-section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--dp-dark);
    margin: 20px 0 0;
    line-height: 1.1;
}
.ab-section-title span { color: var(--dp-teal); }
 
/* ── HERO ── */
.ab-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 80px;
    text-align: center;
    background: linear-gradient(160deg, #eaf4f7 0%, #f5f8fa 55%, #ffffff 100%);
}
.ab-hero__inner {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}
.ab-hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    color: var(--dp-dark);
    margin: 24px 0 0;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.ab-hero__title span { color: var(--dp-teal); }
.ab-hero__sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--dp-muted);
    max-width: 580px;
    margin: 20px auto 0;
    line-height: 1.75;
}
 
/* ── MEET THE TEAM ── */
.ab-team {
    padding: 88px 0;
    background: var(--dp-bg);
    text-align: center;
}
.ab-team__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}
.ab-team__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
}
 
.ab-team-card {
    position: relative;
    background: var(--dp-white);
    border: 1px solid var(--dp-border);
    border-radius: 20px;
    padding: 16px 16px 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s ease, transform .3s ease;
    overflow: hidden;
}
.ab-team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
/* Top shine line */
.ab-team-card__shine {
    position: absolute;
    top: 0; left: 16px; right: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26,122,138,.4), transparent);
}
 
/* Circular photo */
.ab-team-card__photo-wrap {
    width: 128px; height: 128px;
    border-radius: 50%;
    overflow: hidden;
    margin: 16px auto 0;
    background: var(--dp-teal-pale);
    border: 4px solid rgba(26,122,138,.12);
    box-shadow: 0 0 0 4px rgba(26,122,138,.08);
}
.ab-team-card__photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .5s ease;
}
.ab-team-card:hover .ab-team-card__photo { transform: scale(1.05); }
 
.ab-team-card__body { padding-top: 16px; }
.ab-team-card__body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--dp-dark);
    margin-bottom: 4px;
}
.ab-team-card__body p {
    font-size: 13px;
    font-style: italic;
    color: var(--dp-muted);
    margin: 0;
}
 
/* ── FOUNDER / CRO NOTES ── */
.ab-note {
    padding: 88px 0;
}
.ab-note--alt-bg { background: rgba(26,122,138,.04); }
.ab-note__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.ab-note--reverse .ab-note__inner {
    /* photo first on desktop, text second */
}
 
/* Text side */
.ab-note__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 800;
    color: var(--dp-dark);
    margin: 20px 0 0;
    line-height: 1.15;
}
.ab-note__title span { color: var(--dp-teal); }
.ab-note__body {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ab-note__body p {
    font-size: 15px;
    color: var(--dp-muted);
    line-height: 1.78;
    margin: 0;
}
.ab-note__sig {
    margin-top: 32px;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--dp-teal);
    font-weight: 600;
}
 
/* Photo side */
.ab-note__photo-wrap {
    position: relative;
}
.ab-note__photo-glow {
    position: absolute;
    inset: -16px;
    background: linear-gradient(135deg, rgba(26,122,138,.2), rgba(26,122,138,.05));
    border-radius: 32px;
    filter: blur(32px);
    z-index: 0;
}
.ab-note__photo-glow--left {
    background: linear-gradient(225deg, rgba(26,122,138,.2), rgba(26,122,138,.05));
}
.ab-note__photo-frame {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--dp-border);
    box-shadow: 0 24px 60px rgba(26,122,138,.12);
}
.ab-note__photo-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
    display: block;
}
 
/* Extended paragraphs below CRO grid */
.ab-note__extended {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ab-note__extended p {
    font-size: 15px;
    color: var(--dp-muted);
    line-height: 1.78;
    margin: 0;
}
 
/* ── CTA BANNER ── */
.ab-cta {
    padding: 80px 24px;
}
.ab-cta__inner {
    position: relative;
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dp-teal) 0%, var(--dp-teal-light) 100%);
    border-radius: 28px;
    padding: 56px 48px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(26,122,138,.25);
}
.ab-cta__blob {
    position: absolute;
    width: 288px; height: 288px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    filter: blur(60px);
    pointer-events: none;
}
.ab-cta__blob--tr { top: -80px; right: -80px; }
.ab-cta__blob--bl { bottom: -80px; left: -80px; }
.ab-cta__title {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -.01em;
}
.ab-cta__sub {
    position: relative;
    font-size: 16px;
    color: rgba(255,255,255,.85);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.ab-cta__actions {
    position: relative;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.ab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all .25s ease;
    cursor: pointer;
}
.ab-btn--white {
    background: #fff;
    color: var(--dp-teal);
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.ab-btn--white:hover { transform: scale(1.03); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.ab-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
}
.ab-btn--ghost:hover { background: rgba(255,255,255,.1); }
 
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .ab-note__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ab-note--reverse .ab-note__photo-wrap { order: -1; }
    .ab-note__photo-frame img { height: 360px; }
    .ab-note__extended { margin-top: 24px; }
}
@media (max-width: 640px) {
    .ab-team__grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
    .ab-cta__inner { padding: 36px 24px; }
    .ab-note__inner { padding: 0 20px; }
    .ab-note__extended { padding: 0 20px; }
}
/* =============================================
   PRICING PAGE  (pr- prefix)
   ============================================= */

/* ── Hero ── */
.pr-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dp-teal) 0%, hsl(199,67%,28%) 50%, hsl(215,55%,18%) 100%);
    color: #fff;
    text-align: center;
    padding: 88px 24px 72px;
}
.pr-hero__radial {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at top, rgba(255,255,255,.07) 0%, transparent 60%);
    pointer-events: none;
}
.pr-hero__inner { position: relative; max-width: 860px; margin: 0 auto; }
.pr-hero__pill {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    font-size: 11px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: #fff; margin-bottom: 24px;
}
.pr-hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 20px;
}
.pr-hero__title em { font-style: italic; color: #67e8f9; }
.pr-hero__sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,.75);
    max-width: 560px; margin: 0 auto 28px;
    line-height: 1.7;
}
.pr-hero__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.pr-trust-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px;
    border-radius: 50px;
    background: rgba(16,185,129,.15);
    border: 1px solid rgba(110,231,183,.3);
    color: #d1fae5;
    font-size: 12px; font-weight: 500;
}

/* ── Sticky tabs ── */
.pr-tabs-bar {
    position: sticky;
    top: 70px;
    z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dp-border);
}
.pr-tabs {
    max-width: 1100px; margin: 0 auto;
    padding: 14px 24px;
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 8px;
}
.pr-tab {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13.5px; font-weight: 600;
    border: 1.5px solid var(--dp-border);
    background: var(--dp-white);
    color: var(--dp-muted);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
    display: inline-flex; align-items: center; gap: 6px;
}
.pr-tab:hover { border-color: var(--dp-teal); color: var(--dp-teal); }
.pr-tab--active {
    background: var(--dp-teal);
    border-color: var(--dp-teal);
    color: #fff;
    box-shadow: 0 4px 14px rgba(26,122,138,.3);
}
.pr-tab__soon {
    display: inline-block;
    background: #fef3c7; color: #92400e;
    border-radius: 50px;
    padding: 1px 7px;
    font-size: 10px; font-weight: 700;
}

/* ── Section show/hide ── */
.pr-sections { background: var(--dp-bg); }
.pr-section { display: none; padding: 60px 24px 80px; }
.pr-section--active { display: block; }

.pr-section__head {
    text-align: center; max-width: 680px;
    margin: 0 auto 48px;
}
.pr-section__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800; color: var(--dp-dark);
    margin-bottom: 12px;
}
.pr-section__sub { font-size: 15px; color: var(--dp-muted); line-height: 1.75; }
.pr-section__sub2 { font-size: 13px; color: var(--dp-teal); font-weight: 600; margin-top: 10px; }

/* Coming soon badge */
.pr-coming-soon {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 16px;
    background: #fef3c7; color: #92400e;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
}
.pr-coming-soon__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #f59e0b;
    animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── Card grid ── */
.pr-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; gap: 24px;
    align-items: stretch;
}
.pr-grid--2 { grid-template-columns: repeat(2,1fr); max-width: 860px; }
.pr-grid--3 { grid-template-columns: repeat(3,1fr); }
.pr-grid--disabled { opacity: .55; pointer-events: none; }

/* ── Price card ── */
.pr-card {
    position: relative;
    border-radius: 18px;
    padding: 28px;
    display: flex; flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}
.pr-card:hover { transform: translateY(-4px); }

.pr-card--default {
    background: var(--dp-white);
    border: 1px solid var(--dp-border);
}
.pr-card--default:hover { box-shadow: 0 20px 48px rgba(26,122,138,.08); }

.pr-card--featured {
    background: linear-gradient(135deg, var(--dp-teal) 0%, hsl(199,67%,28%) 100%);
    border: none;
    box-shadow: 0 20px 48px rgba(26,122,138,.25);
    color: #fff;
}
.pr-card--scale {
    background: linear-gradient(135deg, hsl(210,45%,22%) 0%, hsl(215,55%,10%) 100%);
    border: none;
    box-shadow: 0 20px 48px rgba(0,0,0,.3);
    color: #fff;
}

/* Popular badge */
.pr-card__popular {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #06b6d4; color: #fff;
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(6,182,212,.35);
}

/* Name */
.pr-card__name {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--dp-teal); margin-bottom: 10px;
}
.pr-card__name--light { color: rgba(255,255,255,.7); }

/* Seats badge */
.pr-card__seats {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(26,122,138,.1); color: var(--dp-teal);
    border-radius: 50px; padding: 4px 12px;
    font-size: 12px; font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
}
.pr-card__seats--light { background: rgba(255,255,255,.15); color: #fff; }

/* Price */
.pr-card__price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pr-card__price {
    font-family: var(--font-display);
    font-size: 52px; font-weight: 700;
    color: var(--dp-dark); line-height: 1;
}
.pr-card__price--light { color: #fff; }
.pr-card__suffix { font-size: 14px; font-weight: 500; color: var(--dp-muted); }
.pr-card__suffix--light { color: rgba(255,255,255,.7); }
.pr-card__annual { font-size: 11.5px; color: var(--dp-muted); margin-bottom: 8px; }
.pr-card__annual--light { color: rgba(255,255,255,.55); }
.pr-card__desc { font-size: 13.5px; color: var(--dp-muted); line-height: 1.65; margin-bottom: 16px; }
.pr-card__desc--light { color: rgba(255,255,255,.7); }
.pr-card__divider { border: none; border-top: 1px solid var(--dp-border); margin-bottom: 18px; }
.pr-card__divider--light { border-color: rgba(255,255,255,.15); }

/* Feature list */
.pr-feat-list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pr-feat-row { display: flex; align-items: flex-start; gap: 8px; }
.pr-feat-icon { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.pr-feat-text { font-size: 13.5px; color: var(--dp-text); line-height: 1.4; }
.pr-feat-text--light { color: #fff; }
.pr-feat-text--dim { color: var(--dp-muted); opacity: .6; }
.pr-feat-text--dim-light { color: rgba(255,255,255,.35); }
.pr-feat-sub { display: block; font-size: 11.5px; color: var(--dp-muted); margin-top: 2px; font-weight: 400; }
.pr-feat-sub--light { color: rgba(255,255,255,.55); }

/* Feature badges */
.pr-badge {
    display: inline-block; border-radius: 50px;
    padding: 1px 7px; font-size: 10px; font-weight: 700;
    vertical-align: middle; margin-left: 5px;
}
.pr-badge--soon { background: #fef3c7; color: #92400e; }
.pr-badge--road { background: #e0e7ff; color: #4338ca; }
.pr-badge--ai   { background: rgba(26,122,138,.12); color: var(--dp-teal); }

/* CTA button */
.pr-card__cta-wrap { margin-top: auto; padding-top: 8px; }
.pr-btn {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px; font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer; border: 1.5px solid transparent;
}
.pr-btn--default {
    background: transparent;
    border-color: var(--dp-teal);
    color: var(--dp-teal);
}
.pr-btn--default:hover { background: rgba(26,122,138,.08); }
.pr-btn--featured {
    background: #fff; color: var(--dp-teal);
}
.pr-btn--featured:hover { background: rgba(255,255,255,.9); }
.pr-btn--scale {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.25);
    color: #fff;
}
.pr-btn--scale:hover { background: rgba(255,255,255,.18); }
.pr-card__note {
    font-size: 11.5px; text-align: center;
    color: var(--dp-muted); margin-top: 10px;
}
.pr-card__note--light { color: rgba(255,255,255,.55); }

/* ── Note box ── */
.pr-note-box {
    max-width: 780px; margin: 32px auto 0;
    background: rgba(26,122,138,.06);
    border: 1px solid rgba(26,122,138,.25);
    border-radius: 16px;
    padding: 20px 24px;
    font-size: 13.5px; color: var(--dp-text); line-height: 1.7;
}
.pr-note-box--center { text-align: center; }
.pr-note-box strong { color: var(--dp-dark); }

/* ── Directory who grid ── */
.pr-who-grid {
    display: grid; grid-template-columns: repeat(6,1fr);
    gap: 12px; max-width: 860px;
    margin: 40px auto 0;
}
.pr-who-card {
    background: var(--dp-white); border: 1px solid var(--dp-border);
    border-radius: 14px; padding: 16px 12px; text-align: center;
}
.pr-who-card__icon { font-size: 24px; margin-bottom: 6px; }
.pr-who-card__label { font-size: 11.5px; font-weight: 600; color: var(--dp-text); line-height: 1.3; }

/* ── Trust band ── */
.pr-trust-band {
    background: linear-gradient(135deg, var(--dp-teal) 0%, hsl(215,55%,18%) 100%);
    color: #fff; text-align: center;
    padding: 80px 24px;
}
.pr-trust-band__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800; color: #fff; margin-bottom: 12px;
}
.pr-trust-band__sub {
    font-size: 15px; color: rgba(255,255,255,.7);
    max-width: 540px; margin: 0 auto 24px; line-height: 1.7;
}
.pr-trust-band__pills {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px; margin-bottom: 32px;
}
.pr-trust-band__pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    border-radius: 50px; padding: 7px 14px;
    font-size: 13px;
}
.pr-trust-band__cta {
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff; color: var(--dp-teal);
    padding: 14px 36px; border-radius: 50px;
    font-size: 15px; font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    transition: all var(--transition);
}
.pr-trust-band__cta:hover { transform: scale(1.03); box-shadow: 0 12px 32px rgba(0,0,0,.22); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .pr-grid--3 { grid-template-columns: 1fr 1fr; }
    .pr-who-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 640px) {
    .pr-grid--2, .pr-grid--3 { grid-template-columns: 1fr; }
    .pr-who-grid { grid-template-columns: repeat(2,1fr); }
    .pr-tabs { gap: 6px; }
    .pr-tab { font-size: 12px; padding: 7px 14px; }
}