﻿/* ═══ Price — OwnerFlow Design System ═══ */
:root {
   --pr-primary: #3182f6;
   --pr-primary-dark: #1b64da;
   --pr-primary-light: #e8f3ff;
   --pr-purple: #423ae5;
   --pr-purple-light: #eeedfc;
   --pr-success: #00c471;
   --pr-success-light: #e6f9f0;
   --pr-warning: #f59f00;
   --pr-warning-light: #fff4e6;
   --pr-danger: #f04452;
   --pr-danger-light: #ffe8ea;
   --pr-orange: #ff6f61;
   --pr-text: #191f28;
   --pr-text-sec: #4e5968;
   --pr-text-muted: #8b95a1;
   --pr-bg: #f7f8fa;
   --pr-white: #ffffff;
   --pr-border: #e5e8eb;
}

/* ── Hero ── */
.pr-hero {
   background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px), radial-gradient(ellipse at 70% 10%, rgba(99, 102, 241, 0.18) 0%, transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(49, 130, 246, 0.12) 0%, transparent 50%), linear-gradient(160deg, #0b0f1a 0%, #111827 30%, #1e1b4b 60%, #1a1547 100%);
   background-size:
      24px 24px,
      100% 100%,
      100% 100%,
      100% 100%;
   padding: 88px 24px 68px;
   text-align: center;
   color: #fff;
   position: relative;
   overflow: hidden;
}
.pr-hero::before {
   content: '';
   position: absolute;
   top: -15%;
   right: -8%;
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 40%, transparent 70%);
   border-radius: 50%;
   filter: blur(40px);
   animation: pr-hero-glow 8s ease-in-out infinite;
}
.pr-hero::after {
   content: '';
   position: absolute;
   bottom: -20%;
   left: -8%;
   width: 450px;
   height: 450px;
   background: radial-gradient(circle, rgba(49, 130, 246, 0.12) 0%, rgba(49, 130, 246, 0.04) 40%, transparent 70%);
   border-radius: 50%;
   filter: blur(40px);
   animation: pr-hero-glow 8s ease-in-out infinite reverse;
}
@keyframes pr-hero-glow {
   0%,
   100% {
      transform: translate(0, 0) scale(1);
   }
   50% {
      transform: translate(-15px, 10px) scale(1.05);
   }
}
.pr-hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(255, 255, 255, 0.07);
   backdrop-filter: blur(16px);
   -webkit-backdrop-filter: blur(16px);
   padding: 8px 20px;
   border-radius: 24px;
   font-size: 12.5px;
   font-weight: 600;
   margin-bottom: 28px;
   letter-spacing: 0.8px;
   border: 1px solid rgba(255, 255, 255, 0.1);
   position: relative;
   z-index: 1;
}
.pr-hero-badge-dot {
   width: 8px;
   height: 8px;
   background: #00c471;
   border-radius: 50%;
   animation: pr-pulse 2s ease-in-out infinite;
   box-shadow: 0 0 10px rgba(0, 196, 113, 0.6);
}
@keyframes pr-pulse {
   0%,
   100% {
      opacity: 1;
      transform: scale(1);
   }
   50% {
      opacity: 0.5;
      transform: scale(0.8);
   }
}
.pr-hero h1 {
   font-size: 44px;
   font-weight: 800;
   margin: 0 0 18px;
   line-height: 1.2;
   letter-spacing: -1px;
   position: relative;
   z-index: 1;
   text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.pr-hero p {
   font-size: 17px;
   color: rgba(255, 255, 255, 0.72);
   max-width: 580px;
   margin: 0 auto 32px;
   line-height: 1.7;
   position: relative;
   z-index: 1;
}
.pr-hero-cta {
   display: flex;
   gap: 12px;
   justify-content: center;
   flex-wrap: wrap;
   position: relative;
   z-index: 1;
}
.pr-hero-btn {
   padding: 14px 28px;
   border: none;
   border-radius: 12px;
   font-size: 15px;
   font-weight: 700;
   cursor: pointer;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 8px;
}
.pr-hero-btn.primary {
   background: #fff;
   color: #1e1b4b;
}
.pr-hero-btn.primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}
.pr-hero-btn.secondary {
   background: rgba(255, 255, 255, 0.08);
   color: #fff;
   backdrop-filter: blur(12px);
   border: 1px solid rgba(255, 255, 255, 0.15);
}
.pr-hero-btn.secondary:hover {
   background: rgba(255, 255, 255, 0.15);
   transform: translateY(-2px);
}

/* ── Container ── */
.pr-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
}

/* ── Tabs ── */
.pr-tabs {
   display: flex;
   gap: 8px;
   justify-content: center;
   padding: 36px 0;
   flex-wrap: wrap;
}
.pr-tab {
   padding: 10px 24px;
   background: var(--pr-white);
   border: 2px solid var(--pr-border);
   border-radius: 12px;
   font-size: 14px;
   font-weight: 600;
   color: var(--pr-text-sec);
   cursor: pointer;
   transition: all 0.25s ease;
}
.pr-tab:hover {
   border-color: var(--pr-primary);
   color: var(--pr-primary);
   transform: translateY(-2px);
}
.pr-tab.active {
   background: linear-gradient(135deg, var(--pr-purple), var(--pr-primary));
   color: #fff;
   border-color: transparent;
   box-shadow: 0 4px 12px rgba(49, 130, 246, 0.25);
}

/* ── Tab Content ── */
.pr-tab-content {
   display: none;
   animation: pr-fadein 0.4s ease;
}
.pr-tab-content.active {
   display: block;
}
@keyframes pr-fadein {
   from {
      opacity: 0;
      transform: translateY(16px);
   }
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* ── Section ── */
.pr-section {
   background: var(--pr-white);
   border-radius: 20px;
   padding: 48px;
   margin-bottom: 32px;
   border: 1px solid var(--pr-border);
}
.pr-section-head {
   text-align: center;
   margin-bottom: 40px;
}
.pr-section-label {
   display: inline-block;
   font-size: 12px;
   font-weight: 700;
   color: var(--pr-primary);
   background: var(--pr-primary-light);
   padding: 4px 12px;
   border-radius: 12px;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   margin-bottom: 10px;
}
.pr-section-head h2 {
   font-size: 28px;
   font-weight: 800;
   color: var(--pr-text);
   margin: 0 0 12px;
   letter-spacing: -0.3px;
   line-height: 1.4;
}
.pr-section-head p {
   font-size: 15px;
   color: var(--pr-text-sec);
   max-width: 560px;
   margin: 0 auto;
   line-height: 1.7;
}

/* ── Card Grid ── */
.pr-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin-bottom: 32px;
}
.pr-card {
   background: var(--pr-white);
   border: 1px solid var(--pr-border);
   border-radius: 16px;
   padding: 28px 24px;
   transition: all 0.25s ease;
   position: relative;
   display: flex;
   flex-direction: column;
}
.pr-card:hover {
   border-color: var(--pr-primary);
   transform: translateY(-4px);
   box-shadow: 0 12px 32px rgba(49, 130, 246, 0.1);
}
.pr-card-icon {
   width: 48px;
   height: 48px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
   margin-bottom: 18px;
   flex-shrink: 0;
}
.pr-card-icon.blue {
   background: var(--pr-primary-light);
}
.pr-card-icon.purple {
   background: var(--pr-purple-light);
}
.pr-card-icon.green {
   background: var(--pr-success-light);
}
.pr-card-icon.orange {
   background: var(--pr-warning-light);
}
.pr-card-icon.red {
   background: var(--pr-danger-light);
}
.pr-card-icon.coral {
   background: #fff0ee;
}

.pr-card h3 {
   font-size: 16px;
   font-weight: 700;
   color: var(--pr-text);
   margin: 0 0 6px;
}
.pr-card .pr-card-desc {
   font-size: 13px;
   color: var(--pr-text-sec);
   line-height: 1.55;
   margin: 0 0 16px;
}
.pr-card-price {
   font-size: 19px;
   font-weight: 800;
   color: var(--pr-primary);
   margin-bottom: 18px;
}
.pr-card-price .unit {
   font-size: 13px;
   font-weight: 400;
   color: var(--pr-text-muted);
   margin-left: 4px;
}
.pr-feat-list {
   list-style: none;
   padding: 0;
   margin: 0;
}
.pr-feat-list li {
   display: flex;
   align-items: flex-start;
   gap: 8px;
   margin-bottom: 10px;
   font-size: 13.5px;
   color: var(--pr-text-sec);
   line-height: 1.55;
}
.pr-feat-list .check {
   color: var(--pr-primary);
   font-size: 14px;
   flex-shrink: 0;
   font-weight: 700;
   margin-top: 1px;
}

/* ── Plan Cards (Monthly) ── */
.pr-plan {
   background: var(--pr-white);
   border: 1px solid var(--pr-border);
   border-radius: 16px;
   padding: 32px 28px;
   position: relative;
   transition: all 0.25s ease;
   display: flex;
   flex-direction: column;
}
.pr-plan:hover {
   transform: translateY(-6px);
   box-shadow: 0 16px 40px rgba(49, 130, 246, 0.1);
   border-color: var(--pr-primary);
}
.pr-plan.recommended {
   border: 2px solid var(--pr-primary);
   box-shadow: 0 8px 28px rgba(49, 130, 246, 0.12);
}
.pr-plan-badge {
   position: absolute;
   top: -12px;
   right: 20px;
   background: linear-gradient(135deg, var(--pr-purple), var(--pr-primary));
   color: #fff;
   padding: 6px 16px;
   border-radius: 20px;
   font-size: 12px;
   font-weight: 700;
   box-shadow: 0 4px 12px rgba(49, 130, 246, 0.25);
}
.pr-plan-name {
   font-size: 18px;
   font-weight: 700;
   color: var(--pr-text);
   margin: 0 0 6px;
}
.pr-plan-desc {
   font-size: 13.5px;
   color: var(--pr-text-sec);
   margin: 0 0 20px;
   line-height: 1.6;
}
.pr-plan-price {
   font-size: 34px;
   font-weight: 800;
   color: var(--pr-primary);
   margin-bottom: 24px;
}
.pr-plan-price .unit {
   font-size: 14px;
   font-weight: 400;
   color: var(--pr-text-muted);
}
.pr-plan-divider {
   height: 1px;
   background: var(--pr-border);
   margin: 0 0 20px;
}
.pr-plan-benefit {
   background: var(--pr-bg);
   border-radius: 12px;
   padding: 16px;
   margin-top: auto;
}
.pr-plan-benefit-title {
   font-size: 13px;
   font-weight: 700;
   color: var(--pr-text);
   margin: 0 0 10px;
}

/* ── Comparison Table ── */
.pr-table-wrap {
   overflow-x: auto;
   margin: 32px 0;
   border-radius: 12px;
   border: 1px solid var(--pr-border);
}
.pr-table {
   width: 100%;
   border-collapse: collapse;
   background: var(--pr-white);
}
.pr-table thead {
   background: var(--pr-bg);
}
.pr-table th {
   padding: 16px 18px;
   font-size: 14px;
   font-weight: 700;
   text-align: left;
   border-bottom: 2px solid var(--pr-border);
   color: var(--pr-text);
}
.pr-table td {
   padding: 14px 18px;
   border-bottom: 1px solid var(--pr-border);
   font-size: 13.5px;
   color: var(--pr-text-sec);
}
.pr-table tbody tr:last-child td {
   border-bottom: none;
}
.pr-table tbody tr:hover {
   background: var(--pr-primary-light);
}
.pr-table .feat-name {
   font-weight: 600;
   color: var(--pr-text);
}
.pr-table .t-check {
   color: var(--pr-primary);
   font-size: 16px;
   text-align: center;
   font-weight: 700;
}
.pr-table .t-cross {
   color: var(--pr-text-muted);
   font-size: 16px;
   text-align: center;
}

/* ── Calculator ── */
.pr-calc {
   background: var(--pr-white);
   border: 2px solid var(--pr-primary);
   border-radius: 16px;
   padding: 36px;
   margin-bottom: 32px;
}
.pr-calc-title {
   font-size: 22px;
   font-weight: 800;
   margin: 0 0 28px;
   text-align: center;
   color: var(--pr-text);
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
}
.pr-calc-title i {
   color: var(--pr-primary);
}
.pr-calc-item {
   background: var(--pr-bg);
   border: 1px solid var(--pr-border);
   border-radius: 12px;
   padding: 20px;
   margin-bottom: 14px;
   position: relative;
   width: 100%;
   box-sizing: border-box;
}
.pr-calc-item-head {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 14px;
}
.pr-calc-item-num {
   font-size: 13px;
   font-weight: 700;
   color: var(--pr-primary);
}
.pr-calc-remove {
   background: var(--pr-danger-light);
   color: var(--pr-danger);
   border: none;
   padding: 5px 12px;
   border-radius: 8px;
   font-size: 12px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.2s;
}
.pr-calc-remove:hover {
   background: #fecaca;
   transform: scale(1.05);
}
.pr-calc-controls {
   display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 14px;
}
.pr-calc-field {
   display: flex;
   flex-direction: column;
   gap: 6px;
}
.pr-calc-label {
   font-size: 13px;
   font-weight: 600;
   color: var(--pr-text);
}
.pr-calc-select,
.pr-calc-input {
   width: 100%;
   padding: 10px 14px;
   border: 1px solid var(--pr-border);
   border-radius: 10px;
   font-size: 14px;
   font-weight: 500;
   transition: all 0.2s;
   background: var(--pr-white);
   box-sizing: border-box;
}
.pr-calc-select:focus,
.pr-calc-input:focus {
   outline: none;
   border-color: var(--pr-primary);
   box-shadow: 0 0 0 3px rgba(49, 130, 246, 0.1);
}
.pr-calc-select {
   appearance: none;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233182f6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: right 12px center;
   padding-right: 34px;
   cursor: pointer;
}
.pr-calc-item-result {
   margin-top: 12px;
   padding: 10px 14px;
   background: var(--pr-primary-light);
   border-radius: 8px;
   font-size: 14px;
   font-weight: 600;
   color: var(--pr-primary);
   text-align: right;
}
.pr-calc-add {
   width: 100%;
   background: linear-gradient(135deg, var(--pr-purple), var(--pr-primary));
   color: #fff;
   border: none;
   padding: 14px 24px;
   border-radius: 12px;
   font-size: 15px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.25s;
   margin-bottom: 24px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
}
.pr-calc-add:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(49, 130, 246, 0.25);
}
.pr-calc-result {
   background: var(--pr-bg);
   border-radius: 14px;
   padding: 24px;
   text-align: center;
}
.pr-calc-result-label {
   font-size: 13px;
   color: var(--pr-text-sec);
   margin: 0 0 6px;
}
.pr-calc-result-price {
   font-size: 36px;
   font-weight: 800;
   color: var(--pr-primary);
   margin: 0 0 8px;
}
.pr-calc-result-note {
   font-size: 12px;
   color: var(--pr-text-muted);
   margin: 0;
}

/* ── Scenario Cards ── */
.pr-scenario {
   background: var(--pr-white);
   border: 1px solid var(--pr-border);
   border-radius: 16px;
   padding: 28px 24px;
   transition: all 0.25s;
}
.pr-scenario:hover {
   border-color: var(--pr-primary);
   transform: translateY(-4px);
   box-shadow: 0 12px 32px rgba(49, 130, 246, 0.1);
}
.pr-scenario-emoji {
   font-size: 40px;
   margin-bottom: 14px;
}
.pr-scenario h3 {
   font-size: 16px;
   font-weight: 700;
   color: var(--pr-text);
   margin: 0 0 10px;
}
.pr-scenario p {
   font-size: 13.5px;
   color: var(--pr-text-sec);
   margin: 0 0 16px;
   line-height: 1.6;
}
.pr-scenario-rec {
   background: var(--pr-primary-light);
   border-radius: 10px;
   padding: 14px 16px;
   font-size: 13.5px;
   font-weight: 600;
   color: var(--pr-primary);
   line-height: 1.6;
}

/* ── FAQ ── */
.pr-faq {
   margin-top: 32px;
}
.pr-faq-item {
   background: var(--pr-white);
   border: 1px solid var(--pr-border);
   border-radius: 12px;
   margin-bottom: 10px;
   overflow: hidden;
   transition: border-color 0.2s;
}
.pr-faq-item:hover {
   border-color: var(--pr-primary);
}
.pr-faq-item.active {
   border-color: var(--pr-primary);
}
.pr-faq-q {
   padding: 18px 22px;
   font-size: 15px;
   font-weight: 600;
   color: var(--pr-text);
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   transition: all 0.2s;
}
.pr-faq-q:hover {
   background: var(--pr-bg);
}
.pr-faq-toggle {
   font-size: 14px;
   color: var(--pr-text-muted);
   transition: transform 0.3s;
   flex-shrink: 0;
   margin-left: 12px;
}
.pr-faq-item.active .pr-faq-toggle {
   transform: rotate(180deg);
   color: var(--pr-primary);
}
.pr-faq-a {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.35s ease;
}
.pr-faq-item.active .pr-faq-a {
   max-height: 500px;
}
.pr-faq-a-inner {
   padding: 0 22px 20px;
   font-size: 14px;
   color: var(--pr-text-sec);
   line-height: 1.8;
}

/* ── Footer Note ── */
.pr-note {
   background: var(--pr-bg);
   border: 1px solid var(--pr-border);
   border-radius: 12px;
   padding: 22px 24px;
   margin-top: 28px;
   font-size: 13.5px;
   color: var(--pr-text-sec);
   line-height: 1.8;
}
.pr-note strong {
   color: var(--pr-text);
}

/* ── Responsive ── */
.mobile-only {
   display: none;
}

@media (max-width: 1024px) {
   .pr-grid {
      grid-template-columns: repeat(2, 1fr);
   }
   .pr-calc-controls {
      grid-template-columns: 1.5fr 1fr;
   }
}
@media (max-width: 768px) {
   .pr-hero {
      padding: 64px 20px 48px;
   }
   .pr-hero h1 {
      font-size: 30px;
   }
   .pr-hero p {
      font-size: 15px;
   }
   .mobile-only {
      display: inline;
   }
   .pr-section {
      padding: 32px 20px;
      border-radius: 16px;
   }
   .pr-section-head h2 {
      font-size: 22px;
   }
   .pr-grid {
      grid-template-columns: 1fr;
   }
   .pr-tabs {
      padding: 24px 0;
   }
   .pr-tab {
      flex: 1;
      text-align: center;
      min-width: 0;
      padding: 10px 14px;
      font-size: 13px;
   }
   .pr-table th,
   .pr-table td {
      padding: 10px 12px;
      font-size: 12px;
   }
   .pr-calc {
      padding: 24px 18px;
   }
   .pr-calc-controls {
      grid-template-columns: 1fr;
   }
   .pr-calc-result-price {
      font-size: 26px;
   }
}
@media (max-width: 480px) {
   .pr-calc-item {
      padding: 16px;
   }
   .pr-calc-result-price {
      font-size: 22px;
   }
   .pr-tabs {
      gap: 6px;
   }
   .pr-tab {
      padding: 9px 10px;
      font-size: 12px;
   }
}
