:root {
    --bg: #ffffff;
    --bg-alt: #fafafa;
    --text: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-tertiary: #8e8e93;
    --border: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.06);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition-fast: 0.18s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, SF Pro Display, Segoe UI, PingFang SC, Microsoft YaHei, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(180, 180, 190, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 90%, rgba(160, 160, 170, 0.03) 0%, transparent 55%);
}

.pro-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #1d1d1f, #6e6e73);
    z-index: 102;
    width: 0%;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px rgba(29, 29, 31, 0.3);
}

.pro-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.pro-header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.04);
}

.pro-header-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pro-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.pro-sidebar-toggle:hover {
    background: var(--bg-alt);
    border-color: var(--text-secondary);
}

.pro-sidebar-toggle svg {
    width: 18px;
    height: 18px;
}

.pro-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}

.pro-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.pro-nav-item {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

.pro-nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--text);
    transition: width 0.3s ease;
}

.pro-nav-item:hover::after {
    width: 100%;
}

.pro-nav-item:hover {
    color: var(--text);
}

.pro-nav-item.active {
    color: var(--text);
}

.pro-nav-item.active::after {
    width: 100%;
}

.pro-nav-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--text);
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.pro-nav-btn:active {
    transform: scale(0.94);
}

.pro-main {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.pro-hero {
    min-height: 70vh;
    padding: 30px 0 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pro-hero-content {
    flex: 1;
    max-width: 560px;
    position: relative;
    z-index: 1;
}

#globe-container {
    position: relative;
    width: 320px;
    height: 320px;
    flex-shrink: 0;
    margin-left: 40px;
    z-index: 0;
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--text);
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(-20px);
    animation: heroFadeDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

.pro-hero-title {
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 18px;
    transition: transform 0.1s ease-out;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    animation: heroFlyUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

.pro-hero-highlight {
    font-weight: 500;
    color: var(--text-secondary);
}

.pro-hero-sub {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0;
    animation: heroFadeIn 0.5s ease 0.6s forwards;
}

.pro-hero-sub-typed {
    min-height: 1.7em;
    display: inline-block;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--text);
    margin-left: 2px;
    animation: blink 0.8s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== 按钮区域 - 合并版 ===== */
.pro-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
}

.pro-btn-primary,
.pro-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.pro-btn-primary {
    color: #fff;
    background: var(--text);
}

.pro-btn-primary:active {
    transform: scale(0.94);
}

.pro-btn-secondary {
    color: var(--text);
    background: transparent;
    border: 1.5px solid var(--border);
}

.pro-btn-secondary:active {
    transform: scale(0.94);
    background: #f0f0f2;
}

.pro-btn-large {
    padding: 16px 48px;
    font-size: 16px;
}

@keyframes heroFlyUp {
    0% { opacity: 0; transform: translateY(40px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroFadeDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.pro-scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 12px;
    opacity: 0;
    animation: heroFadeIn 0.6s ease 1.2s forwards;
}

.pro-scroll-hint-arrow {
    width: 18px;
    height: 18px;
    border-right: 2px solid var(--text-tertiary);
    border-bottom: 2px solid var(--text-tertiary);
    transform: rotate(45deg);
    animation: scrollBounce 2.4s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(0) rotate(45deg) translateY(0); }
    50% { transform: translateX(0) rotate(45deg) translateY(8px); }
}

.pro-features {
    padding: 20px 0 40px;
}

.pro-section-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.pro-feature-group {
    margin-bottom: 36px;
}

.pro-feature-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pro-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.pro-feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.pro-feature-group-header h3 {
    font-size: 18px;
    font-weight: 600;
    flex: 1;
}

.pro-feature-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

.pro-feature-cards {
    display: grid;
    gap: 12px;
}

.pro-feature-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    opacity: 0;
    transform: translateY(40px) scale(0.96);
}

.pro-feature-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pro-feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px) scale(1.01);
}

.pro-feature-card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f5f5f7;
    margin-bottom: 12px;
}

.pro-feature-card-icon svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
}

.pro-feature-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pro-feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pro-feature-card-full {
    padding: 24px;
}

.pro-feature-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 2px 10px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50px;
    background: #1b8a3d;
    color: #fff;
}

.pro-feature-preview {
    margin-top: 16px;
    background: #f5f5f7;
    border-radius: var(--radius-sm);
    padding: 20px;
    overflow: hidden;
}

.pro-feature-preview-demo {
    position: relative;
    width: 100%;
    height: 160px;
}

.pro-key-display-anim {
    position: relative;
    width: 100%;
    height: 100%;
}

.pro-key-w {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    transition: all 0.15s ease;
}

.pro-key-w.active {
    transform: translateX(-50%) scale(0.88);
    border-color: #1b8a3d;
    box-shadow: 0 0 20px rgba(27, 138, 61, 0.3);
}

.pro-key-row {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.pro-key-a,
.pro-key-s,
.pro-key-d {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    transition: all 0.15s ease;
}

.pro-key-a.active,
.pro-key-s.active,
.pro-key-d.active {
    transform: scale(0.88);
    border-color: #1b8a3d;
    box-shadow: 0 0 20px rgba(27, 138, 61, 0.3);
}

.pro-key-space {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.15s ease;
}

.pro-key-space.active {
    transform: translateX(-50%) scale(0.92);
    border-color: #1b8a3d;
    box-shadow: 0 0 20px rgba(27, 138, 61, 0.3);
}

.pro-tp-anim {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.pro-tp-crosshair {
    animation: tpPulse 2s ease-in-out infinite;
}

@keyframes tpPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.pro-tp-coords {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 12px 0 12px;
    font-family: SF Mono, Monaco, monospace;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.pro-tp-coords.flash {
    color: #d93025;
    transform: scale(1.05);
}

.pro-tp-btn {
    padding: 10px 32px;
    background: #1b8a3d;
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    animation: tpGlow 2s ease-in-out infinite;
}

@keyframes tpGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(27, 138, 61, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(27, 138, 61, 0); }
}

.pro-showcase {
    padding: 60px 0 40px;
}

.pro-showcase-sub {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.pro-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.pro-showcase-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.pro-showcase-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pro-showcase-item img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.pro-showcase-item img.loaded {
    opacity: 1;
}

.pro-showcase-label {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-alt);
    text-align: center;
}

.pro-video-showcase {
    padding: 40px 0;
}

.pro-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.pro-video-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.pro-video-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.pro-video-item video {
    width: 100%;
    height: auto;
    display: block;
}

.pro-video-label {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-alt);
}

.pro-pricing {
    padding: 60px 0;
    text-align: center;
}

.pro-pricing-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.pro-pricing-display {
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.pro-pricing-yen {
    font-size: 28px;
    color: var(--text-secondary);
    margin-right: 4px;
}

.pro-pricing-amount {
    font-family: SF Mono, Monaco, monospace;
}

.pro-pricing-sub {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.pro-footer {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

.pro-footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pro-footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-tertiary);
}

.pro-footer-copy {
    font-size: 12px;
    color: var(--text-tertiary);
}

.pro-back-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--text);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    pointer-events: none;
    z-index: 200;
}

.pro-back-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.pro-back-top:hover {
    background: #333;
    transform: translateY(-2px);
}

.pro-back-top svg {
    width: 20px;
    height: 20px;
}

.pro-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.pro-panel-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.pro-panel {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 380px;
    max-width: 90vw;
    background: var(--bg-alt);
    color: var(--text);
    z-index: 201;
    padding: 40px 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
}

.pro-panel.active {
    transform: translateX(0);
}

.pro-panel-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.pro-panel-close:hover {
    background: #f0f0f2;
}

.pro-panel-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pro-panel-search {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 16px;
}

.pro-panel-search:focus {
    border-color: var(--text-secondary);
}

.pro-panel-search::placeholder {
    color: var(--text-tertiary);
}

.pro-panel-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-panel-nav-list li {
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pro-panel-nav-list li:hover {
    background: var(--bg);
    color: var(--text);
}

.pro-panel-nav-list li.hidden {
    display: none;
}

.pro-panel-nav-list li .nav-icon {
    width: 20px;
    height: 20px;
    color: var(--text-tertiary);
    flex-shrink: 0;
}

.pro-panel-nav-list li .nav-icon svg {
    width: 100%;
    height: 100%;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0);
    animation: rippleAnim 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

@media (max-width: 1024px) {
    #globe-container {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .pro-hero-title {
        font-size: 36px;
    }
    .pro-hero-sub {
        font-size: 14px;
    }
    .pro-section-title {
        font-size: 24px;
    }
    .pro-nav-item {
        display: none;
    }
    .pro-pricing-display {
        font-size: 40px;
    }
    .pro-pricing-yen {
        font-size: 22px;
    }
    .pro-key-w,
    .pro-key-a,
    .pro-key-s,
    .pro-key-d {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    .pro-key-space {
        width: 90px;
        height: 24px;
        font-size: 10px;
    }
    .pro-back-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    .pro-showcase-grid {
        grid-template-columns: 1fr;
    }
    .pro-video-grid {
        grid-template-columns: 1fr;
    }
    #globe-container {
        width: 120px;
        height: 120px;
        margin-left: 20px;
        flex-shrink: 0;
    }
    .pro-hero-content {
        max-width: calc(100% - 140px);
    }
    .pro-hero-btns {
        gap: 8px;
    }
    .pro-btn-primary,
    .pro-btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
    .pro-sidebar-toggle {
        width: 32px;
        height: 32px;
    }
    .pro-panel {
        width: 100%;
        max-width: 100vw;
    }
}

@media (max-width: 500px) {
    #globe-container {
        width: 80px;
        height: 80px;
        margin-left: 12px;
    }
    .pro-hero-content {
        max-width: calc(100% - 100px);
    }
    .pro-hero-title {
        font-size: 28px;
    }
    .pro-hero-sub {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .pro-badge {
        font-size: 9px;
        padding: 3px 10px;
        margin-bottom: 12px;
    }
    .pro-hero-btns {
        flex-direction: row;      /* ← 改成 row */
        flex-wrap: nowrap;
        align-items: center;
        gap: 6px;
    }
    .pro-btn-primary,
    .pro-btn-secondary {
        padding: 6px 12px;
        font-size: 11px;
    }
}