/* ==========================================================
   PERFORMANCE PARTNER PAGE — CSS
   Theme: Deep Navy + Emerald (Distinct from Foundation/Growth)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --pf-navy:      #060d1a;
    --pf-navy-2:    #0b1729;
    --pf-surface:   #101d33;
    --pf-border:    #1e3050;
    --pf-text:      #e8eef7;
    --pf-text-dim:  #8494ad;
    --pf-emerald:   #22d67a;
    --pf-emerald-2: #16a34a;
    --pf-teal:      #2dd4bf;
    --pf-sky:       #38bdf8;
    --pf-gold:      #fbbf24;
}

/* ==========================================================
   SECTION 1: HERO — Split layout with data panel
   ========================================================== */

.pf-hero-section {
    position: relative;
    padding: 170px 0 110px;
    min-height: 660px;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(ellipse 70% 50% at 15% 20%, rgba(34, 214, 122, 0.10), transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(56, 189, 248, 0.08), transparent 60%),
        linear-gradient(160deg, #060d1a 0%, #0b1729 45%, #0a1d24 75%, #060d1a 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Diagonal accent lines */
.pf-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 60px
        );
    pointer-events: none;
    z-index: 0;
}

.pf-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 214, 122, 0.4), rgba(56, 189, 248, 0.4), transparent);
    z-index: 2;
}

.pf-hero-section .container {
    position: relative;
    z-index: 1;
}

.pf-hero-content {
    max-width: 620px;
}

/* Tag */
.pf-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    color: #22d67a;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.pf-tag-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #22d67a);
    position: relative;
}

.pf-tag-line::after {
    content: '';
    position: absolute;
    right: -3px;
    top: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22d67a;
    box-shadow: 0 0 12px rgba(34, 214, 122, 0.9);
    animation: pfDotPulse 2s ease-in-out infinite;
}

@keyframes pfDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

/* Title */
.pf-hero-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.08;
    color: #ffffff;
    margin: 0 0 26px;
    letter-spacing: -1.8px;
}

.pf-title-accent {
    display: block;
    position: relative;
    padding-bottom: 12px;
    background: linear-gradient(90deg, #22d67a 0%, #2dd4bf 50%, #38bdf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pf-title-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #22d67a, #2dd4bf, transparent);
    border-radius: 3px;
}

/* Subtitle */
.pf-hero-subtext {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: #a8b8d0;
    max-width: 580px;
    margin: 0 0 36px;
}

/* Hero stats row */
.pf-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pf-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pf-stat-value {
    font-family: "Space Grotesk", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #22d67a;
    letter-spacing: -0.5px;
    line-height: 1;
}

.pf-stat-label {
    font-family: "Inter", sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    color: #8494ad;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pf-stat-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, rgba(34, 214, 122, 0.35), transparent);
}

/* Hero CTA Buttons */
.pf-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.pf-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #060d1a;
    background: linear-gradient(135deg, #22d67a, #2dd4bf);
    padding: 16px 34px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 10px 28px rgba(34, 214, 122, 0.25);
    position: relative;
    overflow: hidden;
}

.pf-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2dd4bf, #22d67a);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pf-btn-primary span,
.pf-btn-primary svg {
    position: relative;
    z-index: 1;
}

.pf-btn-primary svg {
    transition: transform 0.3s ease;
}

.pf-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(34, 214, 122, 0.4);
    color: #060d1a;
}

.pf-btn-primary:hover::before {
    opacity: 1;
}

.pf-btn-primary:hover svg {
    transform: translateX(5px);
}

.pf-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    padding: 16px 32px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
    transition: all 0.35s ease;
}

.pf-btn-ghost:hover {
    background: rgba(34, 214, 122, 0.08);
    border-color: rgba(34, 214, 122, 0.5);
    color: #22d67a;
    transform: translateY(-3px);
}

/* Hero Visual Panel */
.pf-hero-panel {
    background: rgba(16, 29, 51, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 214, 122, 0.15);
    border-radius: 20px;
    padding: 28px 28px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: pfPanelFloat 6s ease-in-out infinite;
}

@keyframes pfPanelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pf-hero-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #22d67a, #2dd4bf, #38bdf8);
    background-size: 200% auto;
    animation: pfShimmer 3s linear infinite;
}

@keyframes pfShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.pf-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pf-panel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22d67a;
    box-shadow: 0 0 10px rgba(34, 214, 122, 0.9);
    animation: pfDotPulse 2s ease-in-out infinite;
}

.pf-panel-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;
    color: #8494ad;
    letter-spacing: 2px;
}

.pf-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pf-panel-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pf-panel-item-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    color: #8494ad;
    letter-spacing: 1.5px;
}

.pf-panel-item-value {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #22d67a;
    letter-spacing: -0.3px;
}

.pf-panel-bar {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.pf-panel-bar span {
    display: block;
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, #22d67a, #2dd4bf);
    animation: pfBarFill 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform-origin: left;
}

.pf-bar-cyan span {
    background: linear-gradient(90deg, #2dd4bf, #38bdf8);
}

.pf-bar-blue span {
    background: linear-gradient(90deg, #38bdf8, #60a5fa);
}

.pf-bar-green span {
    background: linear-gradient(90deg, #16a34a, #22d67a);
}

@keyframes pfBarFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* ==========================================================
   SECTION 2: PRICING BANNER
   ========================================================== */

.pf-pricing-section {
    position: relative;
    padding: 0;
    background: #060d1a;
}

.pf-pricing-banner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    background: 
        linear-gradient(135deg, rgba(16, 29, 51, 0.95) 0%, rgba(10, 29, 36, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 214, 122, 0.2);
    border-radius: 0;
    padding: 44px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    transform: translateY(-50%);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(34, 214, 122, 0.06);
    overflow: hidden;
}

.pf-pricing-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #22d67a, #2dd4bf, #38bdf8, #22d67a);
    background-size: 300% auto;
    animation: pfShimmer 4s linear infinite;
}

.pf-pricing-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34, 214, 122, 0.08), transparent 70%);
    pointer-events: none;
}

.pf-pricing-left {
    flex: 1;
    min-width: 280px;
    position: relative;
    z-index: 1;
}

.pf-pricing-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11.5px;
    font-weight: 600;
    color: #22d67a;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pf-pricing-label::before {
    content: '';
    width: 22px;
    height: 2px;
    background: #22d67a;
    border-radius: 2px;
}

.pf-pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.pf-amount {
    font-family: "Space Grotesk", sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1;
}

.pf-period {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #8494ad;
}

.pf-pricing-note {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #8494ad;
    margin: 0;
    font-style: italic;
}

.pf-pricing-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    padding-left: 40px;
    border-left: 1px solid rgba(34, 214, 122, 0.15);
}

.pf-pricing-tagline {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #b8c9d8;
    margin: 0;
    font-style: italic;
    line-height: 1.65;
    max-width: 440px;
}

.pf-pricing-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #060d1a;
    background: linear-gradient(135deg, #22d67a, #2dd4bf);
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 22px rgba(34, 214, 122, 0.25);
}

.pf-pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(34, 214, 122, 0.4);
    color: #060d1a;
}

.pf-pricing-cta svg {
    transition: transform 0.3s ease;
}

.pf-pricing-cta:hover svg {
    transform: translateX(4px);
}

/* ==========================================================
   SECTION 3: WHAT'S INCLUDED
   ========================================================== */

.pf-included-section {
    padding: 100px 0 120px;
    background: 
        radial-gradient(ellipse 60% 40% at 80% 10%, rgba(34, 214, 122, 0.06), transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(56, 189, 248, 0.05), transparent 60%),
        linear-gradient(160deg, #060d1a 0%, #0b1729 50%, #0a1d24 100%);
    position: relative;
    overflow: hidden;
}

.pf-included-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 214, 122, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 214, 122, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 80%);
            mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.pf-included-section .container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
}

/* Header */
.pf-included-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.pf-included-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    color: #22d67a;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(34, 214, 122, 0.06);
    border: 1px solid rgba(34, 214, 122, 0.2);
    margin-bottom: 20px;
}

.pf-included-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22d67a;
    box-shadow: 0 0 10px rgba(34, 214, 122, 0.9);
    animation: pfDotPulse 2s ease-in-out infinite;
}

.pf-included-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #eef3fa;
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.pf-included-title span {
    background: linear-gradient(90deg, #22d67a, #2dd4bf 50%, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pf-included-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #8494ad;
    margin: 0;
}

/* Cards Grid */
.pf-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}

/* ==========================================================
   CARD — Minimal, left accent
   ========================================================== */

.pf-card {
    position: relative;
    background: rgba(16, 29, 51, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 28px 26px 26px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: 
        opacity 0.6s ease, 
        transform 0.6s ease,
        background 0.35s ease, 
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    cursor: default;
}

.pf-card.pf-card-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Left accent bar */
.pf-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #22d67a, #2dd4bf, #38bdf8);
    opacity: 0.5;
    transition: opacity 0.35s ease, width 0.35s ease;
}

.pf-card:hover::before {
    opacity: 1;
    width: 5px;
}

/* Corner glow */
.pf-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(34, 214, 122, 0.12), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pf-card:hover::after {
    opacity: 1;
}

.pf-card:hover {
    background: rgba(16, 29, 51, 0.75);
    border-color: rgba(34, 214, 122, 0.25);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(34, 214, 122, 0.06);
    transform: translateY(-6px);
}

.pf-card-top {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.pf-card-num {
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    color: rgba(34, 214, 122, 0.6);
    letter-spacing: 1px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.pf-card:hover .pf-card-num {
    color: #22d67a;
}

.pf-card-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #eef3fa;
    margin: 0;
    line-height: 1.35;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.pf-card:hover .pf-card-title {
    color: #22d67a;
}

.pf-card-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #a8b8d0;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.pf-card:hover .pf-card-text {
    color: #c8d4e2;
}

/* ==========================================================
   SECTION 4: WHO IT'S FOR — Horizontal layout
   ========================================================== */

.pf-who-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 40%, #d1fae5 70%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.pf-who-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(5, 150, 105, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 150, 105, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.pf-who-section .container {
    position: relative;
    z-index: 1;
}

.pf-who-layout {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(5, 150, 105, 0.15);
    box-shadow: 0 24px 70px rgba(5, 150, 105, 0.12);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
}

.pf-who-layout:hover {
    transform: translateY(-6px);
}

.pf-who-layout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #059669, #22d67a, #2dd4bf, #059669);
    background-size: 300% auto;
    animation: pfShimmer 4s linear infinite;
}

.pf-who-visual {
    flex-shrink: 0;
    width: 180px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #059669, #16a34a, #22d67a);
    position: relative;
    overflow: hidden;
}

.pf-who-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
}

.pf-who-badge {
    position: relative;
    z-index: 1;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pfIconFloat 4s ease-in-out infinite;
}

@keyframes pfIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(4deg); }
}

.pf-badge-icon {
    font-size: 44px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.pf-who-content {
    padding: 48px 48px 48px 44px;
    flex: 1;
}

.pf-who-label {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #059669;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pf-who-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #064e3b;
    margin: 0 0 16px;
    line-height: 1.2;
}

.pf-who-title span {
    background: linear-gradient(135deg, #059669, #22d67a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pf-who-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 24px;
    max-width: 580px;
}

.pf-who-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.pf-who-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #065f46;
}

.pf-who-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #22d67a);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
}

/* ==========================================================
   SECTION 5: CTA BANNER
   ========================================================== */

.pf-cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.pf-cta-banner {
    background: 
        radial-gradient(ellipse 60% 80% at 90% 20%, rgba(34, 214, 122, 0.15), transparent 60%),
        radial-gradient(ellipse 50% 60% at 10% 90%, rgba(56, 189, 248, 0.1), transparent 60%),
        linear-gradient(135deg, #8992a3 0%, #4b6080 50%, #1b637e 100%);
    border-radius: 24px;
    padding: 56px 56px;
    color: #ffffff;
    box-shadow: 0 24px 70px rgba(4, 24, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.pf-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #22d67a, #2dd4bf, #38bdf8, #22d67a);
    background-size: 300% auto;
    animation: pfShimmer 4s linear infinite;
}

.pf-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.pf-cta-text {
    flex: 1;
    min-width: 280px;
}

.pf-cta-banner h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.pf-cta-banner p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 600px;
}

.pf-cta-action {
    flex-shrink: 0;
}

.pf-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #22d67a, #2dd4bf);
    color: #060d1a;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 10px 28px rgba(34, 214, 122, 0.3);
    position: relative;
    overflow: hidden;
}

.pf-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2dd4bf, #22d67a);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pf-cta-btn span,
.pf-cta-btn svg {
    position: relative;
    z-index: 1;
}

.pf-cta-btn:hover {
    color: #060d1a;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(34, 214, 122, 0.45);
}

.pf-cta-btn:hover::before {
    opacity: 1;
}

.pf-cta-btn svg {
    transition: transform 0.3s ease;
}

.pf-cta-btn:hover svg {
    transform: translateX(5px);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1100px) {
    .pf-hero-title {
        font-size: 48px;
    }
    
    .pf-pricing-right {
        padding-left: 30px;
    }
    
    .pf-amount {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .pf-hero-section {
        padding: 150px 0 90px;
        min-height: auto;
    }
    
    .pf-hero-title {
        font-size: 44px;
    }
    
    .pf-hero-content {
        max-width: 720px;
    }
    
    .pf-pricing-banner {
        padding: 36px 40px;
        transform: translateY(-30%);
    }
    
    .pf-pricing-right {
        padding-left: 0;
        border-left: none;
        padding-top: 20px;
        border-top: 1px solid rgba(34, 214, 122, 0.15);
        width: 100%;
    }
    
    .pf-pricing-tagline {
        max-width: 100%;
    }
    
    .pf-included-title {
        font-size: 36px;
    }
    
    .pf-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .pf-who-layout {
        flex-direction: column;
    }
    
    .pf-who-visual {
        width: 100%;
        height: 140px;
    }
    
    .pf-who-content {
        padding: 36px 32px;
    }
    
    .pf-who-title {
        font-size: 26px;
    }
    
    .pf-cta-banner h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .pf-hero-section {
        padding: 130px 0 70px;
    }
    
    .pf-hero-title {
        font-size: 34px;
        letter-spacing: -1px;
    }
    
    .pf-title-accent::after {
        width: 70px;
    }
    
    .pf-hero-subtext {
        font-size: 15px;
    }
    
    .pf-hero-stats {
        gap: 18px;
        margin-bottom: 32px;
    }
    
    .pf-stat-value {
        font-size: 22px;
    }
    
    .pf-stat-label {
        font-size: 10.5px;
    }
    
    .pf-stat-divider {
        height: 26px;
    }
    
    .pf-btn-primary,
    .pf-btn-ghost {
        padding: 14px 26px;
        font-size: 14px;
    }
    
    .pf-pricing-banner {
        padding: 28px 24px;
        transform: translateY(-20%);
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .pf-amount {
        font-size: 30px;
    }
    
    .pf-period {
        font-size: 13px;
    }
    
    .pf-pricing-tagline {
        font-size: 14px;
    }
    
    .pf-included-section {
        padding: 70px 0 90px;
    }
    
    .pf-included-title {
        font-size: 28px;
    }
    
    .pf-included-subtitle {
        font-size: 14.5px;
    }
    
    .pf-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pf-card {
        padding: 24px 22px;
    }
    
    .pf-card-title {
        font-size: 16px;
    }
    
    .pf-card-text {
        font-size: 13.5px;
    }
    
    .pf-who-section {
        padding: 70px 0;
    }
    
    .pf-who-content {
        padding: 30px 26px;
    }
    
    .pf-who-title {
        font-size: 22px;
    }
    
    .pf-who-text {
        font-size: 15px;
    }
    
    .pf-cta-banner {
        padding: 40px 32px;
    }
    
    .pf-cta-banner h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .pf-hero-title {
        font-size: 28px;
    }
    
    .pf-hero-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    .pf-tag-line {
        width: 24px;
    }
    
    .pf-hero-stats {
        gap: 14px;
    }
    
    .pf-stat-value {
        font-size: 18px;
    }
    
    .pf-stat-label {
        font-size: 9.5px;
    }
    
    .pf-stat-divider {
        height: 22px;
    }
    
    .pf-pricing-banner {
        padding: 24px 20px;
    }
    
    .pf-amount {
        font-size: 26px;
    }
    
    .pf-pricing-cta {
        padding: 12px 22px;
        font-size: 14px;
    }
    
    .pf-included-title {
        font-size: 24px;
    }
    
    .pf-who-visual {
        height: 110px;
    }
    
    .pf-who-badge {
        width: 70px;
        height: 70px;
    }
    
    .pf-badge-icon {
        font-size: 32px;
    }
    
    .pf-who-title {
        font-size: 20px;
    }
    
    .pf-who-features {
        gap: 12px;
    }
    
    .pf-who-feature {
        font-size: 13px;
    }
    
    .pf-cta-banner h2 {
        font-size: 20px;
    }
    
    .pf-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    .pf-hero-panel,
    .pf-tag-line::after,
    .pf-panel-dot,
    .pf-included-tag::before,
    .pf-who-badge,
    .pf-who-layout::before,
    .pf-pricing-banner::before,
    .pf-cta-banner::before,
    .pf-panel-bar span {
        animation: none !important;
    }
    
    .pf-card {
        opacity: 1;
        transform: none;
    }
}