/*
Theme Name: Trademark Legal
Theme URI: https://trademarklegal.us
Author: Trademark Legal
Author URI: https://trademarklegal.us
Description: Professional trademark and patent submission services website.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trademarklegal
Tags: business, legal, trademark, patent, one-page
*/

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a3a6b;
  --navy-dark: #0d2247;
  --navy-light: #234a85;
  --gold: #d4a52a;
  --gold-light: #e8c04a;
  --gold-dark: #b8891a;
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #f0f2f7;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 10px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-700); line-height: 1.6; background: var(--white); }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0 5%;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; height: 72px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 600;
  color: var(--gray-700); letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--gold); color: var(--navy-dark);
  padding: 11px 24px; border-radius: 6px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 90px 5% 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,165,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,165,42,0.15); border: 1px solid rgba(212,165,42,0.4);
  color: var(--gold-light); padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before { content: '★'; font-size: 10px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 800;
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.7;
  margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-primary {
  background: var(--gold); color: var(--navy-dark);
  padding: 15px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 15px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat { text-align: left; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.5px; }

/* Hero card */
.hero-card {
  background: var(--white); border-radius: 16px;
  padding: 40px 36px; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-card h3 { font-size: 20px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.hero-card > p { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input,
.form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-300);
  border-radius: 8px; font-size: 14px; font-family: inherit;
  color: var(--gray-900); background: var(--white);
  transition: border-color 0.2s; appearance: none;
}
.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--navy); }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white);
  padding: 14px; border: none; border-radius: 8px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: background 0.2s; margin-top: 4px;
}
.form-submit:hover { background: var(--navy-light); }
.form-note { text-align: center; font-size: 12px; color: var(--gray-500); margin-top: 12px; }

/* ── SECTIONS ── */
section { padding: 80px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: rgba(26,58,107,0.08);
  color: var(--navy); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 700;
  color: var(--navy-dark); line-height: 1.2; margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--gray-500); max-width: 560px; line-height: 1.7; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--gray-50); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 38px;
  left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 2px; background: linear-gradient(to right, var(--gold), var(--navy)); z-index: 0;
}
.step-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-sm); position: relative; z-index: 1;
  border-top: 3px solid transparent; transition: border-color 0.2s, box-shadow 0.2s;
}
.step-card:hover { border-top-color: var(--gold); box-shadow: var(--shadow-md); }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white); font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(26,58,107,0.3);
}
.step-card h3 { font-size: 18px; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.service-card {
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-md); transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-header {
  padding: 36px 36px 28px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(212,165,42,0.2); border: 1.5px solid rgba(212,165,42,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}
.service-header h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.service-header p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.service-body { padding: 28px 36px 36px; background: var(--white); }
.service-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.service-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--gray-700); }
.service-features li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.service-price { margin-bottom: 20px; }
.price-from { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
.price-amount { font-size: 36px; font-weight: 800; color: var(--navy-dark); line-height: 1; }
.price-amount span { font-size: 16px; font-weight: 500; color: var(--gray-500); }
.btn-navy {
  display: inline-block; background: var(--navy); color: var(--white);
  padding: 13px 28px; border-radius: 8px; font-size: 14px; font-weight: 700;
  transition: background 0.2s;
}
.btn-navy:hover { background: var(--navy-light); }
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--navy-dark);
  padding: 13px 28px; border-radius: 8px; font-size: 14px; font-weight: 700;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-light); }

/* ── SERVICE CARDS (new 3-col grid) ── */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.svc-card {
  background: var(--white); border-radius: 14px;
  border: 1.5px solid var(--gray-100);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.svc-icon-wrap {
  width: 62px; height: 62px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(26,58,107,0.25);
}
.svc-card h3 {
  font-size: 18px; font-weight: 700; color: var(--navy-dark);
  margin-bottom: 10px;
}
.svc-card > p {
  font-size: 14px; color: var(--gray-500); line-height: 1.7;
  margin-bottom: 20px;
}
.svc-features {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 28px; flex: 1;
}
.svc-features li {
  font-size: 13.5px; color: var(--gray-700);
  display: flex; align-items: flex-start; gap: 10px;
}
.svc-features li::before {
  content: '✓'; color: var(--gold); font-weight: 700;
  flex-shrink: 0; font-size: 14px;
}
.svc-btn {
  display: inline-block; background: var(--navy); color: var(--white);
  padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 700;
  text-align: center; transition: background 0.2s;
  margin-top: auto;
}
.svc-btn:hover { background: var(--navy-light); }

@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
}

/* ── STATS BANNER ── */
.stats-banner { background: var(--gold); padding: 48px 5%; }
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.stat-item { text-align: center; }
.stat-item .num { font-size: 44px; font-weight: 900; color: var(--navy-dark); line-height: 1; }
.stat-item .lbl { font-size: 13px; font-weight: 600; color: var(--navy); margin-top: 6px; letter-spacing: 0.5px; }

/* ── WHY US ── */
.why-us { background: var(--navy-dark); }
.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,0.65); }
.why-us .section-tag { background: rgba(212,165,42,0.2); color: var(--gold-light); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.1); }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── PRICING ── */
.pricing { background: var(--gray-50); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: start; }
.pricing-card {
  background: var(--white); border-radius: 14px;
  border: 1.5px solid var(--gray-100); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
  border-color: var(--gold); transform: scale(1.04);
  box-shadow: 0 8px 40px rgba(212,165,42,0.25);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-badge {
  background: var(--gold); color: var(--navy-dark);
  text-align: center; padding: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.pricing-head { padding: 32px 28px 24px; }
.plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-dark); margin-bottom: 10px; }
.plan-price { font-size: 42px; font-weight: 900; color: var(--navy-dark); line-height: 1; }
.plan-price sup { font-size: 20px; font-weight: 600; vertical-align: super; }
.plan-price sub { font-size: 14px; font-weight: 400; color: var(--gray-500); }
.plan-desc { font-size: 13px; color: var(--gray-500); margin-top: 10px; line-height: 1.5; }
.pricing-divider { height: 1px; background: var(--gray-100); margin: 0 28px; }
.pricing-features { padding: 24px 28px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--gray-700); }
.pricing-features li .check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pricing-features li .cross { color: var(--gray-300); flex-shrink: 0; }
.pricing-foot { padding: 20px 28px 32px; }
.pricing-foot .btn-navy,
.pricing-foot .btn-gold { width: 100%; text-align: center; display: block; }
.pricing-note { font-size: 11.5px; color: var(--gray-500); text-align: center; margin-top: 10px; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--gray-50); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--white); border-radius: 12px;
  padding: 28px; box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold);
}
.stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy-dark); }
.testi-role { font-size: 12px; color: var(--gray-500); }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.faq-aside h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--navy-dark); margin-bottom: 14px; }
.faq-aside > p { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }
.faq-contact { background: var(--navy-dark); color: var(--white); padding: 28px; border-radius: 12px; }
.faq-contact p { color: rgba(255,255,255,0.7); margin-bottom: 16px; font-size: 14px; }
.faq-contact a { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 600; font-size: 15px; }
.faq-contact a + a { margin-top: 10px; display: inline-flex; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item { border: 1.5px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.acc-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  font-family: inherit; font-size: 15px; font-weight: 600; color: var(--navy-dark);
  text-align: left; transition: background 0.15s;
}
.acc-trigger:hover { background: var(--gray-50); }
.acc-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--navy); flex-shrink: 0; transition: background 0.2s, transform 0.3s;
  line-height: 1;
}
.acc-item.open .acc-icon { background: var(--gold); color: var(--navy-dark); transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.acc-item.open .acc-body { max-height: 300px; }
.acc-body-inner { padding: 0 24px 20px; font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 80px 5%; text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 44px); font-weight: 700;
  color: var(--white); margin-bottom: 16px;
}
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,0.7); padding: 60px 5% 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.7); transition: background 0.2s;
  text-decoration: none;
}
.social-btn:hover { background: var(--gold); color: var(--navy-dark); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--gold); }
.footer-disclaimer {
  max-width: 1200px; margin: 24px auto 0;
  font-size: 11.5px; color: rgba(255,255,255,0.3); line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ══════════════════════════════════════════
   INNER SERVICE PAGES
══════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb {
  background: var(--navy-dark);
  padding: 12px 5%;
}
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* Service Hero Banner */
.svc-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 70%, var(--navy-light) 100%);
  padding: 70px 5% 60px; position: relative; overflow: hidden;
}
.svc-hero::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,165,42,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.svc-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.svc-hero-icon-big {
  width: 80px; height: 80px; border-radius: 18px;
  background: rgba(212,165,42,0.18); border: 2px solid rgba(212,165,42,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; margin-bottom: 22px;
}
.svc-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 16px;
}
.svc-hero p {
  font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7;
  max-width: 600px; margin-bottom: 28px;
}
.svc-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.svc-hero-badge {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 20px 28px; text-align: center;
  white-space: nowrap; flex-shrink: 0;
}
.svc-hero-badge .badge-num { font-size: 32px; font-weight: 900; color: var(--gold); line-height: 1; }
.svc-hero-badge .badge-lbl { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Service page layout */
.svc-page { padding: 72px 5%; }
.svc-page-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: start;
}

/* Main content */
.svc-main h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--navy-dark);
  margin-bottom: 14px; margin-top: 40px;
}
.svc-main h2:first-child { margin-top: 0; }
.svc-main p { font-size: 15px; color: var(--gray-700); line-height: 1.8; margin-bottom: 16px; }

/* Included list */
.included-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 36px;
}
.included-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--gray-50); border-radius: 10px;
  padding: 16px; border-left: 3px solid var(--gold);
}
.included-item .inc-icon {
  font-size: 20px; flex-shrink: 0; margin-top: 1px;
}
.included-item h4 { font-size: 14px; font-weight: 700; color: var(--navy-dark); margin-bottom: 3px; }
.included-item p { font-size: 13px; color: var(--gray-500); line-height: 1.5; margin: 0; }

/* Inner process steps */
.inner-steps { display: flex; flex-direction: column; gap: 16px; margin: 24px 0 36px; }
.inner-step {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 24px; background: var(--white);
  border: 1.5px solid var(--gray-100); border-radius: 12px;
}
.inner-step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  color: var(--white); font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(26,58,107,0.25);
}
.inner-step h4 { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 5px; }
.inner-step p { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* Inner FAQ */
.inner-faq { margin: 24px 0 0; }
.inner-faq .acc-item { border-color: var(--gray-100); }

/* Sidebar */
.svc-sidebar { position: sticky; top: 90px; }
.sidebar-cta-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 14px; padding: 32px 28px; margin-bottom: 24px;
  text-align: center;
}
.sidebar-cta-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.sidebar-cta-card p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 22px; line-height: 1.6; }
.sidebar-cta-card .btn-primary { display: block; text-align: center; margin-bottom: 12px; }
.sidebar-phone { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--gold); font-weight: 600; font-size: 15px; }
.sidebar-services-card {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: 14px; padding: 24px 28px;
}
.sidebar-services-card h4 { font-size: 14px; font-weight: 700; color: var(--navy-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.sidebar-services-list { display: flex; flex-direction: column; gap: 4px; }
.sidebar-services-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-radius: 8px; font-size: 14px;
  color: var(--gray-700); transition: background 0.15s, color 0.15s;
}
.sidebar-services-list a:hover,
.sidebar-services-list a.active { background: rgba(26,58,107,0.06); color: var(--navy); font-weight: 600; }
.sidebar-services-list a::after { content: '→'; font-size: 13px; color: var(--gold); }

/* Related CTA banner inside page */
.inner-cta {
  background: var(--gold); border-radius: 14px;
  padding: 36px; text-align: center; margin-top: 40px;
}
.inner-cta h3 { font-size: 22px; font-weight: 800; color: var(--navy-dark); margin-bottom: 10px; }
.inner-cta p { font-size: 15px; color: var(--navy); margin-bottom: 22px; }
.inner-cta .btn-navy { display: inline-block; }

@media (max-width: 1024px) {
  .svc-page-inner { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
  .svc-hero-inner { grid-template-columns: 1fr; }
  .svc-hero-badge { display: none; }
}
@media (max-width: 640px) {
  .included-grid { grid-template-columns: 1fr; }
}
