@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --rn-navy: #0C1E35;
  --rn-copper: #C47832;
  --rn-copper-lt: #D4923E;
  --rn-serif: 'Cormorant Garamond', Georgia, serif;
  --rn-sans: 'Outfit', system-ui, sans-serif;
}

* { font-family: var(--rn-sans); box-sizing: border-box; }
body { background: #fff; margin: 0; }
a { text-decoration: none; }
.rn-copper { color: var(--rn-copper) !important; }

/* ─── NAVBAR ─── */
.rn-nav {
  background: rgba(12,30,53,0.92);
  backdrop-filter: blur(12px);
  transition: all 0.3s;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.rn-scrolled {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.rn-nav-logo { height: 36px; transition: 0.3s; }
.rn-nav-patch { height: 36px; transition: 0.3s; }
.rn-scrolled .navbar-toggler-icon { filter: invert(1); }
.rn-link {
  color: rgba(255,255,255,0.7) !important;
  font-weight: 500;
  font-size: 0.88rem;
  transition: 0.3s;
  padding: 0.5rem 0.75rem;
}
.rn-link:hover, .rn-link.active { color: #fff !important; }
.rn-scrolled .rn-link { color: #3a4a5e !important; }
.rn-scrolled .rn-link:hover, .rn-scrolled .rn-link.active { color: var(--rn-copper) !important; }
.rn-dd {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.rn-dd .dropdown-item { color: #3a4a5e; font-size: 0.88rem; }
.rn-dd .dropdown-item:hover { background: #f8f4ef; color: var(--rn-copper); }

/* ─── BUTTONS ─── */
.rn-btn-primary {
  background: var(--rn-copper);
  color: #fff !important;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.4rem;
  transition: all 0.3s;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
}
.rn-btn-primary:hover {
  background: var(--rn-copper-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,120,50,0.3);
  color: #fff !important;
}
.rn-btn-primary:disabled { opacity: 0.5; }
.rn-btn-outline {
  border: 1.5px solid #d0d5dd;
  color: #3a4a5e !important;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
  background: transparent;
  text-decoration: none !important;
  display: inline-block;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
}
.rn-btn-outline:hover { border-color: var(--rn-copper); color: var(--rn-copper) !important; }
.rn-btn-outline-lt {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  text-decoration: none !important;
  display: inline-block;
  padding: 0.6rem 1.4rem;
}
.rn-btn-outline-lt:hover { border-color: var(--rn-copper); color: var(--rn-copper) !important; }

/* ─── HOME HERO ─── */
.rn-home-hero {
  background: linear-gradient(135deg, #fdfcfa 0%, #f5f0e8 40%, #eee8dd 100%);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 3rem;
}
.rn-home-h1 {
  font-family: var(--rn-serif);
  font-size: clamp(2.4rem,5vw,3.8rem);
  color: var(--rn-navy);
  line-height: 1.08;
  margin-bottom: 1rem;
}
.rn-home-sub {
  color: #5a6a7e;
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
}
.rn-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,120,50,0.1);
  border: 1px solid rgba(196,120,50,0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--rn-copper);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rn-pulse {
  width: 6px; height: 6px;
  background: #2D7A4F;
  border-radius: 50%;
  animation: rnp 2s infinite;
}
@keyframes rnp { 0%,100%{opacity:1} 50%{opacity:0.3} }
.rn-hero-stats {
  border-top: 1px solid #d8cfc3;
  padding-top: 1rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.rn-stat-n {
  display: block;
  font-family: var(--rn-serif);
  font-size: 1.2rem;
  color: var(--rn-copper);
  font-weight: 700;
}
.rn-stat-l {
  font-size: 0.7rem;
  color: #8899AA;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.rn-stat-div { width: 1px; background: #d8cfc3; align-self: stretch; }

/* ─── PAGE HERO ─── */
.rn-page-hero {
  background: linear-gradient(135deg, #f5f0e8, #ede5d8);
  padding: 8rem 0 3.5rem;
}
.rn-page-hero-title {
  font-family: var(--rn-serif);
  font-size: clamp(2rem,4vw,3rem);
  color: var(--rn-navy);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.rn-page-hero-sub { color: #5a6a7e; font-size: 1rem; max-width: 650px; }
.rn-bc { font-size: 0.8rem; }
.rn-bc .breadcrumb-item.active { color: #8899AA; }
.rn-bc-link { color: var(--rn-copper) !important; text-decoration: none; }
.rn-bc .breadcrumb-item + .breadcrumb-item::before { color: #ccc; }

/* ─── SECTIONS ─── */
.rn-sec { padding: 5rem 0; }
.rn-bg-warm { background: #faf7f2; }
.rn-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rn-copper);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.rn-h2 { font-family: var(--rn-serif); font-size: clamp(1.7rem,3vw,2.4rem); color: var(--rn-navy); }
.rn-h3 { font-family: var(--rn-serif); font-size: 1.4rem; color: var(--rn-navy); }
.rn-h4 { font-family: var(--rn-serif); font-size: 1.25rem; color: var(--rn-navy); }
.rn-h5 { font-family: var(--rn-serif); font-size: 1.1rem; color: var(--rn-navy); font-weight: 600; }
.rn-body { color: #4a5a6e; font-size: 0.93rem; line-height: 1.7; }

/* ─── CARDS ─── */
.rn-svc-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.6rem;
  border: 1px solid #eee;
  transition: all 0.3s;
  height: 100%;
  display: block;
}
.rn-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: rgba(196,120,50,0.3);
}
.rn-svc-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.rn-svc-title { font-family: var(--rn-serif); font-size: 1.1rem; color: var(--rn-navy); }
.rn-svc-desc { font-size: 0.85rem; color: #6a7a8e; line-height: 1.6; }
.rn-svc-link { color: var(--rn-copper); font-weight: 600; font-size: 0.83rem; }
.rn-info-card { background: #f8f9fa; border-radius: 12px; padding: 1.4rem; border: 1px solid #eee; }
.rn-step-card { background: #f8f4ef; border-radius: 12px; padding: 1.4rem; }
.rn-side-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.rn-chk-item { color: #4a5a6e; font-size: 0.88rem; padding: 0.3rem 0; }
.rn-chk { color: var(--rn-copper); font-weight: 700; margin-right: 0.3rem; }
.rn-check-list { list-style: none; padding: 0; margin: 0.5rem 0 0; }
.rn-check-list li {
  color: #4a5a6e;
  font-size: 0.88rem;
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
}
.rn-check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--rn-copper); font-weight: 700; }
.rn-check-list-sm { list-style: none; padding: 0; margin: 0.5rem 0 0; }
.rn-check-list-sm li {
  color: #6a7a8e;
  font-size: 0.82rem;
  padding: 0.25rem 0 0.25rem 1.1rem;
  position: relative;
}
.rn-check-list-sm li::before { content: "✓"; position: absolute; left: 0; color: var(--rn-copper); font-weight: 700; }

/* ─── HIGHLIGHT CARD ─── */
.rn-hl-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.rn-hl-hdr {
  background: var(--rn-copper);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.7rem 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rn-hl-row { padding: 1rem 1.4rem; border-bottom: 1px solid #f0f0f0; }
.rn-hl-row:last-child { border: none; }
.rn-hl-row span {
  display: block;
  color: var(--rn-copper);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}
.rn-hl-row p { color: #5a6a7e; font-size: 0.88rem; margin: 0; }

/* ─── TESTIMONIALS ─── */
.rn-test-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rn-stars { color: var(--rn-copper); font-size: 1rem; letter-spacing: 2px; }
.rn-test-text { font-size: 0.88rem; color: #4a5a6e; line-height: 1.65; font-style: italic; }

/* ─── AREAS ─── */
.rn-area-card { background: #f8f9fa; border-radius: 12px; padding: 1.4rem; border: 1px solid #eee; }
.rn-area-st { font-family: var(--rn-serif); color: var(--rn-navy); font-size: 1rem; margin-bottom: 0.6rem; }
.rn-area-tag {
  background: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: #4a5a6e;
  border: 1px solid #e8e8e8;
  display: inline-block;
}

/* ─── CTA ─── */
.rn-cta-sec { padding: 3.5rem 0; }
.rn-cta-card { background: var(--rn-navy); border-radius: 16px; padding: 3rem 2rem; }
.rn-cta-h {
  font-family: var(--rn-serif);
  font-size: clamp(1.5rem,3vw,2rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.rn-cta-sub { color: #8899AA; max-width: 480px; margin: 0 auto 1.5rem; font-size: 0.95rem; }

/* ─── FORMS ─── */
.rn-form-card { background: #faf7f2; border-radius: 14px; padding: 1.6rem; border: 1px solid #ece5d8; }
.rn-lbl { font-size: 0.8rem; font-weight: 600; color: var(--rn-navy); margin-bottom: 0.2rem; }
.rn-inp {
  border: 1px solid #d8dde3;
  border-radius: 8px;
  font-size: 0.88rem;
  padding: 0.5rem 0.75rem;
  transition: 0.3s;
  background: #fff;
  width: 100%;
}
.rn-inp:focus { border-color: var(--rn-copper); box-shadow: 0 0 0 3px rgba(196,120,50,0.1); outline: none; }

/* ─── PLANS ─── */
.rn-plan-card { background: #faf7f2; border: 1px solid #ece5d8; border-radius: 12px; padding: 1.4rem; }
.rn-plan-feat { border-color: var(--rn-copper); box-shadow: 0 0 0 1px var(--rn-copper); background: #fffbf5; }
.rn-plan-badge {
  display: inline-block;
  background: #e8e8e8;
  color: #3a4a5e;
  font-weight: 700;
  font-size: 0.68rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}
.rn-plan-badge-f {
  display: inline-block;
  background: var(--rn-copper);
  color: #fff;
  font-weight: 700;
  font-size: 0.68rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ─── FOOTER ─── */
.rn-footer { background: var(--rn-navy); padding: 3rem 0 1.5rem; }
.rn-ft-text { font-size: 0.83rem; color: #8899AA; line-height: 1.6; }
.rn-ft-generac { height: 30px; margin-top: 8px; filter: brightness(0) invert(1); opacity: 0.5; }
.rn-ft-h {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.rn-ft-links { list-style: none; padding: 0; margin: 0; }
.rn-ft-links li { margin-bottom: 0.25rem; }
.rn-ft-links a { color: #8899AA; text-decoration: none; font-size: 0.83rem; transition: 0.3s; }
.rn-ft-links a:hover { color: var(--rn-copper); }
.rn-social { color: #8899AA; transition: 0.3s; display: inline-block; }
.rn-social:hover { color: var(--rn-copper); }
.rn-social svg { width: 20px; height: 20px; fill: currentColor; }

/* ─── FADE ANIMATION ─── */
.rn-fade { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rn-vis { opacity: 1; transform: translateY(0); }

/* ─── SUCCESS MESSAGE ─── */
.rn-success-icon { font-size: 3rem; color: #2D7A4F; }

/* ─── RESPONSIVE ─── */
.rn-nav-patch-mobile { display: none !important; }
@media (max-width: 767px) {
  .rn-sec { padding: 3rem 0; }
  .rn-page-hero { padding: 7rem 0 2.5rem; }
  .rn-cta-card { padding: 2rem 1rem; }
  .rn-home-hero { padding: 5rem 0 2rem; min-height: auto; }
}

/* ─── FAQ SECTION ─── */
.rn-faq-item { border-bottom: 1px solid #eee; }
.rn-faq-item:last-child { border: none; }
.rn-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  font-family: var(--rn-sans);
  font-weight: 600;
  color: var(--rn-navy);
  font-size: 0.95rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.rn-faq-q:hover { color: var(--rn-copper); }
.rn-faq-q span { transition: transform 0.3s; font-size: 1.2rem; color: var(--rn-copper); flex-shrink: 0; margin-left: 1rem; }
.rn-faq-q.active span { transform: rotate(45deg); }
.rn-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #4a5a6e;
  font-size: 0.88rem;
  line-height: 1.7;
}
.rn-faq-a.open { max-height: 500px; padding-bottom: 1rem; }

/* ─── PRICING TABS ─── */
.rn-tab-btn {
  background: #f0ebe3;
  border: 1px solid #ddd;
  border-radius: 8px 8px 0 0;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: #5a6a7e;
  cursor: pointer;
  border-bottom: none;
}
.rn-tab-btn.active { background: #fff; color: var(--rn-copper); border-bottom: 2px solid #fff; position: relative; z-index: 1; }
.rn-tab-content { display: none; }
.rn-tab-content.active { display: block; }
.rn-price { font-family: var(--rn-serif); font-size: 1.8rem; color: var(--rn-copper); font-weight: 700; }
.rn-price-sub { font-size: 0.8rem; color: #8899AA; }
.rn-price-mo { font-size: 0.82rem; color: #6a7a8e; }
.rn-addon-card { background: #f8f4ef; border: 1px solid #ece5d8; border-radius: 10px; padding: 1rem 1.2rem; }
