/* Shared styles for da root subpages. Inline page styles are kept here. */

/* Shared product and content page styles */
:root{
            --bg:#f6f8fc;
            --surface:#ffffff;
            --surface-2:#f8fafc;
            --line:#e7ebf3;
            --line-strong:#d7dfec;
            --text:#152238;
            --muted:#66748b;
            --muted-2:#8c98aa;
            --brand:#3f6df6;
            --brand-dark:#2f5ce6;
            --accent:#6a5cff;
            --accent-2:#8b7dff;
            --accent-soft:#f2efff;
            --success:#16a34a;
            --shadow:0 18px 50px rgba(22,34,56,.08);
            --radius-xl:24px;
            --radius-lg:18px;
            --radius-md:14px;
            --radius-sm:12px;
        }

        *{box-sizing:border-box}
        html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif}

        .hero h1{
            margin:16px 0 10px;
            font-size:clamp(32px,4vw,52px);
            line-height:1.04;
            letter-spacing:-.045em;
            max-width:780px;
        }

        .hero p{
            margin:0;
            max-width:700px;
            color:var(--muted);
            font-size:16px;
            line-height:1.7;
        }

        .prompt textarea{
            width:100%;
            border:0;
            outline:0;
            resize:none;
            background:transparent;
            color:var(--text);
            font:inherit;
            font-size:16px;
            line-height:1.7;
            min-height:112px;
            padding:0 18px 10px;
        }

        .prompt textarea::placeholder{color:#8a96aa}

        .btn{
            appearance:none;border:0;cursor:pointer;
            min-height:42px;padding:0 16px;border-radius:999px;
            font:inherit;font-size:14px;font-weight:700;
            display:inline-flex;align-items:center;justify-content:center;gap:10px;
            transition:.2s ease;
        }

        .btn-primary{
            background:linear-gradient(135deg, var(--accent), var(--accent-2));
            color:#fff;
            box-shadow:0 14px 28px rgba(106,92,255,.24);
        }

        .btn-primary:hover{transform:translateY(-1px)}

        .btn-orb{
            width:16px;height:16px;border-radius:999px;display:inline-block;
            background:radial-gradient(circle at 30% 30%, #ffffff 0%, #dcd8ff 26%, #937fff 66%, #6452ff 100%);
            box-shadow:0 0 0 5px rgba(255,255,255,.16);
            flex:0 0 auto;
        }

        .flow{
            display:grid;
            grid-template-columns:minmax(0,1.02fr) minmax(320px,.98fr);
            gap:18px;
            align-items:start;
        }

        .panel{
            background:var(--surface);
            border:1px solid var(--line);
            border-radius:28px;
            box-shadow:var(--shadow);
            overflow:hidden;
        }

        .panel-head{
            padding:18px 20px 14px;
            border-bottom:1px solid var(--line);
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:12px;
        }

        .panel-title{
            font-size:15px;
            font-weight:700;
            letter-spacing:-.01em;
        }

        .panel-sub{
            margin-top:4px;
            color:var(--muted);
            font-size:13px;
        }

        .panel-badge{
            display:inline-flex;align-items:center;gap:8px;
            min-height:32px;padding:0 12px;border-radius:999px;
            background:#f8fafc;border:1px solid var(--line);color:var(--muted);
            font-size:12px;font-weight:700;
            white-space:nowrap;
        }

        @keyframes pulse{
            0%{transform:scale(1); box-shadow:0 0 0 0 rgba(22,163,74,.42)}
            70%{transform:scale(1.06); box-shadow:0 0 0 8px rgba(22,163,74,0)}
            100%{transform:scale(1); box-shadow:0 0 0 0 rgba(22,163,74,0)}
        }

        .chat{
            display:grid;
            gap:14px;
            padding:18px;
            min-height:520px;
            align-content:start;
            background:
                    radial-gradient(circle at top left, rgba(106,92,255,.06), transparent 35%),
                    linear-gradient(180deg, #fcfdff, #ffffff);
        }

        .conversation{
            display:grid;
            gap:12px;
            align-content:start;
        }

        .msg{
            max-width:88%;
            border-radius:20px;
            padding:13px 15px;
            position:relative;
            box-shadow:0 10px 24px rgba(15,23,42,.05);
        }

        .msg-user{
            justify-self:end;
            background:#1a2741;
            color:#fff;
            border-bottom-right-radius:8px;
        }

        .msg-ai{
            justify-self:start;
            background:#fff;
            border:1px solid var(--line);
            border-bottom-left-radius:8px;
            color:var(--text);
        }

        .msg-label{
            font-size:11px;
            letter-spacing:.02em;
            text-transform:uppercase;
            font-weight:700;
            margin-bottom:6px;
            opacity:.62;
        }

        .msg-body{
            font-size:14px;
            line-height:1.65;
            white-space:pre-wrap;
        }

        .typing-row{
            display:flex;align-items:center;gap:10px;
        }

        .typing-dots{display:inline-flex;gap:4px;align-items:center}
        .typing-dots span{
            width:7px;height:7px;border-radius:999px;background:#94a3b8;display:block;
            animation:bounce 1.1s infinite ease-in-out;
        }
        .typing-dots span:nth-child(2){animation-delay:.15s}
        .typing-dots span:nth-child(3){animation-delay:.3s}
        @keyframes bounce{0%,80%,100%{transform:scale(.75);opacity:.45}40%{transform:scale(1);opacity:1}}

        .results-shell{
            display:grid;gap:12px;padding:18px;
        }

        .result-intro{
            display:flex;align-items:flex-start;justify-content:space-between;gap:14px;flex-wrap:wrap;
            padding-bottom:6px;border-bottom:1px solid var(--line);
        }

        .result-intro h3{
            margin:0;font-size:16px;letter-spacing:-.02em;
        }

        .result-intro p{
            margin:6px 0 0;color:var(--muted);font-size:13px;line-height:1.6;max-width:470px;
        }

        .results{
            display:grid;gap:12px;
        }

        .entity{
            display:grid;gap:10px;align-content:start;
        }

        .entity-label{
            font-size:11px;text-transform:uppercase;letter-spacing:.04em;color:var(--muted-2);font-weight:700;
        }

        .identity-stack{
            display:grid;
            gap:4px;
            min-height:46px;
            align-content:start;
        }

        .headline{
            font-size:15px;font-weight:700;letter-spacing:-.01em;line-height:1.35;
        }

        .subline{
            font-size:13px;color:var(--muted);line-height:1.5;
        }

        .meta{
            display:grid;gap:8px;
        }

        .meta-row{
            display:grid;
            grid-template-columns:124px minmax(0,1fr);
            gap:10px;
            align-items:start;
            font-size:13px;
        }

        .meta-key{color:var(--muted-2)}
        .meta-value{color:var(--text);word-break:break-word}

        .link-pill{
            display:inline-flex;align-items:center;gap:8px;
            min-height:30px;padding:0 11px;border-radius:999px;
            border:1px solid var(--line);background:#fff;
            color:#4f46e5;text-decoration:none;font-weight:600;font-size:12px;
            width:max-content;
        }
        .result-card {
            border:1px solid var(--line);
            background:linear-gradient(180deg, #fff, #fbfcff);
            border-radius:20px;
            padding:16px;
            display:grid;
            grid-template-columns:minmax(0,1fr) minmax(0,1fr);
            gap:14px 18px;
        }

        .results-cta{
            border:1px solid rgba(106,92,255,.14);
            background:linear-gradient(180deg, rgba(242,239,255,.72), rgba(255,255,255,.94));
            border-radius:20px;
            padding:16px;
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:14px;
            flex-wrap:wrap;
        }

        .results-cta-copy{
            display:grid;
            gap:4px;
            max-width:520px;
        }

        .results-cta-title{
            font-size:16px;
            font-weight:700;
            letter-spacing:-.02em;
        }

        .results-cta-sub{
            color:var(--muted);
            font-size:13px;
            line-height:1.6;
        }

        .results-cta-actions{
            display:flex;
            gap:10px;
            flex-wrap:wrap;
            align-items:center;
        }

        .hidden{display:none !important}

        @media (max-width: 980px){
            .flow{grid-template-columns:1fr}
        }

        @media (max-width: 720px){
            .flow{gap:14px}
            .panel{border-radius:22px}
            .panel-head{padding:16px 16px 12px}
            .chat,.results-shell{padding:14px}
            .meta-row{grid-template-columns:1fr;gap:4px}
            .msg{max-width:94%}
            .actions .btn{flex:1 1 auto}
        }


/* Extracted from csr.php */
.csr-kiva-section{
            padding: clamp(28px, 4vw, 56px) 0;
        }

        .csr-kiva-grid{
            display:grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
            gap:24px;
            align-items:start;
        }

        .csr-card{
            background:#fff;
            border:1px solid rgba(17,19,39,.08);
            border-radius:24px;
            padding:24px;
            box-shadow:0 16px 40px rgba(17,19,39,.05);
        }

        .csr-card + .csr-card{
            margin-top:20px;
        }

        .csr-stat-grid{
            display:grid;
            grid-template-columns:repeat(2, minmax(0, 1fr));
            gap:14px;
            margin-top:18px;
        }

        .csr-stat{
            background:linear-gradient(180deg, rgba(255,255,255,1), rgba(248,250,255,1));
            border:1px solid rgba(17,19,39,.08);
            border-radius:18px;
            padding:18px;
        }

        .csr-stat-label{
            font-size:.78rem;
            font-weight:700;
            letter-spacing:.04em;
            text-transform:uppercase;
            color:var(--muted);
            margin-bottom:6px;
        }

        .csr-stat-value{
            font-size:clamp(1.3rem, 2vw, 2rem);
            line-height:1.05;
            font-weight:800;
            color:var(--text);
            letter-spacing:-.04em;
        }

        .csr-stat-sub{
            margin-top:6px;
            color:var(--muted);
            font-size:.92rem;
            line-height:1.55;
        }

        .csr-profile-list{
            display:grid;
            gap:12px;
            margin:18px 0 0;
        }

        .csr-profile-row{
            display:grid;
            grid-template-columns:140px minmax(0, 1fr);
            gap:12px;
            align-items:start;
            padding:12px 0;
            border-bottom:1px solid rgba(17,19,39,.08);
        }

        .csr-profile-row:last-child{
            border-bottom:0;
            padding-bottom:0;
        }

        .csr-profile-key{
            font-weight:700;
            color:var(--muted);
        }

        .csr-profile-value{
            color:var(--text);
        }

        .csr-badges{
            display:grid;
            grid-template-columns:repeat(2, minmax(0, 1fr));
            gap:12px;
            margin-top:18px;
        }

        .csr-badge{
            border:1px solid rgba(17,19,39,.08);
            border-radius:18px;
            padding:16px;
            background:#fff;
        }

        .csr-badge-name{
            font-weight:800;
            letter-spacing:-.02em;
            margin-bottom:6px;
        }

        .csr-badge-copy{
            font-size:.92rem;
            color:var(--muted);
            line-height:1.55;
        }

        .csr-tabs{
            display:flex;
            flex-wrap:wrap;
            gap:10px;
            margin-bottom:18px;
        }

        .csr-tab{
            appearance:none;
            border:1px solid rgba(17,19,39,.1);
            color:var(--text);
            border-radius:999px;
            min-height:42px;
            padding:0 16px;
            font:inherit;
            font-weight:700;
            cursor:pointer;
            transition:.2s ease;
        }

        .csr-tab.is-active{
            color:#fff;
            border-color:transparent;
            box-shadow:0 12px 26px rgba(94,52,182,.18);
        }

        .csr-panel{
            display:none;
        }

        .csr-panel.is-active{
            display:block;
        }

        .csr-chart-shell{
            display:grid;
            gap:16px;
        }

        .csr-chart-top{
            display:flex;
            justify-content:space-between;
            gap:12px;
            align-items:flex-end;
            flex-wrap:wrap;
        }

        .csr-chart-title{
            font-size:1.08rem;
            font-weight:800;
            letter-spacing:-.03em;
        }

        .csr-chart-sub{
            color:var(--muted);
            font-size:.92rem;
            line-height:1.55;
        }

        .csr-chart-controls{
            display:flex;
            gap:8px;
            align-items:center;
            flex-wrap:wrap;
        }

        .csr-chart-btn{
            appearance:none;
            border:1px solid rgba(17,19,39,.1);
            background:#fff;
            color:var(--text);
            border-radius:999px;
            min-height:34px;
            padding:0 12px;
            font:inherit;
            font-size:.88rem;
            font-weight:700;
            cursor:pointer;
        }

        .csr-chart-btn.is-active{
            background:#111827;
            color:#fff;
            border-color:#111827;
        }

        .csr-bars{
            display:grid;
            gap:12px;
        }

        .csr-bar{
            display:grid;
            gap:7px;
        }

        .csr-bar-head{
            display:flex;
            justify-content:space-between;
            gap:12px;
            font-size:.92rem;
            font-weight:700;
        }

        .csr-bar-track{
            position:relative;
            height:28px;
            border-radius:999px;
            background:rgba(17,19,39,.08);
            overflow:hidden;
        }

        .csr-bar-fill{
            display:flex;
            align-items:center;
            justify-content:flex-end;
            height:100%;
            min-width:110px;
            width:0;
            padding:0 12px;
            border-radius:999px;
            background:#16a34a;
            background-image:linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
            background-repeat:no-repeat;
            box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
            color:#fff;
            font-size:.84rem;
            font-weight:800;
            white-space:nowrap;
            transition:width .5s ease;
            box-sizing:border-box;
        }

        .csr-bar-fill-label{
            display:inline-block;
            line-height:1;
        }

        .csr-legend{
            display:grid;
            gap:10px;
        }

        .csr-empty{
            border:1px dashed rgba(17,19,39,.16);
            border-radius:18px;
            padding:18px;
            color:var(--muted);
            background:rgba(255,255,255,.72);
        }

        .csr-donut-wrap{
            display:grid;
            grid-template-columns:220px minmax(0, 1fr);
            gap:20px;
            align-items:center;
        }

        .csr-donut{
            width:220px;
            height:220px;
            border-radius:50%;
            background:conic-gradient(var(--accent) 0deg, var(--accent2) 0deg);
            position:relative;
            margin:0 auto;
            box-shadow:inset 0 0 0 1px rgba(17,19,39,.04);
        }

        .csr-donut::after{
            content:"";
            position:absolute;
            inset:28px;
            border-radius:50%;
            background:#fff;
            box-shadow:0 0 0 1px rgba(17,19,39,.06);
        }

        .csr-donut-center{
            position:absolute;
            inset:0;
            display:flex;
            align-items:center;
            justify-content:center;
            flex-direction:column;
            z-index:1;
            text-align:center;
            padding:40px;
        }

        .csr-donut-value{
            font-size:1.65rem;
            font-weight:800;
            letter-spacing:-.04em;
            line-height:1;
        }

        .csr-donut-label{
            margin-top:8px;
            font-size:.88rem;
            color:var(--muted);
            line-height:1.4;
        }

        .csr-legend-item{
            display:grid;
            grid-template-columns:auto 1fr auto;
            gap:10px;
            align-items:center;
            padding:10px 0;
            border-bottom:1px solid rgba(17,19,39,.08);
        }

        .csr-legend-item:last-child{
            border-bottom:0;
        }

        .csr-dot{
            width:12px;
            height:12px;
            border-radius:50%;
        }


        .csr-tab.cta-button{
            border:0;
        }

        @media (max-width: 980px){
            .csr-kiva-grid,
            .csr-donut-wrap{
                grid-template-columns:1fr;
            }

            .csr-badges,
            .csr-stat-grid{
                grid-template-columns:1fr;
            }
        }

        @media (max-width: 640px){
            .csr-profile-row{
                grid-template-columns:1fr;
                gap:4px;
            }
        }


/* Extracted from databerigelse.php */
.gradient-text {
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .cta-button,
        .cta-button-soft {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0 16px;
            border-radius: 999px;
            text-decoration: none;
            font-size: .94rem;
            line-height: 1;
            font-weight: 700;
            letter-spacing: -.02em;
            white-space: nowrap;
            transition: transform .18s ease, box-shadow .18s ease;
        }

        .cta-button:hover,
        .cta-button-soft:hover {
            transform: translateY(-1px);
        }

        .cta-button-soft {
            color: var(--text);
            background: rgba(255,255,255,.86);
            border: 1px solid var(--border);
            box-shadow: 0 10px 24px rgba(17,19,39,.04);
        }

        .cta-button {
            color: #fff;
            background: var(--brand);
            border: 1px solid var(--brand);
            box-shadow: 0 10px 22px rgba(63, 109, 246, 0.18);
        }

        .sales-intro,
        .enrichment-model-section,
        .use-cases-section,
        .inbound-section,
        .pricing-section,
        .footer {
            position: relative;
            z-index: 1;
        }

        .sales-intro {
            padding: 62px 20px 0;
        }

        .sales-intro-inner {
            max-width: 1000px;
            padding: 0 6px;
        }

        .sales-intro-title,
        .model-title,
        .section-title,
        .pricing-title {
            margin: 0;
            max-width: 860px;
            font-size: clamp(2.3rem, 4vw, 4.2rem);
            line-height: 1.02;
            letter-spacing: -.06em;
            font-weight: 760;
            color: var(--text);
        }

        .model-title,
        .section-title,
        .pricing-title {
            font-size: clamp(1.9rem, 3vw, 2.9rem);
            max-width: 760px;
            line-height: 1.04;
        }

        .sales-intro-copy,
        .section-copy,
        .pricing-copy {
            margin: 20px 0 0;
            max-width: 940px;
            font-size: 1.03rem;
            line-height: 1.72;
            letter-spacing: -.028em;
            font-weight: 500;
            color: var(--muted);
        }

        .sales-intro-copy strong,
        .section-copy strong,
        .pricing-copy strong {
            color: var(--text);
            font-weight: 700;
        }

        .section-shell,
        .pricing-shell {
            position: relative;
            overflow: hidden;
            border-radius: 34px;
            padding: 40px 40px 34px;
            background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.76));
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow);
        }

        .section-shell::before,
        .pricing-shell::before {
            content: "";
            position: absolute;
            inset: -120px auto auto -120px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(94,52,182,.08) 0%, rgba(94,52,182,0) 72%);
            pointer-events: none;
        }

        .section-shell::after,
        .pricing-shell::after {
            content: "";
            position: absolute;
            inset: auto -120px -140px auto;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(79,109,241,.08) 0%, rgba(79,109,241,0) 72%);
            pointer-events: none;
        }

        .enrichment-model-section,
        .use-cases-section,
        .inbound-section,
        .pricing-section {
            padding: 32px 20px 0;
        }

        .enrichment-model-section .section-shell {
            max-width: 1360px;
            margin: 0 auto;
            padding-top: 34px;
            padding-bottom: 30px;
        }

        .intro-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px;
        }

        .model-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr;
            gap: 22px;
            align-items: start;
        }

        .model-copy {
            max-width: 860px;
        }

        .model-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            padding: 10px 12px;
            border-radius: 999px;
            background: rgba(255,255,255,.88);
            border: 1px solid rgba(17,19,39,.08);
            box-shadow: 0 10px 24px rgba(17,19,39,.04);
            font-size: .84rem;
            line-height: 1;
            font-weight: 700;
            letter-spacing: -.02em;
            color: #3f465d;
            max-width: fit-content;
        }

        .model-visual {
            width: 100%;
            max-width: none;
            position: relative;
            min-height: auto;
            border-radius: 28px;
            padding: 20px;
            background: linear-gradient(180deg, rgba(94,52,182,.08), rgba(79,109,241,.04));
            border: 1px solid rgba(94,52,182,.10);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 18px 34px rgba(17,19,39,.04);
            overflow: hidden;
            display: grid;
            gap: 22px;
            align-content: start;
        }



        .flow-stage {
            position: relative;
            z-index: 2;
            width: 100%;
            display: grid;
            gap: 14px;
            justify-items: stretch;
        }

        .flow-stage-label {
            text-align: center;
            font-size: .74rem;
            line-height: 1;
            font-weight: 800;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(86,91,107,.66);
        }

        .flow-stage.top .flow-stage-label { color: rgba(94,52,182,.8); }
        .flow-stage.bottom .flow-stage-label { color: rgba(79,109,241,.78); }

        .flow-row {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            width: 100%;
            align-items: stretch;
        }

        .flow-card,
        .core-card {
            border-radius: 22px;
            padding: 18px 16px 16px;
            background: rgba(255,255,255,.88);
            border: 1px solid var(--border);
            box-shadow: 0 16px 34px rgba(17,19,39,.04);
        }

        .flow-card {
            min-width: 0;
            max-width: none;
            text-align: center;
            height: 100%;
        }

        .core-card {
            width: min(100%, 320px);
            margin: 0 auto;
            text-align: center;
            background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.84));
            border-color: rgba(94,52,182,.10);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 18px 34px rgba(17,19,39,.04);
        }

        .flow-icon,
        .core-icon {
            width: 36px;
            height: 36px;
            margin: 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(94,52,182,.12), rgba(79,109,241,.10));
            font-size: 1rem;
        }

        .flow-card h3,
        .core-card h3,
        .use-case-card h3,
        .inbound-card h3,
        .enterprise-card h3 {
            margin: 14px 0 0;
            font-size: 1rem;
            line-height: 1.12;
            letter-spacing: -.03em;
            font-weight: 750;
            color: var(--text);
        }

        .flow-card p,
        .core-card p,
        .use-case-card p,
        .inbound-card p,
        .enterprise-card p {
            margin: 8px 0 0;
            font-size: .88rem;
            line-height: 1.5;
            letter-spacing: -.02em;
            color: var(--muted);
            font-weight: 500;
        }

        .flow-divider {
            position: relative;
            z-index: 2;
            display: grid;
            justify-items: center;
            gap: 8px;
        }

        .flow-line {
            position: relative;
            width: 2px;
            height: 34px;
            background: linear-gradient(180deg, rgba(94,52,182,.24), rgba(79,109,241,.24));
            border-radius: 999px;
        }

        .flow-pulse {
            position: relative;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            box-shadow: 0 0 0 0 rgba(94,52,182,.24);
            animation: pulse 2s ease-out infinite;
        }

        .use-cases-grid,
        .inbound-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin-top: 22px;
        }

        .use-case-card,
        .inbound-card,
        .enterprise-card {
            border-radius: 24px;
            padding: 22px 20px;
            background: rgba(255,255,255,.84);
            border: 1px solid var(--border);
            box-shadow: 0 16px 34px rgba(17,19,39,.04);
        }

        .use-case-icon,
        .inbound-icon {
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(94,52,182,.12), rgba(79,109,241,.10));
            font-size: 1rem;
        }

        .inbound-shell-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: .95fr 1.05fr;
            gap: 24px;
            align-items: start;
        }

        .inbound-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            padding: 10px 12px;
            border-radius: 999px;
            background: rgba(255,255,255,.88);
            border: 1px solid rgba(17,19,39,.08);
            box-shadow: 0 10px 24px rgba(17,19,39,.04);
            font-size: .84rem;
            line-height: 1;
            font-weight: 700;
            letter-spacing: -.02em;
            color: #3f465d;
        }

        .pricing-head {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 24px;
            flex-wrap: wrap;
        }

        .enterprise-card {
            position: relative;
            z-index: 2;
            margin-top: 24px;
            padding: 26px 24px 24px;
            background: linear-gradient(180deg, rgba(94,52,182,.08), rgba(79,109,241,.04));
            border-color: rgba(94,52,182,.10);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 18px 34px rgba(17,19,39,.04);
        }

        .enterprise-head {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
        }

        .enterprise-price {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            border-radius: 999px;
            background: rgba(255,255,255,.88);
            border: 1px solid rgba(17,19,39,.08);
            box-shadow: 0 10px 24px rgba(17,19,39,.04);
            font-size: .9rem;
            line-height: 1;
            font-weight: 700;
            letter-spacing: -.02em;
            color: var(--text);
        }

        .enterprise-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin-top: 18px;
        }

        .enterprise-point {
            padding: 14px 14px;
            border-radius: 18px;
            background: rgba(255,255,255,.76);
            border: 1px solid rgba(17,19,39,.07);
            box-shadow: 0 10px 24px rgba(17,19,39,.03);
        }

        .enterprise-point strong {
            display: block;
            font-size: .88rem;
            line-height: 1.2;
            letter-spacing: -.02em;
            color: var(--text);
        }

        .enterprise-point span {
            display: block;
            margin-top: 6px;
            font-size: .82rem;
            line-height: 1.45;
            color: var(--muted);
            font-weight: 600;
            letter-spacing: -.01em;
        }

        .enterprise-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 18px;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(94,52,182,.24); }
            70% { box-shadow: 0 0 0 12px rgba(94,52,182,0); }
            100% { box-shadow: 0 0 0 0 rgba(94,52,182,0); }
        }

        @media (max-width: 1220px) {
            .model-grid,
            .use-cases-grid,
            .inbound-shell-grid,
            .inbound-grid,
            .enterprise-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 900px) {
            .sales-intro,
            .enrichment-model-section,
            .use-cases-section,
            .inbound-section,
            .pricing-section { padding-left: 6px; padding-right: 6px; }

            .sales-intro-title {
                font-size: clamp(2.05rem, 8vw, 3.2rem);
            }

            .sales-intro-copy,
            .section-copy,
            .pricing-copy {
                font-size: .98rem;
                line-height: 1.66;
            }

            .section-shell,
            .pricing-shell {
                border-radius: 26px;
                padding: 26px 18px 22px;
            }

            .model-visual {
                padding: 18px;
            }

            .enterprise-grid,
            .use-cases-grid,
            .inbound-grid {
                grid-template-columns: 1fr;
            }

            .enterprise-actions,
            .intro-actions {
                flex-direction: column;
            }
        }

        @media (max-width: 640px) {
            .cta-button, .cta-button-soft { font-size: .9rem; }
            .cta-button, .cta-button-soft { min-height: 42px; }
        }


/* Extracted from gtm-company.php */
.product-stage { padding: 18px 0 0; }
    .product-shell {
        padding: 1px;
        border-radius: 34px;
        background: linear-gradient(135deg, rgba(94,52,182,.18), rgba(79,109,241,.10), rgba(255,255,255,.85));
        box-shadow: 0 30px 80px rgba(17,19,39,.08);
    }
    .product-shell-inner {
        border-radius: 33px;
        background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,245,250,.96));
        border: 1px solid rgba(255,255,255,.8);
        padding: 18px;
    }
    .product-frame {
        border-radius: 28px;
        overflow: hidden;
        border: 1px solid rgba(17,19,39,.06);
        background: #f4f3f7;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
    }
    .frame-top {
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 16px 18px;
        border-bottom: 1px solid rgba(17,19,39,.05);
        background: rgba(255,255,255,.86);
        flex-wrap: wrap;
    }
    .frame-top h2 { margin: 0; font-size: 1.2rem; letter-spacing: -.04em; }
    .frame-top p { margin: 4px 0 0; color: var(--muted); font-size: .82rem; }
    .frame-chip, .primary-link, .secondary-link {
        text-decoration: none;
        color: inherit;
        min-height: 44px;
        padding: 0 16px;
        border-radius: 999px;
        border: 1px solid rgba(17,19,39,.06);
        background: rgba(255,255,255,.94);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: .84rem;
        font-weight: 700;
    }
    .primary-link {
        background: var(--brand);
        color: #fff;
        border-color: var(--brand);
    }
    .frame-body { display: grid; grid-template-columns: minmax(0,1fr); }
    .workspace { padding: 24px 26px 28px; min-width: 0; }
    .workspace-scroll { display: grid; gap: 16px; align-content: start; }
    .module {
        border-radius: 26px;
        border: 1px solid rgba(17,19,39,.05);
        background: rgba(255,255,255,.90);
        box-shadow: 0 18px 44px rgba(17,19,39,.05);
        overflow: hidden;
    }
    .section { padding: 24px; border-top: 1px solid rgba(17,19,39,.05); }
    .section:first-child { border-top: 0; }
    .detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .detail-hero {
        display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
        padding: 24px 26px; border-radius: 24px; border: 1px solid rgba(94,52,182,.12);
        background: linear-gradient(180deg, rgba(94,52,182,.06), rgba(79,109,241,.035));
    }
    .detail-hero-copy strong { display: block; margin: 0 0 8px; font-size: 1.05rem; letter-spacing: -.03em; }
    .detail-hero-copy span { color: var(--muted); line-height: 1.6; }
    .filters-preview span {
        padding: 7px 10px; border-radius: 999px; background: rgba(94,52,182,.06); color: #4b31a9;
        border: 1px solid rgba(94,52,182,.08); font-size: .74rem; font-weight: 700; display: inline-flex; margin: 6px 8px 0 0;
    }
    .detail-layout { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(340px,.9fr); gap: 18px; }
    .detail-panel, .detail-card {
        background: #fff;
        border: 1px solid rgba(17,19,39,.06);
        border-radius: 24px;
        padding: 22px;
        box-shadow: 0 12px 30px rgba(17,19,39,.04);
    }
    .detail-card + .detail-card { margin-top: 18px; }
    .detail-company { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; flex-wrap: wrap; margin-bottom: 18px; }
    .detail-company h3 { margin: 0; font-size: 1.8rem; letter-spacing: -.05em; }
    .detail-company p { margin: 8px 0 0; color: var(--muted); line-height: 1.6; }
    .score-badge {
        min-width: 132px; padding: 16px 18px; border-radius: 20px;
        background: linear-gradient(135deg, rgba(94,52,182,.10), rgba(79,109,241,.06));
        border: 1px solid rgba(94,52,182,.12); text-align: center;
    }
    .score-badge strong { display: block; font-size: 2rem; line-height: 1; letter-spacing: -.06em; }
    .score-badge span { color: var(--muted); font-size: .78rem; }
    .info-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
    .info-item {
        border: 1px solid rgba(17,19,39,.06); border-radius: 18px; padding: 14px; background: rgba(248,248,252,.74);
    }
    .info-item span { display: block; color: var(--muted); font-size: .74rem; margin-bottom: 4px; }
    .info-item strong { display: block; font-size: 1rem; letter-spacing: -.03em; }
    .list-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
    .mini-pill {
        padding: 8px 11px; border-radius: 999px; background: rgba(94,52,182,.06); color: #4b31a9;
        border: 1px solid rgba(94,52,182,.08); font-size: .74rem; font-weight: 700; display: inline-flex;
    }
    .muted-copy { color: var(--muted); line-height: 1.65; }
    .empty-box {
        border: 1px dashed rgba(17,19,39,.12); border-radius: 18px; padding: 16px; background: rgba(248,248,252,.55);
        color: var(--muted); line-height: 1.65;
    }
    .chart-shell {
        border-radius: 18px; background: rgba(248,248,252,.78); border: 1px solid rgba(17,19,39,.06); padding: 14px 14px 8px;
    }
    .chart-svg { width: 100%; height: 220px; display: block; }
    .chart-footer { display: flex; justify-content: space-between; gap: 8px; color: var(--muted); font-size: .74rem; margin-top: 6px; }
    .cta-band { padding: 72px 0 0; }
    .cta-shell {
        padding: 28px 30px; border-radius: 30px;
        background: linear-gradient(135deg, rgba(94,52,182,.10), rgba(79,109,241,.07), rgba(255,255,255,.86));
        border: 1px solid rgba(94,52,182,.10); display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
    }
    .cta-shell h3 { margin: 0; font-size: clamp(1.6rem, 2.5vw, 2.4rem); line-height: 1.02; letter-spacing: -.05em; }
    .cta-shell p { margin: 10px 0 0; color: var(--muted); max-width: 760px; line-height: 1.7; font-size: .96rem; }
    .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    @media (max-width: 1100px) {
        .detail-layout { grid-template-columns: 1fr; }
    }
    @media (max-width: 760px) {
        .workspace { padding: 16px; }
        .section { padding: 18px; }
        .info-grid { grid-template-columns: 1fr; }
        .detail-hero, .cta-shell, .frame-top { align-items: flex-start; }
        .frame-chip, .primary-link, .secondary-link { width: 100%; }
    }


/* Extracted from gtm-templates.php */
.product-stage { padding: 18px 0 0; }
    .product-shell {
        padding: 1px;
        border-radius: 34px;
        background: linear-gradient(135deg, rgba(94,52,182,.18), rgba(79,109,241,.10), rgba(255,255,255,.85));
        box-shadow: 0 30px 80px rgba(17,19,39,.08);
    }
    .product-shell-inner {
        border-radius: 33px;
        background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,245,250,.96));
        border: 1px solid rgba(255,255,255,.8);
        padding: 18px;
    }
    .product-frame {
        border-radius: 28px;
        overflow: hidden;
        border: 1px solid rgba(17,19,39,.06);
        background: #f4f3f7;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
    }
    .frame-top {
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 16px 18px;
        border-bottom: 1px solid rgba(17,19,39,.05);
        background: rgba(255,255,255,.86);
        flex-wrap: wrap;
    }
    .frame-top h2 { margin: 0; font-size: 1.2rem; letter-spacing: -.04em; }
    .frame-top p { margin: 4px 0 0; color: var(--muted); font-size: .82rem; }
    .frame-chip,
    .primary-link,
    .secondary-link,
    .template-card,
    .company-card {
        text-decoration: none;
        color: inherit;
    }
    .frame-chip,
    .primary-link,
    .secondary-link {
        min-height: 44px;
        padding: 0 16px;
        border-radius: 999px;
        border: 1px solid rgba(17,19,39,.06);
        background: rgba(255,255,255,.94);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: .84rem;
        font-weight: 700;
    }
    .primary-link {
        background: var(--brand);
        color: #fff;
        border-color: var(--brand);
    }
    .frame-body { display: grid; grid-template-columns: minmax(0,1fr); }
    .workspace { padding: 24px 26px 28px; min-width: 0; }
    .workspace-scroll { display: grid; gap: 16px; align-content: start; }
    .sticky-bar {
        position: sticky;
        top: 16px;
        z-index: 10;
        border-radius: 22px;
        border: 1px solid rgba(17,19,39,.06);
        background: rgba(255,255,255,.86);
        backdrop-filter: blur(14px);
        box-shadow: 0 12px 34px rgba(17,19,39,.05);
        padding: 14px 16px;
        display: grid;
        gap: 12px;
    }
    .sticky-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    .sticky-copy { color: var(--muted); font-size: .84rem; line-height: 1.6; }
    .live-chip {
        height: 32px;
        padding: 0 11px;
        border-radius: 999px;
        border: 1px solid rgba(53,209,138,.18);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #0f8b57;
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        white-space: nowrap;
    }
    .live-dot {
        width: 8px; height: 8px; border-radius: 50%; background: var(--success);
        animation: pulseLive 1.5s infinite; box-shadow: 0 0 0 0 rgba(53,209,138,.4);
    }
    @keyframes pulseLive {
        0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(53,209,138,.45); }
        70% { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(53,209,138,0); }
        100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(53,209,138,0); }
    }
    .summary-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
    .summary-card {
        border-radius: 18px;
        border: 1px solid rgba(17,19,39,.05);
        background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,248,252,.94));
        padding: 14px 16px;
        display: grid;
        gap: 2px;
    }
    .summary-card strong { font-size: 1.6rem; letter-spacing: -.05em; }
    .summary-card span { color: var(--muted); font-size: .74rem; }
    .module {
        border-radius: 26px;
        border: 1px solid rgba(17,19,39,.05);
        background: rgba(255,255,255,.90);
        box-shadow: 0 18px 44px rgba(17,19,39,.05);
        overflow: hidden;
    }
    .section { padding: 24px; border-top: 1px solid rgba(17,19,39,.05); }
    .section:first-child { border-top: 0; }
    .section-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 16px;
        flex-wrap: wrap;
    }
    .section-copy h3 { margin: 0; font-size: 1.8rem; letter-spacing: -.05em; }
    .section-copy p { margin: 8px 0 0; color: var(--muted); font-size: .92rem; line-height: 1.7; max-width: 760px; }
    .count-badge {
        min-height: 40px;
        padding: 0 14px;
        border-radius: 999px;
        border: 1px solid rgba(17,19,39,.06);
        background: rgba(249,249,252,.92);
        display: inline-flex;
        align-items: center;
        color: var(--muted);
        font-size: .76rem;
        font-weight: 800;
        white-space: nowrap;
    }
    .template-toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 14px; }
    .search-field {
        flex: 1; min-width: 240px; height: 48px; border-radius: 15px;
        border: 1px solid rgba(17,19,39,.06); background: rgba(255,255,255,.96);
        padding: 0 14px; color: var(--text); outline: none;
    }
    .search-field:focus { border-color: rgba(94,52,182,.22); box-shadow: 0 0 0 4px rgba(94,52,182,.08); }
    .template-grid,
    .company-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
    .template-card {
        border-radius: 22px;
        border: 1px solid rgba(17,19,39,.06);
        background: rgba(255,255,255,.94);
        padding: 18px;
        display: grid;
        gap: 14px;
        transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
        min-height: 220px;
    }
    .template-card:hover,
    .company-card:hover { transform: translateY(-2px); border-color: rgba(94,52,182,.18); box-shadow: 0 20px 40px rgba(17,19,39,.07); }
    .template-topline {
        display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap;
    }.meta-pill {
        min-height: 30px; padding: 6px 10px; border-radius: 999px; font-size: .72rem;
        display: inline-flex; align-items: center; border: 1px solid rgba(17,19,39,.06);
        background: rgba(249,249,252,.9); color: var(--muted); white-space: nowrap;
    }
    .template-title strong { display: block; font-size: 1.06rem; letter-spacing: -.03em; margin-bottom: 4px; }
    .template-title span { color: var(--muted); font-size: .84rem; line-height: 1.65; }
    .template-meta { display: flex; gap: 8px; flex-wrap: wrap; }
    .template-footer { margin-top: auto; display: flex; justify-content: space-between; gap: 12px; }
    .template-stat strong { display: block; color: var(--text); font-size: 1.35rem; line-height: 1; letter-spacing: -.05em; margin-bottom: 4px; }
    .template-stat span { color: var(--muted); font-size: .74rem; }
    .company-card {
        position: relative;
        min-height: 220px;
        border-radius: 26px;
        overflow: hidden;
        border: 1px solid rgba(17,19,39,.06);
        background: linear-gradient(135deg, rgba(255,255,255,1), rgba(246,246,252,.96));
        display: flex;
        align-items: flex-end;
        padding: 22px;
        isolation: isolate;
        box-shadow: 0 18px 36px rgba(17,19,39,.05);
    }
    .company-bg-logo {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        font-size: clamp(4rem, 12vw, 7rem);
        font-weight: 900;
        letter-spacing: -.08em;
        color: rgba(17,24,39,.06);
        z-index: -1;
        user-select: none;
    }
    .company-card::after {
        content: '';
        position: absolute;
        inset: auto 0 0 0;
        height: 55%;
        background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.95) 70%, rgba(255,255,255,1));
        z-index: -1;
    }
    .company-name-only {
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 14px;
    }
    .company-name-only strong {
        display: block;
        font-size: clamp(1.25rem, 2.6vw, 1.7rem);
        line-height: 1.02;
        letter-spacing: -.05em;
        max-width: 14ch;
    }
    .company-arrow {
        width: 44px; height: 44px; border-radius: 50%; flex: 0 0 44px;
        display: inline-grid; place-items: center; background: rgba(17,24,39,.05); font-size: 1.1rem;
    }
    .detail-hero {
        display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
        padding: 24px 26px; border-radius: 24px; border: 1px solid rgba(94,52,182,.12);
        background: linear-gradient(180deg, rgba(94,52,182,.06), rgba(79,109,241,.035));
    }
    .detail-hero-copy strong { display: block; margin: 0 0 8px; font-size: 1.05rem; letter-spacing: -.03em; }
    .detail-hero-copy span { color: var(--muted); line-height: 1.6; }
    .detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .cta-band { padding: 72px 0 0; }
    .cta-shell {
        padding: 28px 30px; border-radius: 30px;
        background: linear-gradient(135deg, rgba(94,52,182,.10), rgba(79,109,241,.07), rgba(255,255,255,.86));
        border: 1px solid rgba(94,52,182,.10); display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
    }
    .cta-shell h3 { margin: 0; font-size: clamp(1.6rem, 2.5vw, 2.4rem); line-height: 1.02; letter-spacing: -.05em; }
    .cta-shell p { margin: 10px 0 0; color: var(--muted); max-width: 760px; line-height: 1.7; font-size: .96rem; }
    .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    @media (max-width: 1100px) {
        .template-grid,
        .company-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    }
    @media (max-width: 760px) {
        .workspace { padding: 16px; }
        .section { padding: 18px; }
        .summary-cards,
        .template-grid,
        .company-grid { grid-template-columns: 1fr; }
        .company-card { min-height: 180px; padding: 18px; }
        .company-bg-logo { font-size: 4.8rem; }
        .detail-hero,
        .cta-shell,
        .frame-top { align-items: flex-start; }
        .frame-chip,
        .primary-link,
        .secondary-link { width: 100%; }
    }


/* Extracted from kontakt-os.php */
.contact-stage { padding: 18px 0 0; }
    .contact-shell {
        padding: 1px;
        border-radius: 34px;
        background: linear-gradient(135deg, rgba(94,52,182,.16), rgba(79,109,241,.08), rgba(255,255,255,.9));
        box-shadow: 0 30px 80px rgba(17,19,39,.08);
    }
    .contact-shell-inner {
        border-radius: 33px;
        background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,245,250,.96));
        border: 1px solid rgba(255,255,255,.8);
        padding: 18px;
    }
    .contact-frame {
        border-radius: 28px;
        overflow: hidden;
        border: 1px solid rgba(17,19,39,.06);
        background: #f4f3f7;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
    }
    .contact-top {
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 18px 22px;
        border-bottom: 1px solid rgba(17,19,39,.05);
        background: rgba(255,255,255,.86);
        flex-wrap: wrap;
    }
    .contact-top h2 { margin: 0; font-size: 1.2rem; letter-spacing: -.04em; }
    .contact-top p { margin: 4px 0 0; color: var(--muted); font-size: .82rem; }
    .contact-chip {
        min-height: 44px;
        padding: 0 16px;
        border-radius: 999px;
        border: 1px solid rgba(17,19,39,.06);
        background: rgba(255,255,255,.94);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: .84rem;
        font-weight: 700;
        color: inherit;
        text-decoration: none;
    }
    .contact-body {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
        gap: 0;
    }
    .contact-panel {
        padding: 34px;
        min-width: 0;
        background: rgba(255,255,255,.78);
    }
    .contact-panel + .contact-panel {
        border-left: 1px solid rgba(17,19,39,.05);
        background: linear-gradient(180deg, rgba(250,250,253,.98), rgba(244,244,249,.96));
    }
    .contact-heading {
        margin: 0;
        font-size: clamp(2rem, 3vw, 3rem);
        line-height: .98;
        letter-spacing: -.06em;
    }
    .contact-lead {
        margin: 14px 0 0;
        color: var(--muted);
        line-height: 1.7;
        font-size: 1rem;
        max-width: 60ch;
    }
    .contact-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 22px 0 26px;
    }
    .contact-pill {
        min-height: 38px;
        padding: 0 14px;
        border-radius: 999px;
        border: 1px solid rgba(17,19,39,.06);
        background: rgba(255,255,255,.9);
        display: inline-flex;
        align-items: center;
        font-size: .82rem;
        font-weight: 700;
    }
    .contact-form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 16px;
    }
    .contact-field { display: grid; gap: 8px; }
    .contact-field.full { grid-column: 1 / -1; }
    .contact-label {
        font-size: .9rem;
        font-weight: 700;
        color: var(--text);
    }
    .contact-input,
    .contact-textarea {
        width: 100%;
        border-radius: 16px;
        border: 1px solid rgba(17,19,39,.08);
        background: rgba(255,255,255,.98);
        padding: 0 16px;
        font: inherit;
        color: var(--text);
        box-sizing: border-box;
        transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    .contact-input {
        min-height: 56px;
    }
    .contact-textarea {
        min-height: 180px;
        resize: vertical;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .contact-input:focus,
    .contact-textarea:focus {
        outline: none;
        border-color: rgba(94,52,182,.28);
        box-shadow: 0 0 0 4px rgba(94,52,182,.08);
    }
    .contact-submit {
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }
    .contact-submit-copy {
        color: var(--muted);
        font-size: .9rem;
        line-height: 1.6;
        max-width: 48ch;
    }
    .contact-button {
        min-height: 54px;
        padding: 0 22px;
        border-radius: 8px;
        border: 1px solid var(--brand);
        background: var(--brand);
        color: #fff;
        font: inherit;
        font-weight: 500;
        cursor: pointer;
        box-shadow: 0 10px 22px rgba(63, 109, 246, 0.18);
    }
    .contact-meta {
        display: grid;
        gap: 14px;
        margin-top: 28px;
    }
    .contact-meta-card {
        border-radius: 22px;
        border: 1px solid rgba(17,19,39,.06);
        background: rgba(255,255,255,.92);
        padding: 18px 18px 20px;
        box-shadow: 0 16px 38px rgba(17,19,39,.05);
    }
    .contact-meta-card strong {
        display: block;
        font-size: 1rem;
        letter-spacing: -.03em;
        margin-bottom: 6px;
    }
    .contact-meta-card p,
    .contact-meta-card a {
        margin: 0;
        color: var(--muted);
        line-height: 1.65;
        text-decoration: none;
    }
    .contact-side-top {
        display: grid;
        gap: 14px;
        margin-bottom: 18px;
    }
    .contact-company {
        border-radius: 24px;
        padding: 24px;
        background: linear-gradient(180deg, rgba(17,24,39,.98), rgba(31,41,55,.96));
        color: #fff;
        box-shadow: 0 24px 54px rgba(17,19,39,.16);
    }
    .contact-company h3 {
        margin: 8px 0 14px;
        font-size: 1.65rem;
        letter-spacing: -.05em;
        color: #fff;
    }
    .contact-company-list {
        display: grid;
        gap: 12px;
    }
    .contact-company-row {
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,.08);
        background: rgba(255,255,255,.06);
        padding: 14px 16px;
    }
    .contact-company-row span {
        display: block;
        font-size: .75rem;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: rgba(255,255,255,.62);
        margin-bottom: 6px;
        font-weight: 700;
    }
    .contact-company-row strong,
    .contact-company-row a {
        color: #fff;
        text-decoration: none;
        font-size: .98rem;
    }
    .contact-side-card {
        border-radius: 22px;
        border: 1px solid rgba(17,19,39,.06);
        background: rgba(255,255,255,.92);
        padding: 22px;
        box-shadow: 0 16px 38px rgba(17,19,39,.05);
    }
    .contact-side-card h4 {
        margin: 8px 0 8px;
        font-size: 1.15rem;
        letter-spacing: -.03em;
    }
    .contact-side-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }
    .contact-support-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 14px;
        color: var(--text);
        font-weight: 700;
        text-decoration: none;
    }
    .contact-info-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 18px;
    }
    .contact-info-card {
        border-radius: 26px;
        border: 1px solid rgba(17,19,39,.05);
        background: rgba(255,255,255,.92);
        box-shadow: 0 18px 44px rgba(17,19,39,.05);
        padding: 26px;
    }
    .contact-info-card h3 {
        margin: 8px 0 12px;
        font-size: 1.4rem;
        letter-spacing: -.04em;
    }
    .contact-info-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.75;
    }
    .contact-list {
        margin: 14px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }
    .contact-list li {
        border-radius: 16px;
        border: 1px solid rgba(17,19,39,.06);
        background: rgba(249,249,252,.92);
        padding: 12px 14px;
        color: var(--text);
        font-weight: 600;
    }
    .contact-cta-band { padding: 72px 0 0; }
    .contact-cta-shell {
        padding: 28px 30px;
        border-radius: 30px;
        background: linear-gradient(135deg, rgba(94,52,182,.10), rgba(79,109,241,.07), rgba(255,255,255,.86));
        border: 1px solid rgba(94,52,182,.10);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
    }
    .contact-cta-shell h3 {
        margin: 0;
        font-size: clamp(1.6rem, 2.5vw, 2.4rem);
        line-height: 1.02;
        letter-spacing: -.05em;
    }
    .contact-cta-shell p {
        margin: 10px 0 0;
        color: var(--muted);
        max-width: 760px;
        line-height: 1.7;
        font-size: .96rem;
    }
    .contact-cta-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }
    .contact-link-primary,
    .contact-link-secondary {
        min-height: 48px;
        padding: 0 18px;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .contact-link-primary {
        background: var(--brand);
        color: #fff;
        box-shadow: 0 10px 22px rgba(63, 109, 246, 0.18);
    }
    .contact-link-secondary {
        background: rgba(255,255,255,.94);
        color: var(--text);
        border: 1px solid rgba(17,19,39,.06);
    }
    @media (max-width: 1100px) {
        .contact-body,
        .contact-info-grid { grid-template-columns: 1fr; }
        .contact-panel + .contact-panel { border-left: 0; border-top: 1px solid rgba(17,19,39,.05); }
    }
    @media (max-width: 760px) {
        .contact-shell-inner { padding: 14px; }
        .contact-panel { padding: 22px 18px; }
        .contact-form-grid { grid-template-columns: 1fr; }
        .contact-heading { font-size: 2.1rem; }
        .contact-submit { align-items: stretch; }
        .contact-button,
        .contact-chip,
        .contact-link-primary,
        .contact-link-secondary { width: 100%; }
        .contact-cta-shell,
        .contact-top { align-items: flex-start; }
    }


    .contact-form-shell {
        position: relative;
    }

    .contact-success-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        border-radius: 28px;
        background: rgba(255,255,255,.92);
        backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .22s ease, visibility .22s ease;
        z-index: 4;
    }

    .contact-form-shell.is-success .contact-success-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .contact-success-card {
        width: min(100%, 460px);
        text-align: center;
        border-radius: 24px;
        border: 1px solid rgba(17,19,39,.08);
        background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,248,252,.96));
        box-shadow: 0 24px 60px rgba(17,19,39,.08);
        padding: 30px 26px;
    }

    .contact-success-icon {
        width: 78px;
        height: 78px;
        margin: 0 auto 16px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, #5e34b6, #6d5ef5);
        color: #fff;
        font-size: 2rem;
        font-weight: 800;
        box-shadow: 0 16px 34px rgba(94,52,182,.24);
    }

    .contact-success-card h3 {
        margin: 0 0 10px;
        font-size: clamp(1.5rem, 2.6vw, 2rem);
        letter-spacing: -.05em;
    }

    .contact-success-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }

    .contact-inline-error {
        display: none;
        margin-top: 14px;
        padding: 14px 16px;
        border-radius: 16px;
        border: 1px solid rgba(220, 38, 38, .14);
        background: rgba(254, 242, 242, .92);
        color: #991b1b;
        font-weight: 600;
        line-height: 1.5;
    }

    .contact-inline-error.is-visible {
        display: block;
    }

    .contact-button.is-loading {
        opacity: .75;
        cursor: wait;
    }


/* Extracted from login.php */
.page { max-width:1360px; margin:0 auto; }
        .topbar-wrap { position:sticky; top:0; z-index:30; margin:0 calc(50% - 50vw); background:#fff; border-bottom:1px solid var(--border); }
        .topbar { max-width:1360px; margin:0 auto; padding:18px 34px; display:grid; grid-template-columns:1fr auto 1fr; gap:24px; align-items:center; background:#fff; }
        .brand { justify-self:start; display:inline-flex; align-items:flex-start; gap:12px; text-decoration:none; }
        .brand-mark { position:relative; width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center; }
        .orbit { position:absolute; left:50%; top:50%; border-radius:50%; border:1.5px solid rgba(95,139,255,.34); transform:translate(-50%,-50%); }
        .orbit.a { width:32px; height:20px; transform:translate(-50%,-50%) rotate(18deg); }
        .orbit.b { width:22px; height:32px; border-color:rgba(106,70,217,.28); transform:translate(-50%,-50%) rotate(-18deg); }
        .core { position:absolute; left:50%; top:50%; width:12px; height:12px; transform:translate(-50%,-50%); border-radius:50%; background:linear-gradient(135deg,var(--accent),var(--accent2)); box-shadow:0 0 0 4px rgba(95,139,255,.10),0 8px 18px rgba(94,52,182,.16); }
        .node { position:absolute; width:6px; height:6px; border-radius:50%; background:#fff; border:1.5px solid rgba(95,139,255,.44); box-shadow:0 0 0 2px rgba(95,139,255,.10); }
        .node.n1 { top:4px; right:7px; } .node.n2 { left:4px; bottom:9px; border-color:rgba(106,70,217,.40); } .node.n3 { right:7px; bottom:5px; }
        .brand-copy { display:inline-flex; flex-direction:column; gap:2px; }
        .brand-text,.gradient { background:linear-gradient(135deg,var(--accent),var(--accent2)); -webkit-background-clip:text; background-clip:text; color:transparent; }
        .brand-text { font-size:1.54rem; line-height:1; font-weight:800; letter-spacing:-.05em; }
        .brand-note { margin-left:3px; font-family:'Caveat',cursive; font-size:.94rem; font-weight:700; color:rgba(198,12,48,.72); transform:rotate(-4deg); }
        .nav { display:inline-flex; align-items:center; gap:32px; justify-self:center; }
        .nav a { color:#444b60; font-size:.96rem; font-weight:650; }
        .actions { display:inline-flex; align-items:center; gap:12px; justify-self:end; }
        .button,.button-soft,.button-ghost {
            display:inline-flex; align-items:center; justify-content:center; min-height:46px; padding:0 16px;
            border-radius:999px; font-size:.94rem; font-weight:700; letter-spacing:-.02em; white-space:nowrap;
        }
        .button { color:#fff; background:var(--brand); border:1px solid var(--brand); box-shadow:0 10px 22px rgba(63,109,246,.18); }
        .button-soft { color:var(--text); background:rgba(255,255,255,.86); border:1px solid var(--border); box-shadow:0 10px 24px rgba(17,19,39,.04); }
        .hero { min-height:calc(100vh - 120px); display:flex; align-items:center; justify-content:center; padding:36px 0; }
        .hero-inner { width:100%; max-width:980px; text-align:center; }
        h1 { margin:0 auto; max-width:860px; font-size:clamp(2.15rem,4vw,4rem); line-height:1.02; letter-spacing:-.06em; font-weight:780; }
        .lead { margin:18px auto 0; max-width:860px; font-size:1.03rem; line-height:1.68; letter-spacing:-.026em; color:var(--muted); font-weight:500; }
        .lotr-note {
            display:inline-flex; align-items:center; gap:10px; margin-top:18px; padding:10px 14px; border-radius:999px;
            background:rgba(255,255,255,.86); border:1px solid var(--border); box-shadow:0 10px 24px rgba(17,19,39,.03);
            font-size:.86rem; font-weight:700; color:#3f465d;
        }
        .shell {
            margin:28px auto 0; border-radius:32px; padding:28px;
            background:linear-gradient(180deg,rgba(255,255,255,.94),rgba(255,255,255,.82));
            border:1px solid rgba(17,19,39,.06); box-shadow:var(--shadow);
        }
        .card {
            border-radius:24px; padding:22px 20px; background:var(--surface);
            border:1px solid var(--border); box-shadow:0 16px 34px rgba(17,19,39,.04);
            text-align:left;
        }
        .card h2 { margin:0; font-size:1.08rem; line-height:1.15; letter-spacing:-.03em; font-weight:760; }
        .field { display:grid; gap:8px; margin-top:16px; }
        .field label { font-size:.84rem; font-weight:700; color:#353b4f; }
        .input,.select,.textarea {
            width:100%; min-height:50px; border-radius:16px; border:1px solid rgba(17,19,39,.1);
            background:rgba(255,255,255,.92); padding:0 14px; font:inherit; color:var(--text); outline:none;
        }
        .textarea { min-height:126px; padding:14px; resize:vertical; }
        .stack { display:grid; gap:14px; }
        .tiny { font-size:.82rem; line-height:1.5; color:rgba(86,91,107,.86); font-weight:600; }
        .muted-link { color:var(--muted); font-weight:700; font-size:.86rem; }
        .accent-link { color:#5e34b6; font-weight:800; }
        .footer-center { text-align:center; margin-top:16px; }
        .divider { height:1px; background:rgba(17,19,39,.08); margin:18px 0; }
        .option-grid { display:grid; gap:12px; margin-top:16px; }
        .option {
            display:grid; gap:4px; padding:18px 16px; border-radius:18px;
            background:rgba(255,255,255,.82); border:1px solid rgba(17,19,39,.07);
        }
        .option strong { font-size:.92rem; }
        .option span { font-size:.84rem; color:var(--muted); font-weight:600; }
        @media (max-width:980px){
            .topbar{grid-template-columns:1fr;justify-items:center;gap:14px;padding:16px 18px}
            .brand,.nav,.actions{justify-self:center}
            .nav{flex-wrap:wrap;gap:16px 22px}
            .actions{flex-wrap:wrap;justify-content:center}
            .hero{min-height:auto;padding:46px 0}
        }


/* Extracted from signup.php */
* { box-sizing:border-box; }
        a { color:inherit; text-decoration:none; }
        .page { max-width:1360px; margin:0 auto; }
        .topbar-wrap { position:sticky; top:0; z-index:30; margin:0 calc(50% - 50vw); background:#fff; border-bottom:1px solid var(--border); }
        .topbar { max-width:1360px; margin:0 auto; padding:18px 34px; display:grid; grid-template-columns:1fr auto 1fr; gap:24px; align-items:center; background:#fff; }
        .brand { justify-self:start; display:inline-flex; align-items:flex-start; gap:12px; text-decoration:none; }
        .brand-mark { position:relative; width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center; }
        .orbit { position:absolute; left:50%; top:50%; border-radius:50%; border:1.5px solid rgba(95,139,255,.34); transform:translate(-50%,-50%); }
        .orbit.a { width:32px; height:20px; transform:translate(-50%,-50%) rotate(18deg); }
        .orbit.b { width:22px; height:32px; border-color:rgba(106,70,217,.28); transform:translate(-50%,-50%) rotate(-18deg); }
        .core { position:absolute; left:50%; top:50%; width:12px; height:12px; transform:translate(-50%,-50%); border-radius:50%; background:linear-gradient(135deg,var(--accent),var(--accent2)); box-shadow:0 0 0 4px rgba(95,139,255,.10),0 8px 18px rgba(94,52,182,.16); }
        .node { position:absolute; width:6px; height:6px; border-radius:50%; background:#fff; border:1.5px solid rgba(95,139,255,.44); box-shadow:0 0 0 2px rgba(95,139,255,.10); }
        .node.n1 { top:4px; right:7px; } .node.n2 { left:4px; bottom:9px; border-color:rgba(106,70,217,.40); } .node.n3 { right:7px; bottom:5px; }
        .brand-copy { display:inline-flex; flex-direction:column; gap:2px; }
        .brand-text,.gradient { background:linear-gradient(135deg,var(--accent),var(--accent2)); -webkit-background-clip:text; background-clip:text; color:transparent; }
        .brand-text { font-size:1.54rem; line-height:1; font-weight:800; letter-spacing:-.05em; }
        .brand-note { margin-left:3px; font-family:'Caveat',cursive; font-size:.94rem; font-weight:700; color:rgba(198,12,48,.72); transform:rotate(-4deg); }
        .nav { display:inline-flex; align-items:center; gap:32px; justify-self:center; }
        .nav a { color:#444b60; font-size:.96rem; font-weight:650; }
        .actions { display:inline-flex; align-items:center; gap:12px; justify-self:end; }
        .button,.button-soft,.button-ghost {
            display:inline-flex; align-items:center; justify-content:center; min-height:46px; padding:0 16px;
            border-radius:999px; font-size:.94rem; font-weight:700; letter-spacing:-.02em; white-space:nowrap;
        }
        .button { color:#fff; background:var(--brand); border:1px solid var(--brand); box-shadow:0 10px 22px rgba(63,109,246,.18); }
        .button-soft { color:var(--text); background:rgba(255,255,255,.86); border:1px solid var(--border); box-shadow:0 10px 24px rgba(17,19,39,.04); }
        .hero { min-height:calc(100vh - 120px); display:flex; align-items:center; justify-content:center; padding:36px 0; }
        .hero-inner { width:100%; max-width:980px; text-align:center; }
        h1 { margin:0 auto; max-width:860px; font-size:clamp(2.15rem,4vw,4rem); line-height:1.02; letter-spacing:-.06em; font-weight:780; }
        .lead { margin:18px auto 0; max-width:860px; font-size:1.03rem; line-height:1.68; letter-spacing:-.026em; color:var(--muted); font-weight:500; }
        .lotr-note {
            display:inline-flex; align-items:center; gap:10px; margin-top:18px; padding:10px 14px; border-radius:999px;
            background:rgba(255,255,255,.86); border:1px solid var(--border); box-shadow:0 10px 24px rgba(17,19,39,.03);
            font-size:.86rem; font-weight:700; color:#3f465d;
        }
        .shell {
            margin:28px auto 0; border-radius:32px; padding:28px;
            background:linear-gradient(180deg,rgba(255,255,255,.94),rgba(255,255,255,.82));
            border:1px solid rgba(17,19,39,.06); box-shadow:var(--shadow);
        }
        .card {
            border-radius:24px; padding:22px 20px; background:var(--surface);
            border:1px solid var(--border); box-shadow:0 16px 34px rgba(17,19,39,.04);
            text-align:left;
        }
        .card h2 { margin:0; font-size:1.08rem; line-height:1.15; letter-spacing:-.03em; font-weight:760; }
        .field { display:grid; gap:8px; margin-top:16px; }
        .field label { font-size:.84rem; font-weight:700; color:#353b4f; }
        .input,.select,.textarea {
            width:100%; min-height:50px; border-radius:16px; border:1px solid rgba(17,19,39,.1);
            background:rgba(255,255,255,.92); padding:0 14px; font:inherit; color:var(--text); outline:none;
        }
        .textarea { min-height:126px; padding:14px; resize:vertical; }
        .stack { display:grid; gap:14px; }
        .tiny { font-size:.82rem; line-height:1.5; color:rgba(86,91,107,.86); font-weight:600; }
        .muted-link { color:var(--muted); font-weight:700; font-size:.86rem; }
        .accent-link { color:#5e34b6; font-weight:800; }
        .footer-center { text-align:center; margin-top:16px; }
        .divider { height:1px; background:rgba(17,19,39,.08); margin:18px 0; }
        .option-grid { display:grid; gap:12px; margin-top:16px; }
        .option {
            display:grid; gap:4px; padding:18px 16px; border-radius:18px;
            background:rgba(255,255,255,.82); border:1px solid rgba(17,19,39,.07);
        }
        .option strong { font-size:.92rem; }
        .option span { font-size:.84rem; color:var(--muted); font-weight:600; }
        @media (max-width:980px){
            .topbar{grid-template-columns:1fr;justify-items:center;gap:14px;padding:16px 18px}
            .brand,.nav,.actions{justify-self:center}
            .nav{flex-wrap:wrap;gap:16px 22px}
            .actions{flex-wrap:wrap;justify-content:center}
            .hero{min-height:auto;padding:46px 0}
        }
/* New da subpage design layer */
.page-shell > main,
main.subpage-main,
main.sales-page,
main.pricing-page,
main.contact-page,
main.login-page,
main.signup-page {
  background:
    radial-gradient(circle at 8% 6%, rgba(63, 109, 246, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 46%, #ffffff 100%);
}

/* Ordbog detail pages: align individual entries with the compact product/emneliste layout. */
.dictionary-detail-page {
  background: #fff;
}

.dictionary-detail-page .page-shell > main {
  background: transparent;
  overflow: clip;
}

.dictionary-detail-page .sales-intro {
  padding: 82px 32px 0;
}

.dictionary-detail-page .sales-intro-inner {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 1540px;
  min-height: 460px;
  margin: 0 auto;
  padding: clamp(56px, 6vw, 88px) clamp(24px, 5vw, 72px);
  overflow: hidden;
  border-radius: 44px 44px 0 0;
  background: #f8fafc;
  box-shadow: 0 22px 58px rgba(31, 53, 84, 0.08);
  text-align: center;
}

.dictionary-detail-page .sales-intro-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(63, 109, 246, 0.08), transparent 17%),
    radial-gradient(circle at 82% 16%, rgba(63, 109, 246, 0.07), transparent 16%);
  pointer-events: none;
}

.dictionary-detail-page .sales-intro-inner > * {
  position: relative;
  z-index: 1;
}

.dictionary-detail-page .sales-intro-title {
  max-width: 1120px;
  margin: 0 auto;
  color: #111c3d;
  font-size: clamp(40px, 3.55vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 720;
}

.dictionary-detail-page .gradient-text {
  color: #3f6df6;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.dictionary-detail-page .sales-intro-copy {
  max-width: 920px;
  margin: 24px auto 0;
  color: #5c7290;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.52;
  font-weight: 500;
}

.dictionary-detail-page .h1-trial-cta {
  margin-top: 30px;
}

.dictionary-detail-page .cohertus-section,
.dictionary-detail-page .website-data-section,
.dictionary-detail-page .pricing-section {
  padding: 18px 32px 0;
}

.dictionary-detail-page .cohertus-section:last-of-type {
  padding-bottom: 76px;
}

.dictionary-detail-page .hero-shell,
.dictionary-detail-page .website-data-shell,
.dictionary-detail-page .pricing-shell {
  max-width: 1540px;
  padding: clamp(28px, 3vw, 44px);
  border-radius: 0;
  background: #eaf3ff;
}

.dictionary-detail-page .cohertus-section:last-of-type .hero-shell {
  border-radius: 0 0 42px 42px;
}

.dictionary-detail-page .hero-grid,
.dictionary-detail-page .website-data-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 4vw, 74px);
  align-items: start;
}

.dictionary-detail-page .cohertus-title,
.dictionary-detail-page .website-data-title,
.dictionary-detail-page .pricing-title {
  max-width: 860px;
  color: #08183c;
  font-size: clamp(28px, 2.65vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 720;
}

.dictionary-detail-page .hero-copy,
.dictionary-detail-page .website-data-copy,
.dictionary-detail-page .pricing-lead {
  max-width: 820px;
  color: #64748f;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.64;
  font-weight: 500;
}

.dictionary-detail-page .cohertus-prompt-panel,
.dictionary-detail-page .price-card,
.dictionary-detail-page .website-data-card {
  border: 1px solid rgba(190, 210, 238, 0.85);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(31, 53, 84, 0.12);
}

.dictionary-detail-page .cohertus-prompt-panel {
  margin: 0;
}

.dictionary-detail-page .cohertus-prompt-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.dictionary-detail-page .cohertus-status {
  color: #64748f;
}

.dictionary-detail-page .cohertus-prompt-actions {
  margin-top: 0;
}

.dictionary-detail-page .cohertus-prompt-actions ul,
.dictionary-detail-page .price-list,
.dictionary-detail-page .website-data-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #44546a;
  line-height: 1.7;
}

.dictionary-detail-page .website-data-cards {
  display: grid;
  gap: 18px;
}

.dictionary-detail-page .website-data-card {
  color: #44546a;
  font-size: 1rem;
  line-height: 1.72;
}

.dictionary-detail-page .website-data-card h2,
.dictionary-detail-page .website-data-card h3 {
  margin: 1.6rem 0 0.7rem;
  color: #08183c;
  font-size: clamp(1.35rem, 1.6vw, 1.8rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.dictionary-detail-page .website-data-card h2:first-child,
.dictionary-detail-page .website-data-card h3:first-child {
  margin-top: 0;
}

.dictionary-detail-page .website-data-card p {
  margin: 0.85rem 0;
}

.dictionary-detail-page .website-data-card pre {
  overflow-x: auto;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(190, 210, 238, 0.85);
  border-radius: 8px;
  background: #f8fbff;
  color: #08183c;
  font: 750 0.98rem/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

.dictionary-detail-page .website-data-card a {
  color: #3f6df6;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.dictionary-detail-page .pricing-grid {
  gap: 18px;
}

@media (max-width: 980px) {
  .dictionary-detail-page .sales-intro {
    padding: 76px 12px 0;
  }

  .dictionary-detail-page .sales-intro-inner {
    min-height: auto;
    padding: 64px 24px;
    border-radius: 30px 30px 0 0;
  }

  .dictionary-detail-page .cohertus-section,
  .dictionary-detail-page .website-data-section,
  .dictionary-detail-page .pricing-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .dictionary-detail-page .hero-grid,
  .dictionary-detail-page .website-data-grid,
  .dictionary-detail-page .pricing-grid {
    grid-template-columns: 1fr;
  }

  .dictionary-detail-page .cohertus-section:last-of-type .hero-shell {
    border-radius: 0 0 30px 30px;
  }
}

@media (max-width: 640px) {
  .dictionary-detail-page .sales-intro-title {
    font-size: clamp(34px, 9vw, 46px);
  }

  .dictionary-detail-page .sales-intro-copy {
    font-size: 16px;
  }

  .dictionary-detail-page .hero-shell,
  .dictionary-detail-page .website-data-shell,
  .dictionary-detail-page .pricing-shell {
    padding: 18px;
  }
}

/* Generic comparison pages */
.comparison-page {
  --cmp-ink: #111827;
  --cmp-muted: #5f6878;
  --cmp-line: rgba(17, 24, 39, 0.10);
  --cmp-green: #20c77a;
  --cmp-blue: #2563eb;
  --cmp-yellow: #f7d95b;
  --cmp-panel: rgba(255, 255, 255, 0.92);
  color: var(--cmp-ink);
  background: #fff;
  overflow: clip;
}

.comparison-page * { box-sizing: border-box; }

.cmp-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.cmp-hero {
  padding: 82px 0 42px;
  background:
    radial-gradient(circle at 12% 5%, rgba(32, 199, 122, 0.16), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(37, 99, 235, 0.13), transparent 31%),
    linear-gradient(180deg, #fffdf5 0%, #ffffff 72%);
  margin: 0 calc(50% - 50vw);
}

.cmp-hero .cmp-shell { max-width: 1040px; }

.cmp-title {
  margin: 0;
  max-width: 860px;
  color: var(--cmp-ink);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

.cmp-gradient {
  background: linear-gradient(110deg, var(--cmp-blue), #0f9f68);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cmp-lead {
  margin: 22px 0 0;
  max-width: 740px;
  color: var(--cmp-muted);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0;
  font-weight: 540;
}

.cmp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cmp-button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: 0;
}

.cmp-button.primary {
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  box-shadow: 0 10px 22px rgba(63, 109, 246, 0.18);
}

.cmp-button.secondary {
  color: var(--cmp-ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--cmp-line);
}

.cmp-section { padding: 44px 0 0; }

.cmp-section-head {
  max-width: 820px;
  margin-bottom: 20px;
}

.cmp-section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cmp-section-title {
  margin: 0;
  color: var(--cmp-ink);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 850;
}

.cmp-section-copy {
  margin: 14px 0 0;
  color: var(--cmp-muted);
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: 0;
  font-weight: 520;
}

.cmp-choice-grid,
.cmp-story-grid,
.cmp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cmp-choice-card,
.cmp-panel,
.cmp-story-card,
.cmp-faq-card {
  border-radius: 24px;
  padding: 24px;
  background: var(--cmp-panel);
  border: 1px solid var(--cmp-line);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.06);
}

.cmp-choice-card.featured {
  background: linear-gradient(180deg, rgba(32, 199, 122, 0.10), rgba(255, 255, 255, 0.92));
  border-color: rgba(32, 199, 122, 0.20);
}

.cmp-choice-card h3,
.cmp-panel h3,
.cmp-result-card h3,
.cmp-story-card h3,
.cmp-faq-card h3 {
  margin: 0;
  color: var(--cmp-ink);
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 850;
}

.cmp-choice-card p,
.cmp-panel p,
.cmp-result-card p,
.cmp-story-card p,
.cmp-faq-card p {
  margin: 12px 0 0;
  color: var(--cmp-muted);
  font-size: 15px;
  line-height: 1.65;
}

.cmp-pill-list,
.cmp-check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cmp-pill-list li,
.cmp-check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #263449;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.cmp-pill-list li::before,
.cmp-check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--cmp-green);
}

.cmp-table-card {
  overflow: auto;
  border-radius: 24px;
  border: 1px solid var(--cmp-line);
  background: #fff;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.06);
}

.cmp-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.cmp-table th,
.cmp-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  text-align: left;
  vertical-align: top;
}

.cmp-table tr:last-child td { border-bottom: 0; }

.cmp-table th {
  background: #f8fafc;
  color: #667085;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Comparison overview */
.compare-index-page .cmp-hero {
  background:
    radial-gradient(circle at 12% 5%, rgba(63, 109, 246, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 78%);
}

.compare-card-section {
  padding-bottom: 88px;
}

.compare-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.compare-card {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(207, 218, 233, 0.9);
  border-radius: 22px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.compare-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 109, 246, 0.45);
  box-shadow: 0 26px 58px rgba(31, 53, 84, 0.12);
  text-decoration: none;
}

.compare-card-visual {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  justify-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(207, 218, 233, 0.86);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 246, 252, 0.98)),
    radial-gradient(circle at 18% 24%, rgba(32, 168, 102, 0.12), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(63, 109, 246, 0.16), transparent 26%);
}

.compare-card-logo {
  position: relative;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(207, 218, 233, 0.72);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(31, 53, 84, 0.1);
}

.compare-card-logo img {
  position: relative;
  z-index: 1;
  max-width: 58px;
  max-height: 48px;
  object-fit: contain;
}

.compare-card-logo img + .compare-card-logo-fallback {
  opacity: 0;
}

.compare-card-logo-coherta {
  border-color: rgba(63, 109, 246, 0.16);
  background: #eef4ff;
}

.compare-card-logo-fallback {
  position: absolute;
  inset: 9px;
  display: grid;
  place-items: center;
  color: #111c3d;
  font-size: 10px;
  line-height: 1.15;
  font-weight: 850;
  text-align: center;
}

.compare-card-visual i {
  color: #64748f;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.compare-card-body {
  min-height: 290px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.compare-card-body > strong {
  color: #111c3d;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

.compare-card-body > span {
  margin-top: 12px;
  color: #64748f;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 500;
}

.compare-card-body em {
  margin-top: auto;
  padding-top: 22px;
  color: #3f6df6;
  font-style: normal;
  font-weight: 850;
}

.compare-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid rgba(207, 218, 233, 0.9);
  border-radius: 24px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.08);
}

.compare-empty h3 {
  margin: 0;
  color: #111c3d;
  font-size: 24px;
  letter-spacing: 0;
}

.compare-empty p {
  margin: 12px 0 0;
  color: #64748f;
  line-height: 1.6;
}

@media (max-width: 1060px) {
  .compare-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .compare-card-grid {
    grid-template-columns: 1fr;
  }

  .compare-card-body {
    min-height: auto;
  }
}

.cmp-table td {
  color: #3d4758;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 540;
}

.cmp-table td:first-child {
  color: var(--cmp-ink);
  font-weight: 820;
}

.cmp-table .is-strong {
  color: #0f9f68;
  font-weight: 850;
}

.cmp-table .is-muted { color: #8a94a6; }

.cmp-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cmp-result-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #111827 0%, #192338 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
}

.cmp-result-card strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.cmp-result-card h3 { color: #fff; }
.cmp-result-card p { color: rgba(255, 255, 255, 0.72); }

.cmp-story-card { padding: 28px; }

.cmp-story-card span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.09);
  color: var(--cmp-blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.cmp-faq-card {
  padding: 22px;
  border-radius: 20px;
}

.cmp-cta {
  margin: 54px 0 82px;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(247, 217, 91, 0.26), transparent 28%),
    linear-gradient(135deg, #101827 0%, #18243a 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cmp-cta h2 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 900;
}

.cmp-cta p {
  margin: 14px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .cmp-hero { padding: 54px 0 30px; }
  .cmp-title { font-size: clamp(38px, 11vw, 58px); }

  .cmp-choice-grid,
  .cmp-results-grid,
  .cmp-story-grid,
  .cmp-faq-grid {
    grid-template-columns: 1fr;
  }

  .cmp-cta {
    display: grid;
    margin-bottom: 56px;
  }
}

.page-shell > main {
  min-height: 60vh;
}

.sales-intro,
.contact-hero,
.login-hero,
.signup-hero {
  position: relative;
  padding: clamp(4.8rem, 8vw, 7rem) 1.5rem clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.sales-intro-inner,
.hero-shell,
.pricing-shell,
.website-data-shell,
.section-shell,
.contact-shell,
.login-shell,
.signup-shell {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.sales-intro-inner {
  max-width: 920px;
}

.sales-intro-title,
.pricing-title,
.section-title,
.cohertus-title,
.website-data-title,
.contact-title,
.login-title,
.signup-title {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.sales-intro-title {
  max-width: 880px;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

.section-title,
.pricing-title,
.cohertus-title,
.website-data-title,
.contact-title,
.login-title,
.signup-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.gradient-text {
  color: var(--text);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.sales-intro-copy,
.section-copy,
.pricing-lead,
.hero-copy,
.website-data-copy,
.contact-lead,
.login-lead,
.signup-lead,
.lead {
  max-width: 760px;
  color: #607087;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.72;
}

.sales-intro-copy {
  margin: 1.35rem 0 0;
}

.match-model-section,
.pricing-section,
.cohertus-section,
.website-data-section,
.content-section,
.contact-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-header,
.pricing-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.match-grid,
.hero-grid,
.website-data-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.col-md-6,
.col-md-5,
.col-md-7,
.col-lg-6,
.col-lg-5,
.col-lg-7 {
  min-width: 0;
}

.order-md-first {
  order: -1;
}

.gap-y,
.gap-xy {
  gap: clamp(1rem, 3vw, 2rem);
}

.gap-xy,
.website-data-actions,
.contact-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.match-copy,
.price-card,
.cohertus-prompt-panel,
.website-data-note,
.contact-card,
.login-card,
.signup-card,
.feature-card,
.info-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.match-copy {
  padding: clamp(1.6rem, 4vw, 3rem);
}

.cta-button,
.btn,
.btn-success,
.price-cta,
.primary-link,
.contact-link-primary,
.cohertus-button,
.login-button,
.signup-button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.cta-button:hover,
.btn:hover,
.btn-success:hover,
.price-cta:hover,
.primary-link:hover,
.contact-link-primary:hover,
.cohertus-button:hover,
.login-button:hover,
.signup-button:hover {
  transform: translateY(-1px);
  background: var(--brand-dark);
  box-shadow: 0 14px 34px rgba(63, 109, 246, 0.22);
  color: #fff;
}

.cta-button-soft,
.price-cta.soft,
.cursor-link,
.muted-link,
.contact-link-secondary {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.cta-button-soft:hover,
.price-cta.soft:hover,
.cursor-link:hover,
.muted-link:hover,
.contact-link-secondary:hover {
  border-color: rgba(63, 109, 246, 0.35);
  color: var(--brand);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  position: relative;
  height: 100%;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.price-card.is-featured {
  border-color: rgba(63, 109, 246, 0.42);
  box-shadow: 0 22px 60px rgba(63, 109, 246, 0.14);
}

.price-badge,
.cohertus-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(63, 109, 246, 0.18);
  border-radius: 999px;
  background: #eef4ff;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.42rem 0.7rem;
}

.price-plan {
  margin: 0.9rem 0 0.4rem;
  color: var(--text);
  font-size: 1.35rem;
}

.price-sub,
.price-billing,
.price-list-title,
.pricing-org-note,
.cohertus-subline,
.cohertus-helper {
  color: #64748b;
  line-height: 1.6;
}

.price-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 1.2rem 0 0.35rem;
  color: var(--text);
}

.price-amount {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.price-card-custom .price-amount {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  letter-spacing: -0.04em;
}

.price-list,
.price-list ul,
.section-shell ul,
.match-copy ul {
  padding-left: 1.1rem;
}

.price-list li,
.section-shell li,
.match-copy li {
  margin: 0.55rem 0;
  color: #44546a;
  line-height: 1.55;
}

.price-list a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.price-list a:hover,
.price-list a:focus-visible {
  color: var(--brand-dark);
}

.page-shell article table {
  width: 100%;
  margin-top: 1.25rem;
  border-collapse: collapse;
}

.page-shell article thead tr {
  background: #f2f5fb;
}

.page-shell article th,
.page-shell article td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--border);
}

.billing-toggle {
  display: inline-flex;
  width: fit-content;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.billing-toggle button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #607087;
  font: inherit;
  font-weight: 800;
  padding: 0.65rem 0.9rem;
  cursor: pointer;
}

.billing-toggle button.is-active {
  background: var(--brand);
  color: #fff;
}

.cohertus-prompt-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.cohertus-prompt-field {
  min-height: 9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--text);
  padding: 1rem;
}

.cohertus-prompt-actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.website-data-note {
  padding: 1rem;
  color: #44546a;
}

.contact-card,
.login-card,
.signup-card,
.feature-card,
.info-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

input,
select,
textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(63, 109, 246, 0.65);
  box-shadow: 0 0 0 4px rgba(63, 109, 246, 0.12);
  outline: 0;
}

.tiny,
.footer-note {
  color: #7a889a;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .match-grid,
  .hero-grid,
  .website-data-grid,
  .contact-grid,
  .row,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .order-md-first {
    order: 0;
  }
}

@media (max-width: 640px) {
  .sales-intro,
  .contact-hero,
  .login-hero,
  .signup-hero {
    padding-top: 3.5rem;
  }

  .sales-intro-inner,
  .hero-shell,
  .pricing-shell,
  .website-data-shell,
  .section-shell,
  .contact-shell,
  .login-shell,
  .signup-shell {
    width: min(100% - 1rem, 1120px);
  }

  .gap-xy,
  .website-data-actions,
  .contact-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-button,
  .btn,
  .btn-success,
  .price-cta,
  .primary-link,
  .contact-link-primary,
  .cta-button-soft,
  .cursor-link {
    width: 100%;
  }
}

/* Emnedatabase */
.emnedatabase-shell {
  overflow: hidden;
}

.emnedatabase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.emnedatabase-visual {
  display: grid;
  place-items: center;
}

.database-card {
  width: min(100%, 460px);
  padding: 1.25rem;
  border: 1px solid rgba(18, 33, 58, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  box-shadow: 0 24px 70px rgba(18, 33, 58, 0.12);
}

.database-card-head {
  display: grid;
  gap: 0.35rem;
  padding: 0.25rem 0 1rem;
  border-bottom: 1px solid rgba(18, 33, 58, 0.08);
}

.database-card-head span,
.database-row span,
.emnedatabase-step span {
  color: #65758b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.database-card-head strong {
  color: var(--text);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.05;
}

.database-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(18, 33, 58, 0.08);
}

.database-row strong {
  color: #172033;
  font-size: 1rem;
  text-align: right;
}

.database-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 1rem;
}

.database-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: #eef7f3;
  color: #1f6b50;
  font-size: 0.82rem;
  font-weight: 800;
}

.emnedatabase-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.emnedatabase-step {
  min-height: 220px;
  padding: 1.3rem;
  border: 1px solid rgba(18, 33, 58, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.emnedatabase-step h3 {
  margin: 0.8rem 0 0.55rem;
  color: var(--text);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.emnedatabase-step p {
  margin: 0;
  color: #526174;
  line-height: 1.62;
}

@media (max-width: 900px) {
  .emnedatabase-grid,
  .emnedatabase-steps {
    grid-template-columns: 1fr;
  }

  .emnedatabase-step {
    min-height: auto;
  }
}

/* Købssignaler */
.signals-shell {
  overflow: hidden;
}

.signals-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.signals-visual {
  display: grid;
  place-items: center;
}

.signal-alert-card {
  width: min(100%, 470px);
  padding: 1.25rem;
  border: 1px solid rgba(18, 33, 58, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 24px 70px rgba(18, 33, 58, 0.12);
}

.signal-alert-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(18, 33, 58, 0.08);
  color: #172033;
}

.signal-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #18a058;
  box-shadow: 0 0 0 6px rgba(24, 160, 88, 0.12);
}

.signal-alert-body {
  display: grid;
  gap: 0.9rem;
  padding: 1rem 0;
}

.signal-alert-line {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(243, 247, 252, 0.86);
}

.signal-alert-line span,
.signals-step span {
  color: #65758b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-alert-line strong {
  color: #172033;
  line-height: 1.35;
}

.signal-alert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 33, 58, 0.08);
}

.signal-alert-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: #fff4df;
  color: #8a4f00;
  font-size: 0.82rem;
  font-weight: 800;
}

.signals-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.signals-step {
  min-height: 220px;
  padding: 1.3rem;
  border: 1px solid rgba(18, 33, 58, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.signals-step h3 {
  margin: 0.8rem 0 0.55rem;
  color: var(--text);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.signals-step p {
  margin: 0;
  color: #526174;
  line-height: 1.62;
}

@media (max-width: 900px) {
  .signals-grid,
  .signals-steps {
    grid-template-columns: 1fr;
  }

  .signals-step {
    min-height: auto;
  }
}

/* Datavask */
.datawash-shell {
  overflow: hidden;
}

.datawash-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.datawash-visual {
  display: grid;
  place-items: center;
}

.datawash-card {
  width: min(100%, 480px);
  padding: 1.25rem;
  border: 1px solid rgba(18, 33, 58, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  box-shadow: 0 24px 70px rgba(18, 33, 58, 0.12);
}

.datawash-card-head {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(18, 33, 58, 0.08);
}

.datawash-card-head span,
.datawash-compare span,
.datawash-metrics span,
.datawash-step span {
  color: #65758b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.datawash-card-head strong {
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  line-height: 1.08;
}

.datawash-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem 0;
}

.datawash-compare div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(243, 247, 252, 0.86);
}

.datawash-compare p {
  margin: 0.45rem 0 0;
  color: #526174;
  line-height: 1.5;
}

.datawash-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 33, 58, 0.08);
}

.datawash-metrics div {
  display: grid;
  gap: 0.25rem;
}

.datawash-metrics strong {
  color: #172033;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.datawash-metrics span {
  line-height: 1.35;
}

.datawash-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.datawash-step {
  min-height: 220px;
  padding: 1.3rem;
  border: 1px solid rgba(18, 33, 58, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.datawash-step h3 {
  margin: 0.8rem 0 0.55rem;
  color: var(--text);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.datawash-step p {
  margin: 0;
  color: #526174;
  line-height: 1.62;
}

@media (max-width: 900px) {
  .datawash-grid,
  .datawash-steps {
    grid-template-columns: 1fr;
  }

  .datawash-step {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .datawash-compare,
  .datawash-metrics {
    grid-template-columns: 1fr;
  }
}

/* Stakeholder Monitoring */
.stakeholder-shell {
  overflow: hidden;
}

.stakeholder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.stakeholder-visual {
  display: grid;
  place-items: center;
}

.stakeholder-card {
  width: min(100%, 500px);
  padding: 1.25rem;
  border: 1px solid rgba(18, 33, 58, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  box-shadow: 0 24px 70px rgba(18, 33, 58, 0.12);
}

.stakeholder-card-head {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(18, 33, 58, 0.08);
}

.stakeholder-card-head span,
.stakeholder-step span {
  color: #65758b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stakeholder-card-head strong {
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  line-height: 1.08;
}

.stakeholder-list {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0;
}

.stakeholder-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(243, 247, 252, 0.86);
}

.stakeholder-avatar {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef4ff;
  color: #3f6df6;
  font-weight: 900;
}

.stakeholder-row div {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.stakeholder-row strong {
  color: #172033;
}

.stakeholder-row div span {
  color: #526174;
  line-height: 1.4;
}

.stakeholder-row em {
  font-style: normal;
  color: #1f6b50;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.stakeholder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 33, 58, 0.08);
}

.stakeholder-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: #eef7f3;
  color: #1f6b50;
  font-size: 0.82rem;
  font-weight: 800;
}

.stakeholder-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.stakeholder-step {
  min-height: 220px;
  padding: 1.3rem;
  border: 1px solid rgba(18, 33, 58, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.stakeholder-step h3 {
  margin: 0.8rem 0 0.55rem;
  color: var(--text);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.stakeholder-step p {
  margin: 0;
  color: #526174;
  line-height: 1.62;
}

@media (max-width: 900px) {
  .stakeholder-grid,
  .stakeholder-steps {
    grid-template-columns: 1fr;
  }

  .stakeholder-step {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .stakeholder-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .stakeholder-row em {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* AI Personalisering */
.aip-shell {
  overflow: hidden;
}

.aip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.aip-visual {
  display: grid;
  place-items: center;
}

.aip-message-card {
  width: min(100%, 520px);
  padding: 1.25rem;
  border: 1px solid rgba(18, 33, 58, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 24px 70px rgba(18, 33, 58, 0.12);
}

.aip-message-head {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(18, 33, 58, 0.08);
}

.aip-message-head span,
.aip-step span {
  color: #65758b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aip-message-head strong {
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  line-height: 1.08;
}

.aip-context {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 1rem 0;
}

.aip-context span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 0.82rem;
  font-weight: 800;
}

.aip-message {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(243, 247, 252, 0.86);
}

.aip-message p {
  margin: 0;
  color: #34445a;
  line-height: 1.6;
}

.aip-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.aip-step {
  min-height: 220px;
  padding: 1.3rem;
  border: 1px solid rgba(18, 33, 58, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.aip-step h3 {
  margin: 0.8rem 0 0.55rem;
  color: var(--text);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.aip-step p {
  margin: 0;
  color: #526174;
  line-height: 1.62;
}

@media (max-width: 900px) {
  .aip-grid,
  .aip-steps {
    grid-template-columns: 1fr;
  }

  .aip-step {
    min-height: auto;
  }
}

/* Utility classes extracted from inline style attributes */
.u-inline-style-001 { margin:0; }
.u-inline-style-005 { margin-bottom:10px; }
.u-inline-style-006 { margin-top:12px; }
.u-inline-style-007 { grid-template-columns:1fr; }
.u-inline-style-008 { margin-bottom:12px; }
.u-inline-style-009 { display:none; }
.u-inline-style-010 { max-width:560px; }
.u-inline-style-011 { margin-top:18px; }
.u-inline-style-012 { display:none; color:#c60c30; font-weight:700; margin-top:12px; }
.u-inline-style-013 { max-width:980px; margin:40px auto 0; text-align:left; }
.u-inline-style-014 { display:grid; grid-template-columns:1.2fr .8fr; gap:28px; }
.u-inline-style-015 { font-size:1.6rem; line-height:1.2; margin:10px 0 14px; }
.u-inline-style-016 { text-align:left; margin:0 0 16px; }
.u-inline-style-017 { text-align:left; margin:0; }
.u-inline-style-018 { padding:20px; border-radius:20px; border:1px solid rgba(17,19,39,.08); background:rgba(255,255,255,.9); box-shadow:0 12px 30px rgba(17,19,39,.05); }
.u-inline-style-019 { margin-top:0; }
.u-inline-style-020 { margin-top:16px; font-size:.85rem; color:var(--muted); font-weight:600; }
.u-inline-style-021 { padding:24px; border-radius:20px; border:1px solid rgba(17,19,39,.08); background:rgba(255,255,255,.9); box-shadow:0 12px 30px rgba(17,19,39,.05); }
.u-inline-style-022 { display:grid; gap:12px; }
.u-inline-style-023 { text-align:center; margin:16px 0; color:var(--muted); font-weight:700; }

/* Subpage readability: keep intros compact enough that the next content is visible. */
.sales-intro,
.contact-hero,
.login-hero,
.signup-hero {
  padding-top: clamp(3.2rem, 5.5vw, 5rem);
  padding-bottom: clamp(2.2rem, 4.2vw, 3.8rem);
}

.sales-intro-inner {
  max-width: 940px;
}

.sales-intro-title {
  max-width: 980px;
  font-size: clamp(2.15rem, 4.4vw, 4.15rem);
  line-height: 1.02;
}

.section-title,
.cohertus-title,
.website-data-title {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.sales-intro-copy,
.hero-copy,
.pricing-lead,
.section-copy,
.website-data-lead,
.contact-lead,
.login-lead,
.signup-lead {
  max-width: 760px;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

@media (max-width: 760px) {
  .sales-intro,
  .contact-hero,
  .login-hero,
  .signup-hero {
    padding-top: 2.8rem;
    padding-bottom: 2rem;
  }

  .sales-intro-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}

/* Shared header guard: subpage extracts are loaded after home.css and must not restyle the master top menu. */
.site-header {
  height: 64px;
  background: rgba(255,255,255,0.94);
  border-top: 0;
  border-bottom: 1px solid #dfe3e8;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
}

.site-header .header-inner {
  width: 100%;
  height: 100%;
  max-width: 1824px;
  margin: 0 auto;
  padding: 0 clamp(40px, 6vw, 84px);
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 48px);
  transform: translateY(2px);
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--text);
  line-height: 1;
}

.site-header .brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  overflow: visible;
}

.site-header .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-header .brand-name {
  font-size: clamp(21px, 1.5vw, 23px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.25vw, 48px);
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
}

.site-header .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: var(--text);
  font-size: clamp(13.5px, 0.92vw, 14.5px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.012em;
}

.site-header .nav-link.has-chevron::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg) translateY(-1px);
  display: inline-block;
}

.site-header .nav-item {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.site-header .dropdown-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: clamp(20px, 3vw, 42px);
  right: clamp(20px, 3vw, 42px);
  z-index: 30;
  padding: 24px 28px 26px;
  background: #ffffff;
  border: 1px solid #dfe3e8;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(31, 53, 84, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: none;
  pointer-events: none;
  transition: opacity 90ms ease, visibility 90ms ease;
  will-change: opacity;
  contain: layout paint;
}

.site-header .has-dropdown:hover .dropdown-panel,
.site-header .has-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header .dropdown-panel-small {
  max-width: 1460px;
  margin: 0 auto;
}

.site-header .dropdown-grid {
  display: grid;
  gap: clamp(30px, 5vw, 72px);
}

.site-header .dropdown-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
}

.site-header .dropdown-grid-two {
  grid-template-columns: repeat(2, minmax(300px, 360px));
  max-width: 760px;
  column-gap: 36px;
  justify-content: start;
}

.site-header .dropdown-column {
  min-width: 0;
}

.site-header .dropdown-heading {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 11.5px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.site-header .dropdown-copy {
  max-width: 390px;
  margin: 0 0 20px;
  color: #567097;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.site-header .dropdown-link {
  min-height: 36px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 13.8px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.018em;
  white-space: nowrap;
  padding: 8px 36px 8px 9px;
  margin-left: -9px;
  border-radius: 10px;
  border: 1px solid transparent;
  position: relative;
  transition: background 100ms ease, border-color 100ms ease;
}

.site-header .dropdown-link::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  color: #98a4b3;
  font-size: 24px;
  line-height: 1;
  opacity: 0;
  transition: opacity 150ms ease, transform 150ms ease;
}

.site-header .dropdown-link:hover,
.site-header .dropdown-link:focus-visible {
  background: #fff;
  border-color: #e7ebf1;
  box-shadow: none;
  transform: none;
}

.site-header .dropdown-link:hover::after,
.site-header .dropdown-link:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.site-header .dropdown-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid #e5e8ee;
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 11.5px;
  font-weight: 800;
  box-shadow: none;
}

.site-header .dropdown-icon.dropdown-icon-linkedin {
  border-color: #0a66c2;
  background: #0a66c2;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.site-header .dropdown-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #f6f8fb;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.site-header .nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1vw, 14px);
  flex: 0 0 auto;
  margin-left: auto;
}

.site-header .login-link {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: clamp(13.5px, 0.92vw, 14.5px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.012em;
  margin-right: clamp(6px, 1vw, 18px);
  white-space: nowrap;
}

.site-header .btn {
  height: clamp(40px, 3vw, 45px);
  min-height: 0;
  padding: 0 clamp(13px, 1.2vw, 17px);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: clamp(13.5px, 0.92vw, 14.5px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.012em;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.site-header .btn-outline {
  color: var(--text);
  border: 1px solid #e1e5eb;
  background: #fff;
  box-shadow: 0 8px 20px rgba(31, 53, 84, 0.04);
}

.site-header .btn-demo {
  border-color: #e1e5eb;
}

.site-header .demo-snake {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.site-header .demo-snake-line {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke: var(--brand);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 46 346;
  animation: demo-snake-loop 3.7s linear infinite;
}

.site-header .btn-label {
  position: relative;
  z-index: 2;
}

.site-header .btn-primary {
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  min-width: clamp(108px, 9vw, 130px);
  box-shadow: 0 10px 22px rgba(63, 109, 246, 0.18);
}

.home-page .page-shell > main.home-main {
  background: transparent;
}

@media (max-width: 1080px) {
  .site-header {
    height: 62px;
  }

  .site-header .header-inner {
    justify-content: space-between;
    align-items: center;
    padding-left: 28px;
    padding-right: 28px;
    transform: translateY(1px);
    position: relative;
  }

  .site-header .nav-links,
  .site-header .nav-actions {
    display: none;
  }

  .site-header .mobile-menu {
    display: flex;
    cursor: pointer;
  }

  .site-header.is-mobile-open {
    z-index: 60;
  }

  .site-header.is-mobile-open .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: flex;
    height: auto;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(31, 53, 84, 0.16);
  }

  .site-header.is-mobile-open .nav-item {
    display: block;
    height: auto;
  }

  .site-header.is-mobile-open .nav-link {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding: 0 12px;
    border-radius: 10px;
  }

  .site-header.is-mobile-open .dropdown-panel {
    position: static;
    display: block;
    margin: 2px 0 10px;
    padding: 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 10px;
  }

  .site-header.is-mobile-open .dropdown-grid,
  .site-header.is-mobile-open .dropdown-grid-two,
  .site-header.is-mobile-open .dropdown-grid-three {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-header.is-mobile-open .dropdown-link {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 64px;
  }
}

/* Generic product subpage system inspired by the approved example pages. */
.product-page {
  background: #fff;
}

.product-page .page-shell > main {
  background: transparent;
}

.product-main {
  overflow: clip;
}

.product-hero {
  padding: 92px 64px 0;
}

.product-hero-inner {
  max-width: 1620px;
  margin: 0 auto;
  min-height: 500px;
  padding: 88px 72px;
  border-radius: 44px 44px 0 0;
  background: #f8fafc;
  box-shadow: 0 22px 58px rgba(31, 53, 84, 0.08);
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.product-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(63, 109, 246, 0.08), transparent 17%),
    radial-gradient(circle at 82% 16%, rgba(63, 109, 246, 0.07), transparent 16%);
  pointer-events: none;
}

.product-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}


.product-hero h1 {
  max-width: 1160px;
  margin: 0 auto;
  color: #111c3d;
  font-size: clamp(40px, 3.55vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 700;
  text-wrap: balance;
}

.product-hero h1 span,
.product-gradient {
  color: #3f6df6;
}

.product-subtitle,
.product-hero-text {
  max-width: 980px;
  margin: 28px auto 0;
  color: #5c7290;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.48;
  letter-spacing: 0;
  font-weight: 500;
}

.product-actions,
.product-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.h1-trial-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.product-button {
  min-height: 56px;
  padding: 0 30px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: 0;
}

.product-button-primary {
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  box-shadow: 0 10px 22px rgba(63, 109, 246, 0.18);
}

.product-button-secondary {
  color: #223e67;
  background: #fff;
  border: 1px solid rgba(201, 213, 230, 0.95);
  box-shadow: 0 12px 26px rgba(31, 53, 84, 0.07);
}

.product-points,
.product-proof-points {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-points span,
.product-proof-points span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 249, 0.96) 100%);
  border: 1px solid rgba(194, 226, 205, 0.95);
  color: #426151;
  font-size: 13.5px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0;
  box-shadow: 0 16px 34px rgba(31, 53, 84, 0.075);
}

.product-points span::before,
.product-proof-points span::before {
  content: "✓";
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 23px;
  background: linear-gradient(180deg, #37c979 0%, #20a866 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.campaign-leads-page .campaign-subnav-wrap {
  padding: 16px 64px 18px;
  background: #fff;
}

.campaign-leads-page .campaign-subnav {
  width: min(1540px, calc(100% - 64px));
  min-height: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid #dce8f8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 53, 84, 0.08);
}

.campaign-leads-page .campaign-subnav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 10px;
  color: #5f718c;
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.012em;
  text-decoration: none;
  white-space: nowrap;
}

.campaign-leads-page .campaign-subnav a.is-active,
.campaign-leads-page .campaign-subnav a:hover {
  background: #f4f8ff;
  color: #3f6df6;
}

@media (max-width: 760px) {
  .campaign-leads-page .campaign-subnav-wrap {
    padding: 12px 12px 14px;
  }

  .campaign-leads-page .campaign-subnav {
    width: min(100% - 24px, 1540px);
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .campaign-leads-page .campaign-subnav::-webkit-scrollbar {
    display: none;
  }
}

.product-stage {
  padding: 18px 64px 76px;
}

.product-stage-inner {
  max-width: 1620px;
  margin: 0 auto;
  padding: clamp(28px, 3vw, 44px);
  background: #eaf3ff;
  border-radius: 0 0 42px 42px;
  display: grid;
  gap: clamp(24px, 3.2vw, 42px);
}

.product-feature {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(28px, 4vw, 74px);
  padding: clamp(30px, 4vw, 58px);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(31, 53, 84, 0.12);
  overflow: hidden;
}

.product-feature:nth-child(even) {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}

.product-feature:nth-child(even) .product-feature-copy {
  order: 2;
}

.product-feature-copy {
  min-width: 0;
}

.product-feature-copy h2 {
  margin: 0;
  color: #08183c;
  font-size: clamp(26px, 2.25vw, 38px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 720;
  text-wrap: balance;
}

.product-feature-copy p {
  margin: 16px 0 0;
  color: #64748f;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.64;
  font-weight: 500;
}

.product-visual {
  min-width: 0;
  display: grid;
  place-items: center;
}

.product-visual img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.product-ui {
  width: min(100%, 560px);
  padding: clamp(20px, 3vw, 34px);
  border-radius: 26px;
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
  border: 1px solid rgba(190, 210, 238, 0.85);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 22px 52px rgba(31,53,84,.12);
}

.product-ui-row,
.product-ui-line {
  display: grid;
  grid-template-columns: minmax(112px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  column-gap: clamp(14px, 3vw, 24px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(189, 205, 227, 0.72);
}

.product-ui-row:last-child,
.product-ui-line:last-child {
  border-bottom: 0;
}

.product-ui-row strong,
.product-ui-line strong {
  min-width: 0;
  justify-self: start;
  color: #122243;
  font-size: 15px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.product-ui-row span,
.product-ui-line span {
  min-width: 0;
  justify-self: end;
  text-align: right;
  color: #71809a;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.campaign-leads-page .campaign-title-visual {
  position: relative;
  width: min(100%, 620px);
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 34px;
  background: linear-gradient(145deg, #f8fbff 0%, #eef5ff 58%, #e6f1ff 100%);
  border: 1px solid rgba(190, 210, 238, 0.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 28px 62px rgba(31,53,84,.14);
  overflow: hidden;
}

.campaign-leads-page .campaign-title-visual::before {
  content: "";
  position: absolute;
  inset: 34px 44px auto auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(63, 109, 246, 0.12);
}

.campaign-leads-page .campaign-title-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 18px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(207, 218, 233, 0.94);
  box-shadow: 0 20px 48px rgba(31, 53, 84, 0.13);
}

.campaign-leads-page .campaign-title-toolbar {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}

.campaign-leads-page .campaign-title-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d7e1ef;
}

.campaign-leads-page .campaign-title-search {
  padding: 18px;
  border-radius: 18px;
  background: #f4f7fc;
  border: 1px solid rgba(212, 222, 236, 0.9);
}

.campaign-leads-page .campaign-title-search small,
.campaign-leads-page .campaign-title-person small,
.campaign-leads-page .campaign-title-summary small {
  display: block;
  color: #71809a;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 750;
}

.campaign-leads-page .campaign-title-search strong {
  display: block;
  margin-top: 7px;
  color: #08183c;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0;
}

.campaign-leads-page .campaign-title-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.campaign-leads-page .campaign-title-filters span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: #315ed8;
  font-size: 12px;
  font-weight: 800;
}

.campaign-leads-page .campaign-title-results {
  display: grid;
  gap: 10px;
}

.campaign-leads-page .campaign-title-person {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(220, 228, 239, 0.92);
}

.campaign-leads-page .campaign-title-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #111c3d;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  object-fit: cover;
}

.campaign-leads-page .campaign-title-person strong {
  display: block;
  color: #111c3d;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 800;
}

.campaign-leads-page .campaign-title-person em {
  color: #0f9f6e;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.campaign-leads-page .campaign-title-summary {
  position: absolute;
  z-index: 2;
  right: clamp(16px, 4vw, 42px);
  bottom: clamp(16px, 4vw, 40px);
  width: 142px;
  padding: 17px;
  border-radius: 22px;
  background: #111c3d;
  color: #fff;
  box-shadow: 0 20px 44px rgba(17, 28, 61, 0.22);
}

.campaign-leads-page .campaign-title-summary span,
.campaign-leads-page .campaign-title-summary strong {
  display: block;
}

.campaign-leads-page .campaign-title-summary span {
  font-size: 34px;
  line-height: 1;
  font-weight: 850;
}

.campaign-leads-page .campaign-title-summary strong {
  margin-top: 5px;
  font-size: 15px;
}

.campaign-leads-page .campaign-title-summary small {
  margin-top: 6px;
  color: rgba(255,255,255,.68);
}

/* Datavask HTML product visuals */
.datavask-page .product-stage-inner {
  gap: clamp(22px, 3vw, 38px);
}

.datavask-page .product-feature {
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1.36fr);
  align-items: center;
}

.datavask-page .product-feature:nth-child(even) {
  grid-template-columns: minmax(0, 1.36fr) minmax(0, 0.64fr);
}

.datavask-page .product-visual {
  overflow: visible;
}

.datavask-page .product-feature-copy {
  max-width: 520px;
}

.datawash-builder,
.datawash-results,
.datawash-signals,
.datawash-activation {
  width: min(100%, 980px);
  min-height: 360px;
  border: 1px solid rgba(215, 223, 236, 0.95);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 24px 70px rgba(31, 53, 84, 0.1);
  color: #071638;
}

.datawash-builder {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.72fr);
  gap: 22px;
  padding: 28px;
}

.datawash-tab {
  display: inline-flex;
  margin: -8px 0 18px;
  padding: 11px 18px;
  border-radius: 10px;
  background: #eef5ff;
  color: #1267ff;
  font-weight: 800;
}

.datawash-criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 20px;
  border: 1px solid #dce4ef;
  border-radius: 18px;
}

.datawash-criteria-column {
  display: grid;
  gap: 10px;
}

.datawash-criteria-column h3,
.datawash-profile-card h3 {
  margin: 0 0 6px;
  color: #0b1838;
  font-size: 14px;
}

.datawash-field {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px 0 14px;
  border: 1px solid #e0e7f1;
  border-radius: 14px;
  background: #fff;
  color: #0f1d41;
  font-size: 13px;
}

.datawash-field strong {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e0e7f1;
  font-size: 12px;
  white-space: nowrap;
}

.datawash-field-active {
  background: #eef4ff;
}

.datawash-field-active strong {
  color: #fff;
  border-color: #1f68ff;
  background: #1f68ff;
}

.datawash-field-found strong {
  color: #15803d;
  border-color: #bfe7c9;
  background: #f5fff7;
}

.datawash-live-card,
.datawash-profile-card,
.datawash-list-card,
.datawash-action-stack > div {
  border: 1px solid #dce4ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(31, 53, 84, 0.08);
}

.datawash-live-card {
  align-self: center;
  padding: 22px;
}

.datawash-live-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.datawash-live-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
}

.datawash-live-card p,
.datawash-company-mini span,
.datawash-person span,
.datawash-profile-card p,
.datawash-list-card p,
.datawash-action-stack em {
  margin: 0;
  color: #62708c;
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.datawash-company-mini,
.datawash-person,
.datawash-profile-top,
.datawash-signal-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.datawash-company-mini {
  margin: 20px 0 18px;
  padding-top: 18px;
  border-top: 1px solid #e5ebf4;
}

.datawash-logo-grid {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background:
    radial-gradient(circle, #1f68ff 0 3px, transparent 4px) 7px 7px / 14px 14px,
    #eef4ff;
}

.datawash-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6c6a8, #7b4a33);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.datawash-avatar-large {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
}

.datawash-logo-avatar {
  background: #f1f5fb;
  color: #0b1838;
}

.datawash-results {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 18px;
  padding: 22px;
}

.datawash-results-table {
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 18px;
  background: #fff;
}

.datawash-results-head,
.datawash-table-row {
  display: grid;
  grid-template-columns: 1.25fr 1.05fr 0.9fr 1.4fr 0.85fr;
  align-items: center;
  gap: 14px;
}

.datawash-results-head {
  grid-template-columns: auto auto 1fr;
  min-height: 70px;
  padding: 0 18px;
  border-bottom: 1px solid #e6edf6;
}

.datawash-results-head > span {
  color: #62708c;
  font-size: 14px;
}

.datawash-toolbar {
  justify-self: end;
  display: flex;
  gap: 10px;
}

.datawash-toolbar span {
  padding: 10px 14px;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  color: #42516d;
  font-size: 12px;
}

.datawash-table-row {
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid #e6edf6;
  color: #152440;
  font-size: 12px;
}

.datawash-table-row:last-child {
  border-bottom: 0;
}

.datawash-table-labels {
  min-height: 42px;
  color: #63718c;
  background: #fafcff;
  font-weight: 700;
}

.datawash-table-row.is-selected {
  background: #f0f6ff;
}

.datawash-profile-card {
  padding: 18px;
}

.datawash-profile-top {
  padding-bottom: 16px;
  border-bottom: 1px solid #e6edf6;
}

.datawash-profile-top strong,
.datawash-profile-top span {
  display: block;
}

.datawash-profile-top em {
  display: inline-flex;
  margin-top: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eaffea;
  color: #15803d;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.datawash-profile-card h3 {
  margin-top: 18px;
}

.datawash-signals {
  padding: 26px;
}

.datawash-signal-header {
  padding-bottom: 20px;
}

.datawash-signal-header strong {
  font-size: 24px;
}

.datawash-signal-header span {
  color: #62708c;
}

.datawash-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.datawash-signal-grid > div {
  min-height: 100px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid #dce4ef;
  border-radius: 14px;
  background: #fff;
}

.datawash-signal-grid span,
.datawash-signal-foot span,
.datawash-list-card span {
  color: #62708c;
  font-size: 13px;
}

.datawash-signal-grid strong {
  color: #0b1838;
  font-size: 16px;
}

.datawash-signal-foot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.datawash-signal-foot strong {
  padding: 12px 18px;
  border: 1px solid #bcd2ff;
  border-radius: 12px;
  color: #1267ff;
}

.datawash-activation {
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(90px, 0.32fr) minmax(260px, 0.95fr);
  align-items: center;
  gap: 18px;
  padding: 34px;
}

.datawash-list-card {
  padding: 24px;
}

.datawash-list-card > strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.datawash-avatar-strip {
  display: flex;
  align-items: center;
  margin: 24px 0;
}

.datawash-avatar-strip span,
.datawash-avatar-strip em {
  width: 34px;
  height: 34px;
  margin-right: -8px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #c98962;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.datawash-avatar-strip em {
  margin-left: 8px;
  background: #e8f1ff;
  color: #1267ff;
}

.datawash-list-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid #e6edf6;
}

.datawash-list-stats strong {
  display: block;
  margin-top: 8px;
  color: #1267ff;
  font-size: 24px;
}

.datawash-flow-lines {
  min-height: 160px;
  border: 2px dashed #8bb6ff;
  border-right: 0;
  border-radius: 28px 0 0 28px;
  position: relative;
}

.datawash-flow-lines::before,
.datawash-flow-lines::after {
  content: "";
  position: absolute;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1267ff;
  box-shadow: -78px 0 0 #1267ff;
}

.datawash-flow-lines::before {
  top: -5px;
}

.datawash-flow-lines::after {
  bottom: -5px;
}

.datawash-action-stack {
  display: grid;
  gap: 16px;
}

.datawash-action-stack > div {
  min-height: 86px;
  display: grid;
  grid-template-columns: 86px 1fr;
  align-content: center;
  column-gap: 14px;
  padding: 16px;
}

.datawash-action-stack span {
  grid-row: span 2;
  align-self: center;
  justify-self: center;
  color: #1267ff;
  font-size: 12px;
  font-weight: 800;
}

.datawash-action-stack strong {
  font-size: 20px;
}

@media (max-width: 1100px) {
  .datavask-page .product-feature,
  .datavask-page .product-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .datavask-page .product-feature:nth-child(even) .product-feature-copy {
    order: 0;
  }

  .datavask-page .product-feature-copy {
    max-width: 760px;
  }

  .datawash-builder,
  .datawash-results {
    grid-template-columns: 1fr;
  }

  .datawash-profile-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .datawash-profile-top {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .datawash-builder,
  .datawash-results,
  .datawash-signals,
  .datawash-activation {
    min-height: 0;
    padding: 18px;
    border-radius: 22px;
  }

  .datawash-criteria-grid,
  .datawash-signal-grid,
  .datawash-activation,
  .datawash-profile-card {
    grid-template-columns: 1fr;
  }

  .datawash-results-table {
    overflow-x: auto;
  }

  .datawash-results-head,
  .datawash-table-row {
    min-width: 760px;
  }

  .datawash-toolbar {
    display: none;
  }

  .datawash-signal-header {
    align-items: flex-start;
  }

  .datawash-signal-header strong {
    font-size: 20px;
  }

  .datawash-signal-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .datawash-flow-lines {
    display: none;
  }

  .datawash-action-stack > div {
    grid-template-columns: 62px 1fr;
  }
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  color: #3f6df6;
  border: 1px solid rgba(63, 109, 246, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.product-section {
  padding: 34px 64px 76px;
}

.product-section-inner {
  max-width: 1620px;
  margin: 0 auto;
}

.product-section-head {
  max-width: 920px;
  margin: 0 auto 28px;
  text-align: center;
}

.product-section-head h2 {
  margin: 0;
  color: #111c3d;
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 720;
  text-wrap: balance;
}

.product-section-head p {
  margin: 16px auto 0;
  color: #64748f;
  font-size: 18px;
  line-height: 1.58;
  max-width: 760px;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(207, 218, 233, 0.86);
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.08);
}

.product-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 15px;
  font-weight: 850;
}

.product-card h3 {
  margin: 0;
  color: #111c3d;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.product-card p {
  margin: 11px 0 0;
  color: #66758f;
  line-height: 1.6;
  font-weight: 500;
}

.support-overview-section {
  padding-top: 32px;
  overflow-x: hidden;
  background: #fff;
}

.support-card-grid {
  align-items: stretch;
  min-width: 0;
}

.support-product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.support-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(63, 109, 246, 0.34);
  box-shadow: 0 24px 52px rgba(31, 53, 84, 0.12);
  color: inherit;
  text-decoration: none;
}

.support-product-card p {
  flex: 1;
}

.support-card-button {
  width: max-content;
  margin-top: 18px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
}

.support-overview-section .product-section-inner,
.support-overview-section .product-section-head {
  min-width: 0;
  max-width: 100%;
}

.support-overview-section .product-section-head h2,
.support-overview-section .product-section-head p,
.support-product-card h3,
.support-product-card p {
  overflow-wrap: anywhere;
}

.support-category-section {
  padding-top: 40px;
  background: #fff;
}

.support-category-section .product-section-inner {
  max-width: 1320px;
}

.support-category-section .product-section-head {
  max-width: 860px;
  margin-bottom: 30px;
}

.support-guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.support-guide-row {
  min-width: 0;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(207, 218, 233, 0.92);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(31, 53, 84, 0.055);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.support-guide-row:hover {
  transform: translateY(-2px);
  border-color: rgba(63, 109, 246, 0.34);
  background: #fbfdff;
  box-shadow: 0 20px 42px rgba(31, 53, 84, 0.095);
  color: inherit;
  text-decoration: none;
}

.support-guide-number {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #eef4ff;
  color: #3f6df6;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 850;
}

.support-guide-copy {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.support-guide-meta {
  color: #6b7c95;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.support-guide-title {
  color: #111c3d;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.support-guide-excerpt {
  color: #66758f;
  font-size: 15px;
  line-height: 1.48;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.support-guide-action {
  grid-column: 2;
  width: max-content;
  margin-top: 6px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(201, 213, 230, 0.95);
  border-radius: 8px;
  background: #fff;
  color: #223e67;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 780;
  white-space: nowrap;
}

.support-category-copy {
  max-width: 920px;
  margin: 42px auto 0;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(207, 218, 233, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.08);
  color: #20314f;
}

.support-category-copy > *:first-child {
  margin-top: 0;
}

.support-category-copy > *:last-child {
  margin-bottom: 0;
}

.support-category-copy h1,
.support-category-copy h2,
.support-category-copy h3 {
  color: #08183c;
  letter-spacing: 0;
  text-wrap: balance;
}

.support-category-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.1;
}

.support-category-copy h2 {
  margin: 34px 0 0;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.16;
}

.support-category-copy h3 {
  margin: 26px 0 0;
  font-size: clamp(20px, 1.4vw, 24px);
  line-height: 1.2;
}

.support-category-copy p,
.support-category-copy li {
  color: #596b86;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.support-category-copy p {
  margin: 16px 0 0;
}

.support-category-copy ul,
.support-category-copy ol {
  margin: 16px 0 0;
  padding-left: 1.35em;
}

.support-category-copy li + li {
  margin-top: 10px;
}

.support-category-copy a {
  color: #315ed8;
  font-weight: 750;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

@media (max-width: 980px) {
  .support-guide-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .support-overview-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .support-overview-section .product-section-head h2 {
    font-size: clamp(26px, 7vw, 32px);
  }

  .support-product-card {
    padding: 24px;
  }

  .support-guide-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-guide-row {
    min-height: auto;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px;
  }

  .support-guide-number {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .support-guide-action {
    grid-column: 2;
    width: max-content;
    margin-top: 2px;
  }

  .support-category-copy {
    margin-top: 28px;
    padding: 22px;
  }
}

.product-cta {
  margin: 0 64px 82px;
}

.product-cta-inner {
  max-width: 1620px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 66px);
  border-radius: 34px;
  background: #111c3d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.product-cta h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(30px, 2.65vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 720;
}

.product-cta p {
  margin: 14px 0 0;
  max-width: 760px;
  color: rgba(255,255,255,.74);
  font-size: 17px;
  line-height: 1.58;
}

.emnedatabase-page .product-hero {
  padding: 82px 32px 0;
}

.emnedatabase-page .product-hero-inner,
.emnedatabase-page .product-stage-inner,
.emnedatabase-page .product-section-inner,
.emnedatabase-page .product-cta-inner {
  max-width: 1540px;
}

.emnedatabase-page .product-stage {
  padding: 18px 32px 76px;
}

.blindspot-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.94), rgba(241, 246, 252, 0.98)),
    radial-gradient(circle at 18% 24%, rgba(32, 168, 102, 0.16), transparent 24%),
    radial-gradient(circle at 78% 12%, rgba(63, 109, 246, 0.18), transparent 22%);
}

.blindspot-page .product-hero-copy {
  max-width: 820px;
  margin: 0;
  text-align: left;
}

.blindspot-page .product-subtitle {
  margin-left: 0;
  margin-right: 0;
}

.blindspot-page .product-actions,
.blindspot-page .product-points {
  justify-content: flex-start;
}

.blindspot-hero-visual {
  width: 100%;
}

.blindspot-page .product-feature:first-child {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: center;
}

.blindspot-page .product-feature:first-child .product-feature-copy {
  max-width: 760px;
}

.blindspot-radar {
  width: min(100%, 560px);
  box-sizing: border-box;
  padding: 22px;
  border-radius: 28px;
  background: #0f1b37;
  color: #fff;
  box-shadow: 0 26px 60px rgba(15, 27, 55, 0.24);
}

.blindspot-page .blindspot-radar {
  width: min(100%, 440px);
  padding: 18px;
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(15, 27, 55, 0.2);
}

.blindspot-radar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.blindspot-radar-head span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 750;
}

.blindspot-radar-head strong {
  color: #52dd92;
  font-size: 34px;
  line-height: 1;
}

.blindspot-radar-map {
  position: relative;
  aspect-ratio: 1.28 / 1;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(82, 221, 146, .16), transparent 58%);
  background-size: 42px 42px, 42px 42px, 100% 100%;
}

.blindspot-page .blindspot-radar-map {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: visible;
}

.market-sweep {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(82, 221, 146, 0.52);
  box-shadow: 0 0 0 54px rgba(82, 221, 146, 0.04), inset 0 0 48px rgba(82, 221, 146, 0.08);
}

.market-dot {
  position: absolute;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #10203f;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.blindspot-page .market-dot {
  left: 50%;
  top: 50%;
  width: clamp(16px, 2vw, 26px);
  height: clamp(16px, 2vw, 26px);
  min-height: 0;
  padding: 0;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: #3f6df6;
  box-shadow: 0 0 0 10px rgba(63, 109, 246, 0.12), 0 0 28px rgba(63, 109, 246, 0.42);
  color: transparent;
  font-size: 0;
  overflow: visible;
  transform: translate(-50%, -50%) rotate(var(--orbit-start, 0deg)) translateX(var(--orbit-radius, 34%)) rotate(var(--orbit-label, 0deg));
  animation: marketDotOrbit var(--orbit-speed, 15s) linear infinite;
}

.blindspot-page .dot-hidden,
.blindspot-page .dot-hidden-alt {
  background: #20a866;
  box-shadow: 0 0 0 10px rgba(32, 168, 102, 0.13), 0 0 28px rgba(32, 168, 102, 0.44);
}

.market-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #3f6df6;
}

.blindspot-page .market-dot::before {
  display: none;
}

.blindspot-page .market-dot::after {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  width: max-content;
  max-width: 190px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(9, 19, 43, 0.78);
  color: #f6fbff;
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 850;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42);
  transform: translateY(-50%);
}

.blindspot-page .dot-known::after {
  content: "Kendt kundeemne";
}

.blindspot-page .dot-hidden::after {
  content: "Skjult behov";
}

.blindspot-page .dot-hidden-alt::after {
  content: "Nyt projekt";
}

.blindspot-page .dot-known-alt::after {
  content: "Eksisterende ICP";
}

.dot-hidden::before,
.dot-hidden-alt::before {
  background: #20a866;
}

.dot-known { left: 9%; top: 18%; }
.dot-hidden { right: 8%; top: 31%; }
.dot-hidden-alt { left: 24%; bottom: 18%; }
.dot-known-alt { right: 16%; bottom: 12%; }

.blindspot-page .dot-known {
  --orbit-start: -36deg;
  --orbit-label: 36deg;
  --orbit-radius: clamp(74px, 9vw, 126px);
  --orbit-speed: 16s;
}

.blindspot-page .dot-hidden {
  --orbit-start: 58deg;
  --orbit-label: -58deg;
  --orbit-radius: clamp(84px, 10vw, 142px);
  --orbit-speed: 19s;
}

.blindspot-page .dot-hidden-alt {
  --orbit-start: 168deg;
  --orbit-label: -168deg;
  --orbit-radius: clamp(64px, 8vw, 112px);
  --orbit-speed: 14s;
}

.blindspot-page .dot-known-alt {
  --orbit-start: 248deg;
  --orbit-label: -248deg;
  --orbit-radius: clamp(78px, 9.5vw, 134px);
  --orbit-speed: 21s;
}

@keyframes marketDotOrbit {
  to {
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-start, 0deg) + 360deg)) translateX(var(--orbit-radius, 34%)) rotate(calc(var(--orbit-label, 0deg) - 360deg));
  }
}

.blindspot-feed .product-tags span {
  color: #20a866;
  border-color: rgba(32, 168, 102, 0.22);
}

.blindspot-campaign-flow {
  width: min(100%, 560px);
  display: grid;
  gap: 14px;
}

.blindspot-campaign-flow div {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
  border: 1px solid rgba(190, 210, 238, 0.85);
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.08);
}

.blindspot-campaign-flow span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #fff;
  color: #3f6df6;
  font-size: 13px;
  font-weight: 850;
}

.blindspot-campaign-flow strong {
  display: block;
  color: #111c3d;
  font-size: 20px;
  line-height: 1.15;
}

.blindspot-campaign-flow p {
  margin: 8px 0 0;
  color: #66758f;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 980px) {
  .blindspot-hero-inner {
    grid-template-columns: 1fr;
  }

  .blindspot-page .product-hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .blindspot-page .product-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .blindspot-page .product-actions,
  .blindspot-page .product-points {
    justify-content: center;
  }

  .blindspot-page .blindspot-radar {
    width: min(100%, 360px);
  }

  .product-hero {
    padding: 56px 22px 0;
  }

  .product-hero-inner {
    min-height: auto;
    padding: 64px 24px;
    border-radius: 30px 30px 0 0;
  }

  .product-hero h1 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .product-stage {
    padding: 14px 22px 52px;
  }

  .product-stage-inner {
    padding: 18px;
    border-radius: 0 0 30px 30px;
  }

  .product-feature,
  .product-feature:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-feature:nth-child(even) .product-feature-copy {
    order: 0;
  }

  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .product-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .product-cta {
    margin-left: 22px;
    margin-right: 22px;
  }

  .product-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .emnedatabase-page .product-hero {
    padding: 76px 12px 0;
  }

  .emnedatabase-page .product-stage {
    padding: 16px 12px 64px;
  }

  .emnedatabase-page .product-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .emnedatabase-page .product-cta {
    margin-left: 12px;
    margin-right: 12px;
  }

  .market-dot {
    font-size: 10.5px;
    min-height: 26px;
    padding: 0 8px;
  }

  .blindspot-page .blindspot-radar-head {
    gap: 12px;
  }

  .blindspot-page .blindspot-radar-head strong {
    font-size: clamp(26px, 9vw, 34px);
  }

  .blindspot-page .market-dot {
    min-height: 0;
    padding: 0;
  }
}

/* Phone number finder demo */
.phone-page .phone-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
}

.phone-page .phone-hero-copy {
  max-width: 620px;
  margin: 0;
  text-align: left;
}

.phone-page .product-subtitle {
  margin-left: 0;
  margin-right: 0;
}

.phone-page .product-actions,
.phone-page .product-points {
  justify-content: flex-start;
}

.phone-finder-demo {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: clamp(18px, 2.8vw, 28px);
  border: 1px solid rgba(193, 209, 232, 0.94);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.98) 100%);
  box-shadow: 0 28px 70px rgba(31, 53, 84, 0.15);
}

.phone-demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(205, 216, 232, 0.8);
}

.phone-demo-toolbar div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #122243;
  font-size: 15px;
}

.phone-demo-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #24bf74;
  box-shadow: 0 0 0 7px rgba(36, 191, 116, 0.12);
}

.phone-demo-search {
  margin-top: 18px;
}

.phone-demo-search label {
  display: block;
  margin-bottom: 8px;
  color: #64748f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone-demo-search div {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(198, 211, 230, 0.94);
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.phone-demo-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: #15284b;
  background: transparent;
  font-size: 15px;
  font-weight: 750;
}

.phone-demo-search button {
  flex: 0 0 auto;
  min-height: clamp(40px, 3vw, 45px);
  border: 1px solid var(--brand);
  border-radius: 8px;
  padding: 0 clamp(13px, 1.2vw, 17px);
  background: var(--brand);
  color: #fff;
  font-size: clamp(13.5px, 0.92vw, 14.5px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.012em;
  box-shadow: 0 10px 22px rgba(63, 109, 246, 0.18);
  cursor: pointer;
}

.phone-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 16px;
  margin-top: 18px;
}

.phone-demo-providers {
  display: grid;
  gap: 10px;
}

.phone-provider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 10px;
  padding: 13px;
  border: 1px solid rgba(203, 214, 230, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #15284b;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.phone-provider span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #eef4ff;
  color: #2f6df6;
  font-size: 11px;
  font-weight: 900;
}

.phone-provider strong {
  font-size: 13px;
  line-height: 1.1;
}

.phone-provider em {
  color: #738197;
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
}

.phone-provider.is-active {
  border-color: rgba(47, 109, 246, 0.45);
  background: #fff;
  box-shadow: 0 16px 34px rgba(31, 53, 84, 0.1);
  transform: translateY(-2px);
}

.phone-provider.is-done span {
  background: #eaf4ef;
  color: #20845a;
}

.phone-provider.is-done::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #24bf74;
}

.phone-demo-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: 22px;
  background: #111c3d;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 22px 48px rgba(17, 28, 61, 0.22);
}

.phone-person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.phone-person > img {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.phone-person strong,
.phone-person em {
  display: block;
}

.phone-person strong {
  font-size: 16px;
  line-height: 1.15;
}

.phone-person em {
  margin-top: 4px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-style: normal;
}

.phone-number-reveal {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.phone-number-reveal span,
.phone-confidence span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.phone-number-reveal strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.phone-confidence {
  display: grid;
  gap: 10px;
}

.phone-confidence > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.phone-confidence strong {
  font-size: 22px;
}

.phone-confidence-bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.phone-confidence-bar i {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #24bf74 0%, #79e0aa 100%);
  transition: width 280ms ease;
}

.phone-next-step {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(47, 109, 246, 0.22);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 800;
}

.phone-mini-ui .product-ui-row span,
.phone-mini-ui .product-ui-line span {
  color: #2f6df6;
}

@media (max-width: 1080px) {
  .phone-page .phone-hero-inner {
    grid-template-columns: 1fr;
  }

  .phone-page .phone-hero-copy {
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
  }

  .phone-page .product-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .phone-page .product-actions,
  .phone-page .product-points {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .phone-demo-grid {
    grid-template-columns: 1fr;
  }

  .phone-demo-search div {
    flex-direction: column;
  }

  .phone-demo-search button {
    min-height: 44px;
  }

  .phone-finder-demo {
    border-radius: 22px;
  }
}

/* Role pages */
.role-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
}

.role-hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 680px;
  margin: 0;
  text-align: left;
}

.role-hero-copy .product-subtitle,
.role-hero-copy .product-hero-text {
  margin-left: 0;
  margin-right: 0;
}

.role-hero-copy .product-actions,
.role-hero-copy .product-hero-actions,
.role-hero-copy .product-points,
.role-hero-copy .product-proof-points {
  justify-content: flex-start;
}

.role-hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.role-workflow-card,
.role-ui-panel,
.role-message-card {
  width: min(100%, calc(100vw - 48px), 620px);
  border: 1px solid rgba(190, 210, 238, 0.9);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 26px 66px rgba(31, 53, 84, 0.14);
}

.role-workflow-card {
  margin-left: auto;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 30px;
}

.role-workflow-top,
.role-ui-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(205, 216, 232, 0.84);
  color: #111c3d;
}

.role-workflow-top strong,
.role-ui-head strong {
  font-size: 15px;
  line-height: 1.2;
}

.role-workflow-top em {
  margin-left: auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf4ef;
  color: #20845a;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.role-live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #24bf74;
  box-shadow: 0 0 0 7px rgba(36, 191, 116, 0.12);
  flex: 0 0 11px;
}

.role-target-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(63, 109, 246, 0.24);
  border-radius: 20px;
  background: #fff;
}

.role-target-card span,
.role-ui-head span,
.role-message-card span {
  display: block;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.role-target-card strong {
  display: block;
  margin-top: 8px;
  color: #111c3d;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.18;
}

.role-target-card p {
  margin: 8px 0 0;
  color: #64748f;
  font-weight: 650;
}

.role-workflow-steps {
  position: relative;
  margin-top: 18px;
  min-height: 128px;
  overflow: hidden;
}

.role-workflow-steps div {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-content: start;
  padding: 14px;
  border: 1px solid rgba(203, 214, 230, 0.82);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(31, 53, 84, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(18px, 0, 0) scale(0.98);
  animation: roleWorkflowStep 9s ease-in-out infinite;
}

.role-workflow-steps div:nth-child(2) {
  animation-delay: 3s;
}

.role-workflow-steps div:nth-child(3) {
  animation-delay: 6s;
}

.role-workflow-steps span {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eef4ff;
  color: #2f6df6;
  font-size: 11px;
  font-weight: 900;
}

.role-workflow-steps strong,
.role-ui-row strong,
.role-inbox-item strong {
  color: #15284b;
  font-size: 14px;
  line-height: 1.2;
}

.role-workflow-steps em,
.role-workflow-steps p,
.role-ui-row span,
.role-inbox-item span {
  color: #738197;
  font-size: 13px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 650;
}

.role-workflow-steps p {
  margin: 0;
}

@keyframes roleWorkflowStep {
  0%, 3% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(14px, 0, 0) scale(0.985);
  }
  5%, 28% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
  }
  31%, 100% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-14px, 0, 0) scale(0.985);
  }
}

.role-metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.role-metric-row div {
  padding: 16px 12px;
  border-radius: 16px;
  background: #111c3d;
  color: #fff;
}

.role-metric-row strong,
.role-metric-row span {
  display: block;
}

.role-metric-row strong {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.role-metric-row span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;
}

.role-ui-panel,
.role-message-card {
  padding: clamp(20px, 3vw, 32px);
  border-radius: 26px;
}

.role-ui-row,
.role-inbox-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(189, 205, 227, 0.72);
}

.role-ui-row:last-of-type,
.role-inbox-item:last-child {
  border-bottom: 0;
}

.role-panel-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(205, 216, 232, 0.84);
  color: #111c3d;
}

.role-panel-header span {
  display: block;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.role-panel-header strong {
  margin-left: auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf4ef;
  color: #20845a;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}

.role-list {
  display: grid;
  gap: 0;
  margin-top: 12px;
}

.role-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  column-gap: clamp(18px, 3vw, 30px);
  row-gap: 6px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(189, 205, 227, 0.72);
}

.role-list div:last-child {
  border-bottom: 0;
}

.role-list strong {
  min-width: 0;
  color: #15284b;
  font-size: 14px;
  line-height: 1.2;
}

.role-list span {
  min-width: 0;
  color: #738197;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.role-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  color: #3f6df6;
  border: 1px solid rgba(63, 109, 246, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.role-message-card {
  display: grid;
  gap: 18px;
}

.role-message-card p {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: #111c3d;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.62;
  font-weight: 500;
}

.role-message-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.role-message-card strong {
  padding: 9px 11px;
  border-radius: 999px;
  background: #eef4ff;
  color: #2f6df6;
  font-size: 12px;
}

.role-ui-panel-dark {
  background: #111c3d;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(17, 28, 61, 0.22);
}

.role-ui-panel-dark .role-ui-head,
.role-ui-panel-dark .role-panel-header,
.role-ui-panel-dark .role-inbox-item {
  border-color: rgba(255, 255, 255, 0.12);
}

.role-ui-panel-dark .role-ui-head strong,
.role-ui-panel-dark .role-list strong,
.role-ui-panel-dark .role-inbox-item strong {
  color: #fff;
}

.role-ui-panel-dark .role-panel-header span {
  color: rgba(255, 255, 255, 0.78);
}

.role-ui-panel-dark .role-panel-header strong {
  background: rgba(36, 191, 116, 0.14);
  color: #8ff0bf;
}

.role-ui-panel-dark .role-list div {
  border-color: rgba(255, 255, 255, 0.12);
}

.role-ui-panel-dark .role-list span {
  color: rgba(255, 255, 255, 0.68);
}

.role-ui-panel-dark .role-inbox-item span {
  color: rgba(255, 255, 255, 0.62);
}

.role-feature-links .product-card {
  display: grid;
  align-content: start;
}

.role-feature-links .product-card .product-button {
  margin-top: 16px;
  justify-self: start;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 14px;
}

.product-card-icon-linkedin {
  padding: 0;
  overflow: hidden;
  background: #0077b7;
}

.product-card-icon-linkedin svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
  color: #fff;
}

.role-gtm-example {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.role-gtm-head {
  max-width: 760px;
}.role-gtm-label {
  display: inline-flex;
  align-items: center;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.role-gtm-card {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(190, 210, 238, 0.9);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(31, 53, 84, 0.1);
  color: inherit;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.role-gtm-card-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.role-gtm-card h3 {
  margin: 6px 0 0;
  color: #15284b;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.role-gtm-card p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #64748f;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 560;
}

.role-gtm-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.role-gtm-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(63, 109, 246, 0.16);
  border-radius: 999px;
  background: #f6f9ff;
  color: #34507a;
  font-size: 12px;
  font-weight: 800;
}

.role-gtm-button {
  justify-self: start;
}

@media (max-width: 1080px) {
  .role-hero-inner {
    grid-template-columns: 1fr;
  }

  .role-hero-copy {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .role-hero-copy .product-subtitle,
  .role-hero-copy .product-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .role-hero-copy .product-actions,
  .role-hero-copy .product-hero-actions,
  .role-hero-copy .product-points,
  .role-hero-copy .product-proof-points {
    justify-content: center;
  }

  .role-workflow-card {
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .role-hero-inner {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    margin-left: auto;
    margin-right: auto;
  }

  .role-hero-copy {
    width: calc(100vw - 96px);
    max-width: calc(100vw - 96px);
    justify-self: center;
  }

  .role-hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 34px);
    text-wrap: wrap;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .role-hero h1 span {
    display: block;
  }

  .role-hero-copy .product-hero-text,
  .role-hero-copy .product-subtitle {
    max-width: 100%;
    text-wrap: wrap;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .role-hero-copy .product-hero-actions .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .role-workflow-steps {
    min-height: 150px;
  }

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

  .role-ui-row,
  .role-inbox-item,
  .role-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .role-panel-header strong {
    margin-left: 0;
  }

  .role-list div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .role-gtm-card-main {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .role-workflow-steps div {
    animation: none;
  }

  .role-workflow-steps div:first-child {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .role-workflow-steps div:not(:first-child) {
    display: none;
  }
}

/* Auth pages */
.auth-main {
  background: #fff;
  overflow: clip;
}

.auth-section {
  padding: 82px 32px;
}

.auth-shell {
  width: min(1420px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 58px);
  border-radius: 42px;
  background: linear-gradient(180deg, #f8fafc 0%, #f4f7fb 100%);
  box-shadow: 0 22px 58px rgba(31, 53, 84, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.auth-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(63, 109, 246, 0.08), transparent 17%),
    radial-gradient(circle at 86% 14%, rgba(63, 109, 246, 0.07), transparent 16%);
  pointer-events: none;
}

.auth-copy,
.auth-card {
  position: relative;
  z-index: 1;
}

.auth-copy {
  max-width: 760px;
}

.auth-copy h1 {
  margin: 0;
  color: #111c3d;
  font-size: clamp(42px, 4.3vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 720;
  text-wrap: balance;
}

.auth-copy h1 span {
  color: #3f6df6;
}

.auth-lead {
  margin: 24px 0 0;
  max-width: 700px;
  color: #5c7290;
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.6;
  font-weight: 500;
}

.auth-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.auth-points article {
  padding: 18px;
  border: 1px solid rgba(207, 218, 233, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.07);
}

.auth-points span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 11px;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 850;
}

.auth-points strong {
  display: block;
  color: #111c3d;
  font-size: 16px;
  line-height: 1.22;
}

.auth-points p {
  margin: 8px 0 0;
  color: #66758f;
  font-size: 14px;
  line-height: 1.52;
  font-weight: 500;
}

.auth-card {
  width: min(100%, 520px);
  justify-self: end;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(190, 210, 238, 0.9);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(31, 53, 84, 0.15);
}

.auth-card-head h2 {
  margin: 0;
  color: #111c3d;
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.1;
  letter-spacing: 0;
}

.auth-card-head p {
  margin: 10px 0 0;
  color: #64748f;
  line-height: 1.55;
  font-weight: 500;
}

.auth-google-button,
.auth-submit {
  min-height: 52px;
  width: 100%;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 780;
  text-decoration: none;
}

.auth-google-button {
  margin-top: 26px;
  border: 1px solid rgba(201, 213, 230, 0.95);
  background: #fff;
  color: #223e67;
  box-shadow: 0 12px 26px rgba(31, 53, 84, 0.07);
}

.auth-google-button:hover,
.auth-google-button:focus-visible {
  border-color: rgba(63, 109, 246, 0.3);
  color: #3f6df6;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 22px 0;
  color: #8b98aa;
  font-size: 13px;
  font-weight: 750;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: rgba(205, 216, 232, 0.9);
}

.auth-error {
  display: none;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #fecaca;
  border-radius: 12px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
  font-weight: 750;
}

.auth-error.is-visible {
  display: block;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-field label {
  display: block;
  margin-bottom: 8px;
  color: #111c3d;
  font-size: 14px;
  font-weight: 800;
}

.auth-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(198, 211, 230, 0.94);
  border-radius: 12px;
  background: #fff;
  color: #15284b;
  font-size: 15px;
  font-weight: 650;
}

.auth-form-meta {
  display: flex;
  justify-content: flex-end;
  margin-top: -2px;
}

.auth-form-meta a,
.auth-footnote a {
  color: #3f6df6;
  font-weight: 800;
  text-decoration: none;
}

.auth-form-meta a:hover,
.auth-footnote a:hover {
  color: #2457ce;
}

.auth-submit {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(63, 109, 246, 0.18);
  cursor: pointer;
}

.auth-submit:hover:not(:disabled),
.auth-submit:focus-visible:not(:disabled) {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.auth-submit:disabled {
  opacity: 0.68;
  cursor: not-allowed;
}

.auth-footnote {
  margin: 22px 0 0;
  text-align: center;
  color: #64748f;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .auth-section {
    padding: 46px 18px;
  }

  .auth-shell {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }

  .auth-copy {
    max-width: 880px;
    text-align: center;
    margin: 0 auto;
  }

  .auth-points {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .auth-card {
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .auth-shell {
    padding: 34px 20px 22px;
  }

  .auth-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .auth-points {
    grid-template-columns: 1fr;
  }
}

/* Blog pages */
.blog-main {
  background: #fff;
}

.blog-section {
  padding: 34px 32px 76px;
}

.blog-shell {
  max-width: 1420px;
  margin: 0 auto;
}

.blog-article-shell {
  width: min(100%, 920px);
  margin: 0 auto;
}

.blog-section-head {
  max-width: 880px;
  margin: 0 auto 28px;
  text-align: center;
}

.blog-section-head h2 {
  margin: 0;
  color: #111c3d;
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 720;
  text-wrap: balance;
}

.blog-section-head p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #64748f;
  font-size: 18px;
  line-height: 1.58;
  font-weight: 500;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Playbooks overview */
.playbooks-main .product-hero-inner {
  border-radius: 42px;
}

.playbooks-section {
  padding-top: 58px;
}

.playbook-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.playbook-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(207, 218, 233, 0.9);
  border-radius: 24px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.playbook-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 109, 246, 0.45);
  box-shadow: 0 26px 58px rgba(31, 53, 84, 0.12);
}

.playbook-card-image {
  aspect-ratio: 16 / 9;
  display: block;
  background: #f7faff;
  border-bottom: 1px solid rgba(207, 218, 233, 0.86);
  overflow: hidden;
}

.playbook-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.playbook-card-image.has-html-visual {
  display: grid;
  padding: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.playbook-card-body {
  min-height: 260px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.playbook-card strong {
  color: #111c3d;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

.playbook-card-body > span {
  margin-top: 12px;
  color: #64748f;
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 500;
}

.playbook-card em {
  margin-top: auto;
  padding-top: 22px;
  color: #3f6df6;
  font-style: normal;
  font-weight: 850;
}

.playbooks-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid rgba(207, 218, 233, 0.9);
  border-radius: 24px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.08);
}

.playbooks-empty h3 {
  margin: 0;
  color: #111c3d;
  font-size: 24px;
  letter-spacing: 0;
}

.playbooks-empty p {
  margin: 12px 0 0;
  color: #64748f;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .playbook-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .playbooks-main .product-hero-inner {
    border-radius: 30px;
  }

  .playbook-card-grid {
    grid-template-columns: 1fr;
  }

  .playbook-card-body {
    min-height: auto;
  }
}

.blog-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(207, 218, 233, 0.86);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.08);
  display: grid;
  align-content: start;
}

.blog-card span {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 18px 0 0;
  color: #111c3d;
  font-size: clamp(21px, 1.45vw, 26px);
  line-height: 1.14;
  letter-spacing: 0;
}

.blog-card p {
  margin: 12px 0 0;
  color: #66758f;
  line-height: 1.6;
  font-weight: 500;
}

.blog-card .blog-card-button,
.blog-card .text-link {
  justify-self: start;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #223e67;
  background: #fff;
  border: 1px solid rgba(201, 213, 230, 0.95);
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(31, 53, 84, 0.07);
}

.blog-article {
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(207, 218, 233, 0.86);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.08);
  color: #20314f;
}

.blog-article > *:first-child {
  margin-top: 0;
}

.blog-article > *:last-child {
  margin-bottom: 0;
}

.blog-article h2,
.blog-article h3 {
  color: #08183c;
  letter-spacing: 0;
  text-wrap: balance;
}

.blog-article h2 {
  margin: 40px 0 0;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.14;
  font-weight: 760;
}

.blog-article h3 {
  margin: 30px 0 0;
  font-size: clamp(21px, 1.5vw, 26px);
  line-height: 1.18;
  font-weight: 760;
}

.blog-article p,
.blog-article li {
  color: #596b86;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.72;
  font-weight: 500;
}

.blog-article p {
  margin: 16px 0 0;
}

.blog-article ul,
.blog-article ol {
  margin: 16px 0 0;
  padding-left: 1.35em;
}

.blog-article li + li {
  margin-top: 10px;
}

.blog-article strong {
  color: #111c3d;
  font-weight: 820;
}

.blog-article a {
  color: #315ed8;
  font-weight: 750;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.blog-tags-panel {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(207, 218, 233, 0.86);
  border-radius: 22px;
  background: #f8fbff;
  box-shadow: 0 14px 34px rgba(31, 53, 84, 0.07);
}

.blog-tags-panel > span {
  display: block;
  color: #111c3d;
  font-size: 16px;
  font-weight: 850;
}

.blog-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.blog-tags-list .product-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 14px;
}

.blog-stage {
  padding-top: 0;
}

.blog-topic-panel {
  width: min(100%, 560px);
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(190, 210, 238, 0.9);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 26px 66px rgba(31, 53, 84, 0.14);
  display: grid;
  gap: 12px;
}

.blog-topic-panel div {
  padding: 16px;
  border: 1px solid rgba(203, 214, 230, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.blog-topic-panel span,
.blog-topic-panel strong {
  display: block;
}

.blog-topic-panel span {
  color: #3f6df6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-topic-panel strong {
  margin-top: 7px;
  color: #15284b;
  font-size: 15px;
  line-height: 1.3;
}

.blog-topic-panel-dark {
  background: #111c3d;
  border-color: rgba(255, 255, 255, 0.08);
}

.blog-topic-panel-dark div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.blog-topic-panel-dark span {
  color: #8eb0ff;
}

.blog-topic-panel-dark strong {
  color: #fff;
}

@media (max-width: 980px) {
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-section {
    padding: 28px 18px 52px;
  }

  .blog-article {
    border-radius: 20px;
  }
}

/* Partner page */
.partners-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.partners-hero-copy {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.partners-hero-copy .product-subtitle,
.partners-hero-copy .product-points {
  margin-left: 0;
  margin-right: 0;
}

.partners-page .h1-trial-cta,
.partners-page .product-actions,
.partners-page .product-points {
  justify-content: flex-start;
}

.partners-hero-visual {
  display: flex;
  justify-content: center;
}

.partners-dashboard {
  width: min(100%, 610px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(179, 202, 235, 0.95);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 28px 70px rgba(31, 53, 84, 0.16);
}

.partners-flow-card,
.partners-referral-list div {
  border: 1px solid rgba(205, 216, 232, 0.88);
  background: rgba(255, 255, 255, 0.86);
}

.partners-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.partners-dashboard-grid article {
  padding: 18px;
  border: 1px solid rgba(63, 109, 246, 0.18);
  border-radius: 20px;
  background: #fff;
}

.partners-dashboard-grid span,
.partners-flow-card span {
  display: block;
  color: #64748f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.partners-dashboard-grid strong {
  display: block;
  margin-top: 8px;
  color: #3f6df6;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
}

.partners-dashboard-grid p,
.partners-flow-card p {
  margin: 8px 0 0;
  color: #66758f;
  line-height: 1.48;
  font-weight: 550;
}

.partners-flow-card {
  margin-top: 12px;
  padding: 18px;
  border-radius: 20px;
}

.partners-flow-card div {
  margin-top: 12px;
  padding: 16px;
  border-radius: 16px;
  background: #111c3d;
}

.partners-flow-card strong {
  color: #fff;
  font-size: 18px;
}

.partners-flow-card p {
  color: rgba(255, 255, 255, 0.72);
}

.partners-referral-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.partners-referral-list div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 16px;
}

.partners-referral-list span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 850;
}

.partners-referral-list strong {
  color: #111c3d;
  font-size: 14px;
}

.partners-referral-list em {
  color: #64748f;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.partners-program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.partners-program-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(207, 218, 233, 0.86);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.08);
  display: flex;
  flex-direction: column;
}

.partners-program-card h3 {
  margin: 0;
  color: #111c3d;
  font-size: 22px;
  line-height: 1.15;
}

.partners-program-card p {
  margin: 11px 0 0;
  color: #66758f;
  line-height: 1.58;
  font-weight: 500;
}

.partners-program-card .text-link {
  margin-top: auto;
  padding-top: 20px;
}

.partners-proof {
  padding: 28px 32px 78px;
}

.partners-proof-inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 54px);
  border-radius: 32px;
  background: #111c3d;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.partners-proof h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 730;
}

.partners-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partners-proof-grid article {
  min-height: 130px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.partners-proof-grid strong,
.partners-proof-grid span {
  display: block;
}

.partners-proof-grid strong {
  color: #fff;
  font-size: 19px;
}

.partners-proof-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.partners-split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.partners-split-copy {
  position: sticky;
  top: 112px;
}

.partners-split-copy h2 {
  margin: 0;
  color: #111c3d;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.partners-split-copy p {
  margin: 16px 0 0;
  color: #64748f;
  font-size: 18px;
  line-height: 1.58;
}

.partners-benefit-list {
  display: grid;
  gap: 14px;
}

.partners-benefit-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(207, 218, 233, 0.86);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.07);
}

.partners-benefit-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 13px;
  font-weight: 850;
}

.partners-benefit-list h3 {
  margin: 0;
  color: #111c3d;
  font-size: 21px;
}

.partners-benefit-list p {
  margin: 8px 0 0;
  color: #66758f;
  line-height: 1.58;
  font-weight: 500;
}

.partners-process-section {
  padding-top: 10px;
}

.partners-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.partners-process article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(180, 203, 236, 0.9);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  box-shadow: 0 20px 48px rgba(31, 53, 84, 0.09);
}

.partners-process span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: #eaf8f0;
  color: #087847;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.partners-process h3 {
  margin: 18px 0 0;
  color: #111c3d;
  font-size: 24px;
  line-height: 1.12;
}

.partners-process p {
  margin: 12px 0 0;
  color: #66758f;
  line-height: 1.58;
}

.partners-help {
  padding: 4px 32px 76px;
}

.partners-help-inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(190, 210, 238, 0.9);
  border-radius: 32px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.partners-help h2 {
  margin: 0;
  max-width: 840px;
  color: #111c3d;
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.1;
}

.partners-help p {
  max-width: 790px;
  margin: 14px 0 0;
  color: #64748f;
  font-size: 18px;
  line-height: 1.58;
}

.partners-page .partners-help-inner,
.partners-page .product-cta-inner {
  flex-direction: column;
  align-items: flex-start;
}

.partners-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 68px);
}

.partners-faq-head h2 {
  margin: 0;
  color: #111c3d;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

.partners-faq-list {
  display: grid;
  gap: 12px;
}

.partners-faq-list article {
  padding: 22px;
  border: 1px solid rgba(207, 218, 233, 0.86);
  border-radius: 20px;
  background: #fff;
}

.partners-faq-list h3 {
  margin: 0;
  color: #111c3d;
  font-size: 20px;
}

.partners-faq-list p {
  margin: 9px 0 0;
  color: #66758f;
  line-height: 1.58;
}

@media (max-width: 1120px) {
  .partners-hero-inner,
  .partners-proof-inner,
  .partners-split,
  .partners-faq {
    grid-template-columns: 1fr;
  }

  .partners-hero-copy,
  .partners-hero-copy .product-subtitle,
  .partners-hero-copy .product-points {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .partners-hero-copy .h1-trial-cta,
  .partners-hero-copy .product-actions,
  .partners-hero-copy .product-points {
    justify-content: flex-start;
  }

  .partners-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-split-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .partners-dashboard-grid,
  .partners-program-grid,
  .partners-proof-grid,
  .partners-process {
    grid-template-columns: 1fr;
  }

  .partners-referral-list div {
    grid-template-columns: auto 1fr;
  }

  .partners-referral-list em {
    grid-column: 2;
  }

  .partners-proof,
  .partners-help {
    padding-left: 18px;
    padding-right: 18px;
  }

  .partners-help-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.service-partners-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.service-partners-hero-copy {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.service-partners-hero-copy .product-subtitle,
.service-partners-hero-copy .product-points {
  margin-left: 0;
  margin-right: 0;
}

.service-partners-visual {
  display: flex;
  justify-content: center;
}

.service-partners-console {
  width: min(100%, 620px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(179, 202, 235, 0.95);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 28px 70px rgba(31, 53, 84, 0.16);
}

.service-partners-client-card,
.service-partners-pipeline div {
  border: 1px solid rgba(205, 216, 232, 0.88);
  background: rgba(255, 255, 255, 0.88);
}

.service-partners-client-card {
  margin-top: 0;
  padding: 20px;
  border-radius: 22px;
}

.service-partners-client-card span,
.service-partners-metrics span {
  display: block;
  color: #64748f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-partners-client-card strong {
  display: block;
  margin-top: 10px;
  color: #111c3d;
  font-size: 24px;
  line-height: 1.12;
}

.service-partners-client-card p,
.service-partners-metrics p {
  margin: 8px 0 0;
  color: #66758f;
  line-height: 1.48;
}

.service-partners-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.service-partners-metrics article {
  padding: 18px;
  border: 1px solid rgba(63, 109, 246, 0.18);
  border-radius: 20px;
  background: #fff;
}

.service-partners-metrics strong {
  display: block;
  margin-top: 8px;
  color: #3f6df6;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
}

.service-partners-pipeline {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.service-partners-pipeline div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 16px;
}

.service-partners-pipeline span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 850;
}

.service-partners-pipeline strong {
  color: #111c3d;
  font-size: 14px;
}

.service-partners-pipeline em {
  color: #64748f;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.service-partners-revenue {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(190, 210, 238, 0.9);
  border-radius: 32px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
}

.service-partners-revenue-copy h2 {
  margin: 0;
  color: #111c3d;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.service-partners-revenue-copy p {
  margin: 16px 0 0;
  color: #64748f;
  font-size: 18px;
  line-height: 1.58;
}

.service-partners-revenue-grid {
  display: grid;
  gap: 14px;
}

.service-partners-revenue-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  padding: 22px;
  border: 1px solid rgba(207, 218, 233, 0.86);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.07);
}

.service-partners-revenue-grid span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #eaf8f0;
  color: #087847;
  font-size: 13px;
  font-weight: 850;
}

.service-partners-revenue-grid h3 {
  margin: 0;
  color: #111c3d;
  font-size: 21px;
}

.service-partners-revenue-grid p {
  margin: 0;
  color: #66758f;
  line-height: 1.58;
}

.service-partners-fit {
  padding: 28px 32px 78px;
}

.service-partners-fit-inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 54px);
  border-radius: 32px;
  background: #111c3d;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.service-partners-fit h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.service-partners-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-partners-fit-grid article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.service-partners-fit-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(50, 199, 129, 0.16);
  color: #73e3ac;
  font-weight: 900;
}

.service-partners-fit-grid strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
}

.service-partners-fit-grid p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.service-partners-affiliate-bridge {
  padding-top: 0;
}

.service-partner-signup-card strong {
  font-size: clamp(54px, 5vw, 82px);
}

@media (max-width: 1120px) {
  .service-partners-hero-inner,
  .service-partners-revenue,
  .service-partners-fit-inner {
    grid-template-columns: 1fr;
  }

  .service-partners-hero-copy,
  .service-partners-hero-copy .product-subtitle,
  .service-partners-hero-copy .product-points {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .service-partners-hero-copy .product-actions,
  .service-partners-hero-copy .product-points {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .service-partners-metrics,
  .service-partners-fit-grid {
    grid-template-columns: 1fr;
  }

  .service-partners-pipeline div {
    grid-template-columns: auto 1fr;
  }

  .service-partners-pipeline em {
    grid-column: 2;
  }

  .service-partners-fit {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-partners-revenue {
    padding: 24px 18px;
  }
}

/* Affiliate page */
.affiliates-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.affiliates-hero-copy {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.affiliates-hero-copy .product-subtitle,
.affiliates-hero-copy .product-points {
  margin-left: 0;
  margin-right: 0;
}

.affiliates-dashboard {
  width: min(100%, 610px);
  justify-self: center;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(179, 202, 235, 0.95);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 28px 70px rgba(31, 53, 84, 0.16);
}

.affiliates-metric-panel,
.affiliates-link-card {
  border: 1px solid rgba(205, 216, 232, 0.88);
  background: rgba(255, 255, 255, 0.88);
}

.affiliates-metric-panel {
  margin-top: 0;
  padding: 22px;
  border-radius: 22px;
}

.affiliates-metric-panel span,
.affiliates-link-card span {
  display: block;
  color: #64748f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.affiliates-metric-panel strong {
  display: block;
  margin-top: 10px;
  color: #3f6df6;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
}

.affiliates-metric-panel p {
  margin: 12px 0 0;
  color: #66758f;
  line-height: 1.5;
  font-weight: 600;
}

.affiliates-progress-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.affiliates-progress-list div {
  padding: 16px;
  border: 1px solid rgba(63, 109, 246, 0.16);
  border-radius: 18px;
  background: #fff;
}

.affiliates-progress-list span,
.affiliates-progress-list strong {
  display: block;
}

.affiliates-progress-list span {
  color: #64748f;
  font-size: 12px;
  font-weight: 800;
}

.affiliates-progress-list strong {
  margin-top: 6px;
  color: #111c3d;
  font-size: 24px;
}

.affiliates-link-card {
  margin-top: 12px;
  padding: 18px;
  border-radius: 20px;
}

.affiliates-link-card strong {
  display: block;
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  background: #111c3d;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.affiliates-calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(190, 210, 238, 0.9);
  border-radius: 32px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
}

.affiliates-calculator-copy h2 {
  margin: 0;
  color: #111c3d;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.affiliates-calculator-copy p {
  margin: 16px 0 0;
  color: #64748f;
  font-size: 18px;
  line-height: 1.58;
}

.affiliates-calculator-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(179, 202, 235, 0.95);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 62px rgba(31, 53, 84, 0.14);
}

.affiliates-calculator-result span,
.affiliates-range-field span {
  display: block;
  color: #64748f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.affiliates-calculator-result strong {
  display: block;
  margin-top: 10px;
  color: #3f6df6;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.affiliates-calculator-result p {
  margin: 12px 0 0;
  color: #66758f;
  font-size: 17px;
  line-height: 1.5;
}

.affiliates-range-field {
  display: block;
  margin-top: 28px;
}

.affiliates-range-field input {
  width: 100%;
  margin-top: 16px;
  accent-color: #3f6df6;
}

.affiliates-calculator-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #64748f;
  font-size: 13px;
  font-weight: 750;
}

.affiliates-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.affiliates-steps-section {
  padding-top: 8px;
}

.affiliates-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.affiliates-step-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(180, 203, 236, 0.9);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  box-shadow: 0 20px 48px rgba(31, 53, 84, 0.09);
}

.affiliates-step-grid span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: #eaf8f0;
  color: #087847;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.affiliates-step-grid h3 {
  margin: 18px 0 0;
  color: #111c3d;
  font-size: 24px;
  line-height: 1.12;
}

.affiliates-step-grid p {
  margin: 12px 0 0;
  color: #66758f;
  line-height: 1.58;
}

.affiliates-inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #3f6df6;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.affiliates-inline-link:hover {
  text-decoration: underline;
}

.affiliates-audience {
  padding: 22px 32px 78px;
}

.affiliates-audience-inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 60px);
  border-radius: 34px;
  background: #111c3d;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.affiliates-audience-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.affiliates-audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.affiliates-audience-grid span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 750;
}

.affiliates-service-bridge {
  padding-top: 0;
}

@media (max-width: 1120px) {
  .affiliates-hero-inner,
  .affiliates-calculator,
  .affiliates-audience-inner {
    grid-template-columns: 1fr;
  }

  .affiliates-hero-copy,
  .affiliates-hero-copy .product-subtitle,
  .affiliates-hero-copy .product-points {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .affiliates-hero-copy .product-actions,
  .affiliates-hero-copy .product-points {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .affiliates-progress-list,
  .affiliates-benefit-grid,
  .affiliates-step-grid {
    grid-template-columns: 1fr;
  }

  .affiliates-audience {
    padding-left: 18px;
    padding-right: 18px;
  }

  .affiliates-calculator {
    padding: 24px 18px;
  }
}

/* Partner family design guard */
:is(.partners-page, .service-partners-page, .affiliates-page) .product-hero-copy,
:is(.partners-page, .service-partners-page, .affiliates-page) .product-hero-copy .product-subtitle,
:is(.partners-page, .service-partners-page, .affiliates-page) .product-hero-copy .product-points,
:is(.partners-page, .service-partners-page, .affiliates-page) .product-section-head {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

:is(.partners-page, .service-partners-page, .affiliates-page) .h1-trial-cta,
:is(.partners-page, .service-partners-page, .affiliates-page) .product-actions,
:is(.partners-page, .service-partners-page, .affiliates-page) .product-points {
  justify-content: flex-start;
}

:is(.partners-page, .service-partners-page, .affiliates-page) .partners-help-inner,
:is(.partners-page, .service-partners-page, .affiliates-page) .product-cta-inner {
  flex-direction: column;
  align-items: flex-start;
}

:is(.partners-page, .service-partners-page, .affiliates-page) :is(
  .partners-dashboard,
  .partners-dashboard-grid article,
  .partners-flow-card,
  .partners-flow-card div,
  .partners-referral-list div,
  .partners-program-card,
  .partners-proof-inner,
  .partners-proof-grid article,
  .partners-benefit-list article,
  .partners-benefit-list span,
  .partners-process article,
  .partners-help-inner,
  .partners-faq-list article,
  .product-cta-inner,
  .service-partners-console,
  .service-partners-client-card,
  .service-partners-metrics article,
  .service-partners-pipeline div,
  .service-partners-revenue,
  .service-partners-revenue-grid article,
  .service-partners-revenue-grid span,
  .service-partners-fit-inner,
  .service-partners-fit-grid article,
  .affiliates-dashboard,
  .affiliates-metric-panel,
  .affiliates-progress-list div,
  .affiliates-link-card,
  .affiliates-link-card strong,
  .affiliates-calculator,
  .affiliates-calculator-card,
  .affiliates-step-grid article,
  .affiliates-audience-inner,
  .affiliates-audience-grid span
) {
  border-radius: 8px;
}

.affiliate-application-hero {
  padding-bottom: 42px;
}

.affiliate-application-hero-inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  align-items: center;
}

.affiliate-application-preview,
.affiliate-application-form-shell,
.affiliate-application-sidebar-card,
.affiliate-application-sidebar-note {
  border: 1px solid rgba(179, 202, 235, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 62px rgba(31, 53, 84, 0.12);
}

.affiliate-application-preview {
  padding: 22px;
  border-radius: 30px;
}

.affiliate-application-progress {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.affiliate-application-progress div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  padding: 16px;
  border: 1px solid rgba(190, 210, 238, 0.86);
  border-radius: 18px;
  background: #fff;
}

.affiliate-application-progress div.is-active {
  border-color: rgba(63, 109, 246, 0.42);
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
}

.affiliate-application-progress span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 900;
}

.affiliate-application-progress strong {
  color: #111c3d;
  line-height: 1.2;
}

.affiliate-application-progress small {
  color: #64748f;
  font-size: 13px;
  font-weight: 700;
}

.affiliate-application-rate-card {
  margin-top: 18px;
  padding: 22px;
  border-radius: 22px;
  background: #111c3d;
  color: #fff;
}

.affiliate-application-rate-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.affiliate-application-rate-card strong {
  display: block;
  margin-top: 6px;
  font-size: 72px;
  line-height: 0.98;
}

.affiliate-application-rate-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.affiliate-application-section {
  padding: 20px 32px 86px;
}

.affiliate-application-inner {
  max-width: 1420px;
  margin: 0 auto;
}

.affiliate-application-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: 24px;
  align-items: start;
}

.affiliate-application-form-shell {
  position: relative;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 32px;
}

.affiliate-application-success {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.affiliate-application-form-shell.is-success .affiliate-application-success {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.affiliate-application-form-head {
  max-width: 720px;
}

.affiliate-application-form-head h2 {
  margin: 0;
  color: #111c3d;
  font-size: clamp(30px, 3.1vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.affiliate-application-form-head p {
  margin: 14px 0 0;
  color: #64748f;
  font-size: 17px;
  line-height: 1.58;
}

.affiliate-application-form {
  margin-top: 30px;
}

.affiliate-application-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.affiliate-application-fieldset + .affiliate-application-fieldset {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(190, 210, 238, 0.78);
}

.affiliate-application-fieldset legend {
  margin-bottom: 16px;
  color: #111c3d;
  font-size: 18px;
  font-weight: 850;
}

.affiliate-application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.affiliate-application-field {
  display: grid;
  gap: 8px;
}

.affiliate-application-field.full {
  grid-column: 1 / -1;
}

.affiliate-application-field span,
.affiliate-application-consent span {
  color: #354260;
  font-size: 13px;
  font-weight: 850;
}

.affiliate-application-field input,
.affiliate-application-field select,
.affiliate-application-field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(170, 193, 226, 0.92);
  border-radius: 16px;
  background: #fff;
  color: #111c3d;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.affiliate-application-field input,
.affiliate-application-field select {
  padding: 0 15px;
}

.affiliate-application-field textarea {
  padding: 14px 15px;
  resize: vertical;
  line-height: 1.5;
}

.affiliate-application-field input:focus,
.affiliate-application-field select:focus,
.affiliate-application-field textarea:focus {
  border-color: rgba(63, 109, 246, 0.72);
  box-shadow: 0 0 0 4px rgba(63, 109, 246, 0.1);
}

.affiliate-application-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(190, 210, 238, 0.9);
  border-radius: 18px;
  background: #f8fbff;
}

.affiliate-application-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #3f6df6;
}

.affiliate-application-consent span {
  line-height: 1.5;
}

.affiliate-application-submit {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}

.affiliate-application-submit p {
  max-width: 520px;
  margin: 0;
  color: #64748f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.affiliate-application-submit .is-loading {
  opacity: 0.75;
  cursor: wait;
}

.affiliate-application-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 112px;
}

.affiliate-application-sidebar-card,
.affiliate-application-sidebar-note {
  border-radius: 28px;
  padding: 24px;
}

.affiliate-application-sidebar-card h2 {
  margin: 0;
  color: #111c3d;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: 0;
}

.affiliate-application-checklist {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.affiliate-application-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(190, 210, 238, 0.82);
  border-radius: 18px;
  background: #fff;
}

.affiliate-application-checklist span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 900;
}

.affiliate-application-checklist strong {
  color: #111c3d;
  font-size: 14px;
  line-height: 1.35;
}

.affiliate-application-sidebar-note {
  background: #111c3d;
  color: #fff;
}

.affiliate-application-sidebar-note h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.affiliate-application-sidebar-note p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

@media (max-width: 1120px) {
  .affiliate-application-hero-inner,
  .affiliate-application-layout {
    grid-template-columns: 1fr;
  }

  .affiliate-application-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .affiliate-application-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .affiliate-application-grid,
  .affiliate-application-submit {
    grid-template-columns: 1fr;
  }

  .affiliate-application-submit {
    display: grid;
  }

  .affiliate-application-submit .product-button {
    width: 100%;
  }
}

/* Affiliate application compact form entry */
.affiliate-application-page .affiliate-application-hero {
  padding: 64px 32px 0;
}

.affiliate-application-page .affiliate-application-hero .product-hero-inner {
  min-height: 0;
  padding: clamp(28px, 3.2vw, 42px);
  border-radius: 8px 8px 0 0;
  grid-template-columns: 1fr;
}

.affiliate-application-page .affiliate-application-hero .product-hero-copy {
  max-width: 860px;
  margin-left: 0;
  text-align: left;
}

.affiliate-application-page .affiliate-application-hero h1 {
  max-width: 760px;
  margin-left: 0;
  font-size: clamp(34px, 3vw, 46px);
}

.affiliate-application-page .affiliate-application-hero .product-subtitle {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(15px, 1vw, 17px);
  text-align: left;
}

.affiliate-application-page .affiliate-application-hero .product-actions {
  justify-content: flex-start;
  margin-top: 20px;
}

.affiliate-application-page .affiliate-application-hero :is(
  .h1-trial-cta,
  .product-points,
  .affiliate-application-preview
) {
  display: none;
}

.affiliate-application-page .affiliate-application-section {
  padding-top: 18px;
}

@media (max-width: 760px) {
  .affiliate-application-page .affiliate-application-hero {
    padding: 44px 18px 0;
  }

  .affiliate-application-page .affiliate-application-hero .product-hero-inner {
    padding: 24px 18px;
  }

  .affiliate-application-page .affiliate-application-hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }
}

/* Service Partner signup design guard */
.service-partner-signup-page .service-partner-signup-hero {
  padding: 64px 32px 0;
}

.service-partner-signup-page .service-partner-signup-hero .product-hero-inner {
  min-height: 0;
  padding: clamp(28px, 3.2vw, 42px);
  border-radius: 8px 8px 0 0;
  grid-template-columns: 1fr;
}

.service-partner-signup-page .service-partner-signup-hero .product-hero-copy {
  max-width: 860px;
}

.service-partner-signup-page .service-partner-signup-hero h1 {
  max-width: 760px;
  margin-left: 0;
  font-size: clamp(34px, 3vw, 46px);
}

.service-partner-signup-page .service-partner-signup-hero .product-subtitle {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(15px, 1vw, 17px);
}

.service-partner-signup-page .service-partner-signup-hero .product-actions {
  margin-top: 20px;
}

.service-partner-signup-page .service-partner-signup-hero .product-points,
.service-partner-signup-page .service-partner-signup-hero .affiliate-application-preview {
  display: none;
}

.service-partner-signup-page .affiliate-application-section {
  padding-top: 18px;
}

.service-partner-signup-page .product-hero-copy,
.service-partner-signup-page .product-hero-copy .product-subtitle,
.service-partner-signup-page .product-hero-copy .product-points {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.service-partner-signup-page .product-actions,
.service-partner-signup-page .product-points {
  justify-content: flex-start;
}

.service-partner-signup-page .affiliate-application-submit {
  justify-content: flex-start;
  align-items: flex-start;
}

.service-partner-signup-page .product-cta-inner {
  flex-direction: column;
  align-items: flex-start;
}

.service-partner-signup-page :is(
  .affiliate-application-preview,
  .affiliate-application-progress div,
  .affiliate-application-progress span,
  .affiliate-application-rate-card,
  .affiliate-application-form-shell,
  .affiliate-application-success,
  .affiliate-application-field input,
  .affiliate-application-field select,
  .affiliate-application-field textarea,
  .affiliate-application-consent,
  .affiliate-application-sidebar-card,
  .affiliate-application-sidebar-note,
  .affiliate-application-checklist li,
  .affiliate-application-checklist span,
  .product-cta-inner
) {
  border-radius: 8px;
}

@media (max-width: 760px) {
  .service-partner-signup-page .service-partner-signup-hero {
    padding: 44px 18px 0;
  }

  .service-partner-signup-page .service-partner-signup-hero .product-hero-inner {
    padding: 24px 18px;
  }

  .service-partner-signup-page .service-partner-signup-hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .service-partner-signup-page .affiliate-application-submit {
    justify-items: flex-start;
  }

  .service-partner-signup-page .affiliate-application-submit .product-button {
    width: auto;
  }
}

/* Playbook detail pages */
.playbook-detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  text-align: left;
}

.playbook-detail-copy {
  max-width: 680px;
  margin: 0;
  text-align: left;
}

.playbook-detail-copy .product-subtitle {
  margin-left: 0;
  margin-right: 0;
}

.playbook-detail-copy .product-actions {
  justify-content: flex-start;
}

.playbook-detail-image {
  min-width: 0;
  padding: clamp(10px, 2vw, 16px);
  border: 1px solid rgba(207, 218, 233, 0.9);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(31, 53, 84, 0.12);
}

.playbook-detail-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.playbook-persona-hero {
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.playbook-persona-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
  align-items: center;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(207, 218, 233, 0.9);
  border-radius: 24px;
  background: #fff;
}

.playbook-persona-card img {
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
}

.playbook-persona-card span {
  display: block;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.playbook-persona-card strong {
  display: block;
  margin-top: 8px;
  color: #111c3d;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.playbook-persona-card p {
  margin: 10px 0 0;
  color: #64748f;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.playbook-persona-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.playbook-persona-checklist span {
  min-height: 54px;
  display: grid;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(63, 109, 246, 0.16);
  border-radius: 16px;
  background: #fff;
  color: #111c3d;
  font-size: 13px;
  font-weight: 850;
}

.playbook-detail-steps {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
  counter-reset: none;
}

.playbook-detail-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(207, 218, 233, 0.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.08);
}

.playbook-detail-steps li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 14px;
  font-weight: 900;
}

.playbook-detail-steps h3 {
  margin: 0;
  color: #111c3d;
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.16;
  letter-spacing: 0;
}

.playbook-detail-steps p {
  margin: 10px 0 0;
  color: #64748f;
  font-size: 16px;
  line-height: 1.64;
  font-weight: 500;
}

.playbook-detail-cta {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .playbook-detail-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .playbook-detail-copy {
    max-width: 900px;
    text-align: center;
  }

  .playbook-detail-copy .product-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .playbook-detail-copy .product-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .playbook-detail-steps li {
    grid-template-columns: 1fr;
  }

  .playbook-persona-card,
  .playbook-persona-checklist {
    grid-template-columns: 1fr;
  }
}

/* Founder -> Sales HTML playbook illustration */
.founder-sales-flow-visual {
  position: relative;
  min-width: 0;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) minmax(240px, 1.15fr) minmax(240px, 1.15fr) minmax(130px, 0.72fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(190, 210, 238, 0.9);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  overflow: hidden;
}

.founder-sales-flow-card {
  min-height: 100%;
  grid-template-columns: 0.8fr 1.15fr 1.15fr 0.8fr;
  gap: 10px;
  padding: 12px;
  border: 0;
  border-radius: 18px;
  background: transparent;
}

.founder-sales-flow-hero {
  min-height: 320px;
  grid-template-columns: 0.8fr 1.15fr 1.15fr 0.8fr;
  gap: 10px;
  padding: 12px;
}

.founder-sales-flow-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  background: linear-gradient(90deg, transparent, rgba(63, 109, 246, 0.12), transparent);
  opacity: 0.8;
  pointer-events: none;
}

.founder-sales-stage,
.stakeholder-stage,
.connection-stage {
  position: relative;
  z-index: 1;
}

.founder-sales-stage {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
}

.founder-sales-person,
.sales-person {
  width: clamp(74px, 7vw, 104px);
  height: clamp(74px, 7vw, 104px);
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #eef4ff;
  box-shadow: 0 16px 34px rgba(31, 53, 84, 0.14);
  overflow: hidden;
}

.founder-sales-person img,
.sales-person img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.founder-person img {
  transform: scale(1.38);
}

.sales-person {
  background: #eef4ff;
}

.founder-sales-stage strong,
.stakeholder-stage-head strong {
  color: #111c3d;
  font-size: clamp(13px, 1.4vw, 17px);
  line-height: 1.2;
}

.founder-sales-stage span,
.stakeholder-stage-head span {
  color: #64748f;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 750;
  line-height: 1.35;
}

.connection-stage {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 12px);
  align-items: center;
  justify-items: center;
}

.connection-person {
  position: relative;
  width: clamp(34px, 4vw, 52px);
  height: clamp(34px, 4vw, 52px);
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #dfe8f8 0%, #ffffff 100%);
  box-shadow: 0 10px 20px rgba(31, 53, 84, 0.12);
  animation: connectionPulse 4.8s ease-in-out infinite;
  animation-delay: calc(var(--connection-index, 1) * 90ms);
}

.connection-person:nth-child(1) { --connection-index: 1; }
.connection-person:nth-child(2) { --connection-index: 2; }
.connection-person:nth-child(3) { --connection-index: 3; }
.connection-person:nth-child(4) { --connection-index: 4; }
.connection-person:nth-child(5) { --connection-index: 5; }
.connection-person:nth-child(6) { --connection-index: 6; }
.connection-person:nth-child(7) { --connection-index: 7; }
.connection-person:nth-child(8) { --connection-index: 8; }
.connection-person:nth-child(9) { --connection-index: 9; }
.connection-person:nth-child(10) { --connection-index: 10; }

.connection-person i {
  width: 68%;
  height: 68%;
  display: grid;
  place-items: center;
  border-radius: inherit;
  background: #eef4ff;
  color: #3f6df6;
  font-style: normal;
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 900;
}

.connection-person.is-approved {
  background: #32c781;
  animation-name: connectionApproved;
}

.connection-person.is-approved::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 34%;
  height: 34%;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #32c781;
}

.connection-person.is-approved::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 10%;
  z-index: 2;
  width: 14%;
  height: 24%;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(42deg);
}

.stakeholder-stage {
  padding: clamp(13px, 2vw, 20px);
  border: 1px solid rgba(190, 210, 238, 0.9);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.08);
}

.stakeholder-stage-head {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(207, 218, 233, 0.86);
}

.stakeholder-phone-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.stakeholder-phone-list div {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 8px;
  align-items: center;
  padding: 9px;
  border-radius: 14px;
  background: #f7faff;
  animation: stakeholderArrive 4.8s ease-in-out infinite;
}

.stakeholder-phone-list div:nth-child(2) {
  animation-delay: 180ms;
}

.stakeholder-phone-list div:nth-child(3) {
  animation-delay: 360ms;
}

.stakeholder-phone-list span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 11px;
  font-weight: 900;
}

.stakeholder-phone-list i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #32c781;
}

.stakeholder-phone-list i::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-top-width: 4px;
  border-radius: 4px 4px 6px 6px;
  transform: rotate(-14deg);
}

.stakeholder-phone-list strong {
  min-width: 0;
  color: #111c3d;
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.2;
}

.flow-arrow {
  position: absolute;
  z-index: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(63, 109, 246, 0.1), rgba(63, 109, 246, 0.72));
  transform: translateY(-50%);
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(63, 109, 246, 0.72);
  border-right: 2px solid rgba(63, 109, 246, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

.flow-arrow-one {
  left: 18%;
  width: 28%;
}

.flow-arrow-two {
  left: 58%;
  width: 24%;
}

.founder-sales-flow-card .founder-sales-stage strong,
.founder-sales-flow-card .founder-sales-stage span,
.founder-sales-flow-card .stakeholder-stage-head span {
  display: none;
}

.founder-sales-flow-card .stakeholder-stage-head {
  padding-bottom: 8px;
}

.founder-sales-flow-card .stakeholder-stage-head strong {
  font-size: 10px;
}

.founder-sales-flow-card .stakeholder-phone-list div {
  padding: 5px;
}

.founder-sales-flow-card .stakeholder-phone-list strong {
  display: none;
}

@keyframes connectionPulse {
  0%, 24%, 100% {
    transform: translateY(0);
    opacity: 0.88;
  }
  12% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

@keyframes connectionApproved {
  0%, 28%, 100% {
    transform: translateY(0) scale(1);
  }
  42%, 72% {
    transform: translateY(-7px) scale(1.08);
  }
}

@keyframes stakeholderArrive {
  0%, 35% {
    opacity: 0.45;
    transform: translateX(-8px);
  }
  48%, 100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .founder-sales-flow-visual {
    grid-template-columns: 1fr;
  }

  .connection-stage {
    max-width: 420px;
    margin: 0 auto;
  }

  .flow-arrow {
    display: none;
  }
}

/* Updated Playbook design structure */
.playbooks-main .product-hero {
  padding-top: clamp(72px, 8vw, 112px);
}

.playbooks-main .product-hero-inner,
.playbook-detail-main .product-hero-inner {
  border: 1px solid rgba(207, 218, 233, 0.9);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 26px 70px rgba(31, 53, 84, 0.1);
}

.playbook-card {
  border-radius: 22px;
}

.playbook-card-image {
  aspect-ratio: 1.7 / 1;
}

.playbook-card-image.has-html-visual {
  padding: 16px;
}

.playbook-detail-hero-inner {
  grid-template-columns: minmax(420px, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(34px, 5vw, 84px);
  padding: clamp(34px, 5vw, 64px);
}

.playbook-detail-image {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.playbook-detail-section {
  padding-top: clamp(56px, 7vw, 96px);
}

.founder-sales-flow-page {
  min-height: 520px;
  grid-template-columns: minmax(150px, 0.78fr) minmax(330px, 1.22fr);
  grid-template-areas:
    "founder connections"
    "stakeholder sales";
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
  padding: clamp(18px, 2.6vw, 30px);
}

.founder-sales-flow-page .founder-stage {
  grid-area: founder;
}

.founder-sales-flow-page .connection-stage {
  grid-area: connections;
  width: 100%;
  max-width: none;
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(207, 218, 233, 0.86);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.founder-sales-flow-page .stakeholder-stage {
  grid-area: stakeholder;
}

.founder-sales-flow-page .sales-stage {
  grid-area: sales;
}

.founder-sales-flow-page .founder-sales-stage {
  min-height: 100%;
  align-content: center;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(207, 218, 233, 0.86);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.founder-sales-flow-page .stakeholder-stage {
  align-self: stretch;
  display: grid;
  align-content: center;
}

.founder-sales-flow-page .flow-arrow {
  display: none;
}

.founder-sales-flow-page .connection-person {
  width: clamp(42px, 4vw, 58px);
  height: clamp(42px, 4vw, 58px);
}

.founder-sales-flow-page .stakeholder-phone-list div {
  padding: 11px;
}

.founder-sales-flow-page .stakeholder-phone-list strong {
  font-size: 13px;
}

.founder-sales-flow-page .sales-stage::before {
  content: "Telefonnummer fundet";
  display: inline-flex;
  width: fit-content;
  justify-self: center;
  margin-bottom: 2px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf8f0;
  color: #087847;
  font-size: 12px;
  font-weight: 850;
}

@media (max-width: 980px) {
  .playbook-detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .founder-sales-flow-page {
    grid-template-columns: 1fr;
    grid-template-areas:
      "founder"
      "connections"
      "stakeholder"
      "sales";
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .playbook-card-image.has-html-visual {
    padding: 10px;
  }

  .founder-sales-flow-page {
    padding: 14px;
    border-radius: 22px;
  }

  .founder-sales-flow-page .connection-stage {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 12px;
  }
}

/* City and industry directory pages */
.directory-page .page-shell > main {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 48%, #ffffff 100%);
}

.directory-main {
  overflow: clip;
}

.directory-hero {
  padding: 82px 32px 0;
}

.directory-hero-inner {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(44px, 5vw, 70px);
  border-radius: 42px;
  background: linear-gradient(180deg, #f8fafc 0%, #f4f7fb 100%);
  box-shadow: 0 22px 58px rgba(31, 53, 84, 0.08);
}

.directory-hero-copy {
  max-width: 900px;
}

.directory-hero h1 {
  margin: 0;
  color: #111c3d;
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 820;
  text-wrap: balance;
}

.directory-hero h1 span {
  color: #3f6df6;
}

.directory-hero-copy > p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #5c7290;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.6;
  font-weight: 500;
}

.directory-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.directory-summary-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid rgba(207, 218, 233, 0.9);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(31, 53, 84, 0.1);
}

.directory-summary-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 16px;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 15px;
  font-weight: 900;
}

.directory-summary-card strong {
  color: #111c3d;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

.directory-summary-card p {
  margin: 14px 0 0;
  color: #64748f;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.directory-section {
  padding: 58px 32px 88px;
}

.directory-section-inner {
  max-width: 1420px;
  margin: 0 auto;
}

.directory-section-head {
  max-width: 920px;
  margin-bottom: 30px;
}

.directory-section-head h2 {
  margin: 0;
  color: #111c3d;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 780;
  text-wrap: balance;
}

.directory-section-head p {
  margin: 16px 0 0;
  max-width: 760px;
  color: #64748f;
  font-size: 17px;
  line-height: 1.6;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.directory-grid-industries {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.directory-card {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(207, 218, 233, 0.9);
  border-radius: 22px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(31, 53, 84, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.directory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 109, 246, 0.42);
  box-shadow: 0 24px 52px rgba(31, 53, 84, 0.11);
  text-decoration: none;
}

.directory-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 13px;
  font-weight: 900;
}

.directory-card strong {
  color: #111c3d;
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: 0;
}

.directory-card em {
  margin-top: auto;
  padding-top: 18px;
  color: #3f6df6;
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
}

.directory-empty {
  max-width: 720px;
  padding: 28px;
  border: 1px solid rgba(207, 218, 233, 0.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(31, 53, 84, 0.07);
}

.directory-empty h3 {
  margin: 0;
  color: #111c3d;
  font-size: 24px;
}

.directory-empty p {
  margin: 12px 0 0;
  color: #64748f;
}

@media (max-width: 1120px) {
  .directory-hero-inner {
    grid-template-columns: 1fr;
  }

  .directory-grid,
  .directory-grid-industries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .directory-hero {
    padding: 46px 18px 0;
  }

  .directory-hero-inner {
    padding: 34px 22px;
    border-radius: 30px;
  }

  .directory-section {
    padding: 44px 18px 64px;
  }

  .directory-grid,
  .directory-grid-industries {
    grid-template-columns: 1fr;
  }

  .directory-card {
    min-height: 142px;
  }
}

:is(
  .btn,
  .button,
  .button-soft,
  .button-ghost,
  .product-button,
  .cta-button,
  .cta-button-soft,
  .primary-link,
  .secondary-link,
  .contact-button,
  .contact-link-primary,
  .contact-link-secondary,
  .cmp-button,
  .price-cta,
  .cohertus-button,
  .login-button,
  .signup-button,
  .auth-submit,
  .auth-google-button,
  .billing-toggle button,
  .phone-demo-search button,
  .affiliate-application-submit .product-button
) {
  font-size: clamp(13.5px, 0.92vw, 14.5px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.012em;
}

@media (min-width: 1400px) {
  h1 {
    font-size: 3.4975rem;
  }

  .hero h1 {
    font-size: 52px;
  }

  h1.sales-intro-title {
    font-size: 3.84725rem;
  }

  .cmp-title {
    font-size: 69.95px;
  }

  .product-hero h1 {
    font-size: 49.66px;
  }

  .auth-copy h1 {
    font-size: 60.16px;
  }

  .directory-hero h1 {
    font-size: 58.76px;
  }
}

/* Coherta join / about page */
.join-page .page-shell > main {
  background: #f7f9fd;
}

.join-main {
  overflow: clip;
}

.join-hero {
  padding: clamp(72px, 9vw, 118px) 24px clamp(34px, 5vw, 72px);
}

.join-hero-inner,
.join-story-inner,
.join-manifesto-inner,
.join-values,
.join-life,
.join-cta-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.join-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}

.join-hero-copy {
  max-width: 710px;
}

.join-hero h1,
.join-manifesto h2,
.join-section-head h2,
.join-cta h2 {
  margin: 0;
  color: #10182f;
  font-weight: 850;
  letter-spacing: 0;
  text-wrap: balance;
}

.join-hero h1 {
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.96;
}

.join-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: #53657f;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
  font-weight: 500;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.join-button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.join-button-primary {
  background: #111c3d;
  color: #fff;
  box-shadow: 0 18px 34px rgba(17, 28, 61, 0.18);
}

.join-button-primary:hover {
  color: #fff;
}

.join-button-secondary {
  border: 1px solid rgba(190, 210, 238, 0.9);
  background: #fff;
  color: #111c3d;
}

.join-hero-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 16px;
  min-height: 560px;
}

.join-mosaic-card {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(190, 210, 238, 0.9);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(31, 53, 84, 0.12);
  overflow: hidden;
}

.join-mosaic-card-large {
  grid-row: span 2;
}

.join-mosaic-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.join-story {
  padding: clamp(36px, 5vw, 78px) 24px;
}

.join-story-inner {
  display: grid;
  gap: 28px;
  padding: clamp(34px, 5vw, 64px);
  border-top: 1px solid rgba(17, 28, 61, 0.12);
  border-bottom: 1px solid rgba(17, 28, 61, 0.12);
}

.join-story p {
  max-width: 1010px;
  margin: 0;
  color: #111c3d;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 820;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.join-manifesto {
  padding: clamp(48px, 6vw, 92px) 24px;
}

.join-manifesto-inner {
  padding: clamp(34px, 5vw, 66px);
  border-radius: 34px;
  background: #111c3d;
  color: #fff;
  box-shadow: 0 24px 64px rgba(17, 28, 61, 0.18);
}

.join-manifesto h2 {
  max-width: 1000px;
  color: #fff;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
}

.join-belief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(30px, 4vw, 54px);
}

.join-belief-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.join-belief-grid span,
.join-value-panel span {
  color: #7f9dff;
  font-size: 13px;
  font-weight: 900;
}

.join-belief-grid h3,
.join-value-panel h3,
.join-life h3 {
  margin: auto 0 0;
  color: inherit;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: 0;
}

.join-belief-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.join-values,
.join-life {
  padding: clamp(54px, 7vw, 96px) 24px;
}

.join-section-head {
  max-width: 840px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.join-section-head h2,
.join-cta h2 {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.04;
}

.join-values-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.join-values-list {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
}

.join-values-list a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(190, 210, 238, 0.82);
  border-radius: 999px;
  background: #fff;
  color: #111c3d;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.join-values-list a:hover {
  border-color: rgba(63, 109, 246, 0.44);
  color: #3f6df6;
}

.join-value-panels {
  display: grid;
  gap: 18px;
}

.join-value-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  min-height: 380px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(190, 210, 238, 0.9);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(31, 53, 84, 0.09);
}

.join-value-panel h3 {
  margin-top: 18px;
  color: #111c3d;
  font-size: clamp(30px, 3.4vw, 50px);
}

.join-value-panel p,
.join-life p,
.join-cta p {
  margin: 16px 0 0;
  color: #5e6f88;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.join-value-panel img {
  width: 100%;
  max-height: 300px;
  display: block;
  object-fit: contain;
  border-radius: 22px;
  background: #f3f7ff;
}

.join-life-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.join-life-grid article {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(190, 210, 238, 0.9);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(31, 53, 84, 0.09);
}

.join-life-grid img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  background: #f3f7ff;
}

.join-life h3 {
  margin-top: 26px;
  color: #111c3d;
  font-size: clamp(25px, 2.7vw, 40px);
}

.join-cta {
  padding: clamp(42px, 6vw, 90px) 24px clamp(80px, 9vw, 124px);
}

.join-cta-inner {
  padding: clamp(34px, 5vw, 66px);
  border-radius: 34px;
  background: linear-gradient(180deg, #fff 0%, #eef4ff 100%);
  text-align: center;
  box-shadow: 0 24px 64px rgba(31, 53, 84, 0.12);
}

.join-cta p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
}

.join-cta .join-button {
  margin-top: 28px;
}

@media (max-width: 1040px) {
  .join-hero-inner,
  .join-values-layout,
  .join-value-panel {
    grid-template-columns: 1fr;
  }

  .join-values-list {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .join-hero,
  .join-story,
  .join-manifesto,
  .join-values,
  .join-life,
  .join-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .join-hero-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .join-mosaic-card,
  .join-mosaic-card-large {
    min-height: 240px;
    grid-row: auto;
    border-radius: 22px;
  }

  .join-story-inner,
  .join-manifesto-inner,
  .join-cta-inner {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .join-belief-grid,
  .join-life-grid,
  .join-values-list {
    grid-template-columns: 1fr;
  }

  .join-life-grid article {
    min-height: 0;
  }

  .join-life-grid img {
    height: 220px;
  }

  .join-value-panel {
    min-height: 0;
    border-radius: 24px;
  }

  .join-actions .join-button,
  .join-cta .join-button {
    width: 100%;
  }
}

/* Final cascade guard for ordbog detail pages. */
body.dictionary-detail-page {
  background: #fff;
}

body.dictionary-detail-page .page-shell > main {
  background: transparent;
  overflow: clip;
}

body.dictionary-detail-page .sales-intro {
  padding: 82px 32px 0;
}

body.dictionary-detail-page .sales-intro-inner {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 1540px;
  min-height: 460px;
  margin: 0 auto;
  padding: clamp(56px, 6vw, 88px) clamp(24px, 5vw, 72px);
  overflow: hidden;
  border-radius: 44px 44px 0 0;
  background: #f8fafc;
  box-shadow: 0 22px 58px rgba(31, 53, 84, 0.08);
  text-align: center;
}

body.dictionary-detail-page .sales-intro-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(63, 109, 246, 0.08), transparent 17%),
    radial-gradient(circle at 82% 16%, rgba(63, 109, 246, 0.07), transparent 16%);
  pointer-events: none;
}

body.dictionary-detail-page .sales-intro-inner > * {
  position: relative;
  z-index: 1;
}

body.dictionary-detail-page .sales-intro-title {
  max-width: 1120px;
  margin: 0 auto;
  color: #111c3d;
  font-size: clamp(40px, 3.55vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 720;
}

body.dictionary-detail-page .gradient-text {
  color: #3f6df6;
  background: none;
  -webkit-text-fill-color: currentColor;
}

body.dictionary-detail-page .sales-intro-copy {
  max-width: 920px;
  margin: 24px auto 0;
  color: #5c7290;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.52;
  font-weight: 500;
}

body.dictionary-detail-page .h1-trial-cta {
  margin-top: 30px;
}

body.dictionary-detail-page .cohertus-section,
body.dictionary-detail-page .website-data-section,
body.dictionary-detail-page .pricing-section {
  padding: 18px 32px 0;
}

body.dictionary-detail-page .cohertus-section:last-of-type {
  padding-bottom: 76px;
}

body.dictionary-detail-page .hero-shell,
body.dictionary-detail-page .website-data-shell,
body.dictionary-detail-page .pricing-shell {
  max-width: 1540px;
  padding: clamp(28px, 3vw, 44px);
  border-radius: 0;
  background: #eaf3ff;
}

body.dictionary-detail-page .cohertus-section:last-of-type .hero-shell {
  border-radius: 0 0 42px 42px;
}

body.dictionary-detail-page .hero-grid,
body.dictionary-detail-page .website-data-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 4vw, 74px);
  align-items: start;
}

body.dictionary-detail-page .cohertus-title,
body.dictionary-detail-page .website-data-title,
body.dictionary-detail-page .pricing-title {
  max-width: 860px;
  color: #08183c;
  font-size: clamp(28px, 2.65vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 720;
}

body.dictionary-detail-page .hero-copy,
body.dictionary-detail-page .website-data-copy,
body.dictionary-detail-page .pricing-lead {
  max-width: 820px;
  color: #64748f;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.64;
  font-weight: 500;
}

body.dictionary-detail-page .cohertus-prompt-panel,
body.dictionary-detail-page .price-card,
body.dictionary-detail-page .website-data-card {
  border: 1px solid rgba(190, 210, 238, 0.85);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(31, 53, 84, 0.12);
}

body.dictionary-detail-page .cohertus-prompt-panel {
  margin: 0;
}

body.dictionary-detail-page .cohertus-prompt-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

body.dictionary-detail-page .cohertus-prompt-actions {
  margin-top: 0;
}

body.dictionary-detail-page .cohertus-prompt-actions ul,
body.dictionary-detail-page .price-list,
body.dictionary-detail-page .website-data-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #44546a;
  line-height: 1.7;
}

body.dictionary-detail-page .website-data-cards {
  display: grid;
  gap: 18px;
}

body.dictionary-detail-page .website-data-card {
  color: #44546a;
  font-size: 1rem;
  line-height: 1.72;
}

body.dictionary-detail-page .website-data-card h2,
body.dictionary-detail-page .website-data-card h3 {
  margin: 1.6rem 0 0.7rem;
  color: #08183c;
  font-size: clamp(1.35rem, 1.6vw, 1.8rem);
  line-height: 1.18;
  letter-spacing: 0;
}

body.dictionary-detail-page .website-data-card h2:first-child,
body.dictionary-detail-page .website-data-card h3:first-child {
  margin-top: 0;
}

body.dictionary-detail-page .website-data-card p {
  margin: 0.85rem 0;
}

body.dictionary-detail-page .website-data-card pre {
  overflow-x: auto;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(190, 210, 238, 0.85);
  border-radius: 8px;
  background: #f8fbff;
  color: #08183c;
  font: 750 0.98rem/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

body.dictionary-detail-page .website-data-card a {
  color: #3f6df6;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

body.dictionary-detail-page .pricing-grid {
  gap: 18px;
}

@media (max-width: 980px) {
  body.dictionary-detail-page .sales-intro {
    padding: 76px 12px 0;
  }

  body.dictionary-detail-page .sales-intro-inner {
    min-height: auto;
    padding: 64px 24px;
    border-radius: 30px 30px 0 0;
  }

  body.dictionary-detail-page .cohertus-section,
  body.dictionary-detail-page .website-data-section,
  body.dictionary-detail-page .pricing-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  body.dictionary-detail-page .hero-grid,
  body.dictionary-detail-page .website-data-grid,
  body.dictionary-detail-page .pricing-grid {
    grid-template-columns: 1fr;
  }

  body.dictionary-detail-page .cohertus-section:last-of-type .hero-shell {
    border-radius: 0 0 30px 30px;
  }
}

@media (max-width: 640px) {
  body.dictionary-detail-page .sales-intro-title {
    font-size: clamp(34px, 9vw, 46px);
  }

  body.dictionary-detail-page .sales-intro-copy {
    font-size: 16px;
  }

  body.dictionary-detail-page .hero-shell,
  body.dictionary-detail-page .website-data-shell,
  body.dictionary-detail-page .pricing-shell {
    padding: 18px;
  }
}

@media (max-width: 520px) {
  .support-overview-section.product-section {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: 24px 14px 56px;
  }

  .support-overview-section .product-section-inner,
  .support-overview-section .product-section-head,
  .support-card-grid,
  .support-product-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .support-overview-section .product-section-inner,
  .support-overview-section .product-section-head,
  .support-card-grid {
    margin-left: auto;
    margin-right: auto;
  }

  .support-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-overview-section .product-section-head h2 {
    font-size: clamp(25px, 7vw, 30px);
    text-wrap: wrap;
  }

  .support-overview-section .product-section-head h2,
  .support-overview-section .product-section-head p,
  .support-product-card h3,
  .support-product-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal !important;
  }
}
