/* ============================================
   PRUMO HOST — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

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

:root {
  --gold:       #B8974A;
  --gold-light: #D4AF72;
  --gold-pale:  #F0E4C4;
  --gold-dark:  #8A6E30;
  --black:      #0E0D0C;
  --dark:       #1A1916;
  --mid:        #2C2A26;
  --surface:    #242220;
  --text:       #E8E2D6;
  --text-muted: #9A9080;
  --border:     rgba(184,151,74,0.2);
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--text); overflow-x: hidden; font-size: 15px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* NAV */
.ph-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 5%; background: rgba(14,13,12,0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 0.5px solid var(--border); transition: padding 0.3s; }
.ph-nav.scrolled { padding: 0.85rem 5%; }
.ph-nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.ph-nav__logo svg { width: 34px; height: 34px; }
.ph-nav__brand { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--text); letter-spacing: 0.04em; line-height: 1; }
.ph-nav__brand span { display: block; font-size: 9px; letter-spacing: 0.28em; color: var(--gold); font-family: var(--font-body); font-weight: 400; text-transform: uppercase; margin-top: 2px; }
.ph-nav__links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.ph-nav__links a { text-decoration: none; color: var(--text-muted); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.ph-nav__links a:hover { color: var(--gold-light); }
.ph-nav__cta { background: var(--gold) !important; color: var(--black) !important; padding: 0.5rem 1.4rem !important; border-radius: 2px; font-weight: 500 !important; }
.ph-nav__cta:hover { background: var(--gold-light) !important; }
.ph-nav__hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.ph-nav__hamburger span { display: block; width: 22px; height: 1px; background: var(--gold); transition: transform 0.3s, opacity 0.3s; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--gold); color: var(--black); border: none; padding: 0.85rem 2.2rem; font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.2s; line-height: 1; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--black); }
.btn-ghost { display: inline-block; background: transparent; color: var(--text-muted); border: 0.5px solid rgba(184,151,74,0.4); padding: 0.85rem 2.2rem; font-family: var(--font-body); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: all 0.2s; line-height: 1; }
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold); }

/* SECTION */
.ph-section { padding: 7rem 5%; }
.ph-section--dark { background: var(--dark); }
.ph-container { max-width: 1100px; margin: 0 auto; }
.ph-container--narrow { max-width: 720px; margin: 0 auto; }
.section-tag { display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.85rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.12; margin-bottom: 0.75rem; }
.section-title em { font-style: italic; color: var(--gold-light); }
.section-sub { color: var(--text-muted); font-size: 15px; line-height: 1.75; max-width: 520px; }
.divider { width: 48px; height: 1px; background: var(--gold); margin: 1.4rem 0; }
.divider--center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* HERO */
.ph-hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 9rem 5% 5rem; position: relative; overflow: hidden; }
.ph-hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(184,151,74,0.07) 0%, transparent 70%), repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(184,151,74,0.035) 80px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(184,151,74,0.035) 80px); pointer-events: none; }
.ph-hero__line { position: absolute; left: 50%; transform: translateX(-50%); width: 1px; top: 0; bottom: 0; background: linear-gradient(to bottom, transparent 0%, rgba(184,151,74,0.25) 35%, rgba(184,151,74,0.25) 65%, transparent 100%); pointer-events: none; }
.ph-hero__content { position: relative; max-width: 800px; }
.hero-tag { display: inline-block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); border: 0.5px solid rgba(184,151,74,0.5); padding: 0.35rem 1.1rem; margin-bottom: 2rem; animation: fadeUp 0.8s ease both; }
.ph-hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 300; line-height: 1.05; margin-bottom: 1.5rem; animation: fadeUp 0.8s 0.1s ease both; }
.ph-hero h1 em { font-style: italic; color: var(--gold-light); }
.ph-hero__sub { font-size: 16px; color: var(--text-muted); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.75; animation: fadeUp 0.8s 0.2s ease both; }
.ph-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
.ph-hero__stats { margin-top: 4.5rem; display: flex; gap: 3.5rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s 0.4s ease both; }
.ph-stat { text-align: center; }
.ph-stat__number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--gold-light); line-height: 1; }
.ph-stat__label { font-size: 11px; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; margin-top: 0.35rem; }

/* FEATURES */
.ph-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1px; margin-top: 4rem; border: 1px solid var(--border); background: var(--border); }
.ph-feature { padding: 2.5rem; background: var(--dark); position: relative; transition: background 0.3s; overflow: hidden; }
.ph-feature:hover { background: var(--surface); }
.ph-feature::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--gold); transition: height 0.35s; }
.ph-feature:hover::before { height: 100%; }
.ph-feature__icon { width: 46px; height: 46px; border: 0.5px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: border-color 0.3s; }
.ph-feature:hover .ph-feature__icon { border-color: rgba(184,151,74,0.5); }
.ph-feature__icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ph-feature__title { font-size: 15px; font-weight: 500; margin-bottom: 0.6rem; color: var(--text); }
.ph-feature__desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* PRICING */
.ph-pricing-wrap { max-width: 720px; margin: 4rem auto 0; }
.ph-pricing-card { border: 0.5px solid var(--gold); background: var(--surface); position: relative; overflow: hidden; }
.ph-pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%); }
.ph-pricing-card__badge { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--gold); color: var(--black); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; padding: 0.3rem 0.85rem; }
.ph-pricing-card__header { padding: 2.5rem 2.5rem 2rem; border-bottom: 0.5px solid var(--border); }
.ph-pricing-card__plan { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.ph-pricing-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; max-width: 500px; }
.ph-pricing-card__price-block { padding: 2rem 2.5rem; border-bottom: 0.5px solid var(--border); display: flex; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; }
.ph-price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 0.2rem; }
.ph-price-main { font-family: var(--font-display); font-size: 3.6rem; font-weight: 300; color: var(--gold-light); line-height: 1; }
.ph-price-main sup { font-size: 1.5rem; vertical-align: top; margin-top: 0.45rem; display: inline-block; }
.ph-price-period { font-size: 13px; color: var(--text-muted); margin-left: 0.2rem; }
.ph-price-annual { font-size: 15px; font-weight: 500; color: var(--text); margin-left: auto; text-align: right; }
.ph-price-annual small { display: block; font-size: 11px; color: var(--text-muted); font-weight: 400; margin-top: 0.25rem; }
.ph-pricing-card__features { padding: 2rem 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 2rem; }
.ph-pf-item { display: flex; align-items: center; gap: 0.6rem; font-size: 13.5px; color: var(--text-muted); }
.ph-pf-item svg { width: 15px; height: 15px; flex-shrink: 0; stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.ph-pricing-card__action { padding: 1.75rem 2.5rem; border-top: 0.5px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ph-pricing-note { font-size: 12px; color: var(--text-muted); }

/* FAQ */
.ph-faq-list { margin-top: 3.5rem; }
.ph-faq-item { border-bottom: 0.5px solid var(--border); }
.ph-faq-q { width: 100%; background: none; border: none; color: var(--text); font-family: var(--font-body); font-size: 15px; font-weight: 400; text-align: left; padding: 1.4rem 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: color 0.2s; }
.ph-faq-q:hover { color: var(--gold-light); }
.ph-faq-icon { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; transition: transform 0.3s; }
.ph-faq-item.open .ph-faq-icon { transform: rotate(45deg); }
.ph-faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.ph-faq-item.open .ph-faq-a { max-height: 400px; padding-bottom: 1.4rem; }

/* CONTACT */
.ph-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.ph-contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-top: 2rem; }
.ph-contact-item svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.ph-contact-item__label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.ph-contact-item__value { font-size: 14px; color: var(--text-muted); }
.ph-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.ph-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ph-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.ph-form-group label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.ph-form-group input, .ph-form-group textarea { background: var(--mid); border: 0.5px solid var(--border); color: var(--text); font-family: var(--font-body); font-size: 14px; padding: 0.75rem 1rem; outline: none; transition: border-color 0.2s; resize: none; width: 100%; }
.ph-form-group input::placeholder, .ph-form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.ph-form-group input:focus, .ph-form-group textarea:focus { border-color: var(--gold); }
.ph-form-msg { display: none; padding: 0.85rem 1rem; font-size: 13px; border: 0.5px solid; margin-top: 0.5rem; }
.ph-form-msg.success { display: block; color: #6fcf97; border-color: rgba(111,207,151,0.3); background: rgba(111,207,151,0.06); }
.ph-form-msg.error { display: block; color: #eb5757; border-color: rgba(235,87,87,0.3); background: rgba(235,87,87,0.06); }

/* FOOTER */
.ph-footer { padding: 2.5rem 5%; border-top: 0.5px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.ph-footer__brand { font-family: var(--font-display); font-size: 18px; font-weight: 300; color: var(--text-muted); }
.ph-footer__copy { font-size: 12px; color: var(--text-muted); opacity: 0.55; }
.ph-footer__links { display: flex; gap: 1.5rem; list-style: none; }
.ph-footer__links a { font-size: 12px; color: var(--text-muted); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.55; transition: opacity 0.2s, color 0.2s; }
.ph-footer__links a:hover { opacity: 1; color: var(--gold-light); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 900px) { .ph-contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
@media (max-width: 768px) {
  .ph-nav__links { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--dark); padding: 1.5rem 5%; gap: 1.25rem; border-bottom: 0.5px solid var(--border); }
  .ph-nav__links.open { display: flex; }
  .ph-nav__hamburger { display: flex; }
  .ph-features-grid { grid-template-columns: 1fr; }
  .ph-pricing-card__features { grid-template-columns: 1fr; }
  .ph-pricing-card__action { flex-direction: column; align-items: flex-start; }
  .ph-price-annual { margin-left: 0; text-align: left; }
  .ph-form-row { grid-template-columns: 1fr; }
  .ph-footer { flex-direction: column; text-align: center; }
  .ph-footer__links { justify-content: center; }
}
@media (max-width: 480px) {
  .ph-section { padding: 5rem 5%; }
  .ph-pricing-card__header, .ph-pricing-card__price-block, .ph-pricing-card__features, .ph-pricing-card__action { padding-left: 1.5rem; padding-right: 1.5rem; }
}
