/* ============================================================
   UDRP Secure — Global Stylesheet
   Palette: deep navy / gold / off-white — corporate legal
   ============================================================ */

:root {
  --navy-900: #081a30;
  --navy-800: #0b1f3a;
  --navy-700: #12294a;
  --navy-600: #1b3a63;
  --gold-500: #c9a227;
  --gold-400: #d9b64a;
  --gold-300: #e8cf7f;
  --ink-900: #16202e;
  --ink-600: #46536a;
  --ink-400: #7b8798;
  --paper: #f7f8fa;
  --paper-warm: #faf8f2;
  --white: #ffffff;
  --line: #e3e7ee;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(8, 26, 48, 0.08);
  --shadow-md: 0 6px 24px rgba(8, 26, 48, 0.10);
  --shadow-lg: 0 16px 48px rgba(8, 26, 48, 0.16);
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --max-w: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--navy-600); text-decoration: none; }
a:hover { color: var(--gold-500); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */

h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; color: var(--navy-800); }

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}

.lead { font-size: 1.13rem; color: var(--ink-600); }

.section { padding: 88px 0; }
.section--alt { background: var(--paper); }
.section--dark { background: var(--navy-800); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: #b9c4d4; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--gold {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn--gold:hover { background: var(--gold-400); color: var(--navy-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.btn--outline:hover { border-color: var(--gold-400); color: var(--gold-300); }

.btn--navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-600); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 26, 48, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand:hover { color: var(--white); }
.brand .mark { flex: 0 0 auto; }
.brand span em { font-style: normal; color: var(--gold-400); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  color: #ccd6e4;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold-400); border-bottom-color: var(--gold-400); }

.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(201, 162, 39, 0.13), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 59h60M59 0v60' stroke='%23ffffff' stroke-opacity='0.04' fill='none'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  padding: 96px 0 104px;
}

.hero h1 { color: var(--white); margin: 18px 0 22px; }
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero p.lead { color: #b9c4d4; max-width: 560px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

.hero-points {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  list-style: none;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  color: #ccd6e4;
}
.hero-points svg { flex: 0 0 auto; }

.hero-art { display: flex; justify-content: center; }

/* ---------- Trust bar ---------- */

.trustbar { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,0.06); }
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 0;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--gold-400);
}
.trust-item span { font-size: 0.85rem; color: #93a2b8; }

/* ---------- Cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-600); font-size: 0.96rem; }
.card .more { display: inline-block; margin-top: 16px; font-weight: 600; font-size: 0.9rem; color: var(--gold-500); }
.card .more:hover { color: var(--navy-800); }

/* ---------- Process steps ---------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.step .num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-400);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

/* ---------- Why us / feature list ---------- */

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.feature-list { list-style: none; margin-top: 28px; display: grid; gap: 22px; }
.feature-list li { display: flex; gap: 16px; }
.feature-list .fl-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--paper-warm);
  border: 1px solid #eadfc0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-list h3 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 600; }
.feature-list p { font-size: 0.94rem; color: var(--ink-600); margin-top: 3px; }

/* ---------- Quote / statement band ---------- */

.statement {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}
.statement blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.5;
  color: var(--white);
}
.statement cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(700px 300px at 15% 120%, rgba(201, 162, 39, 0.16), transparent 60%),
    var(--navy-800);
  border-radius: 16px;
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: #b9c4d4; max-width: 520px; }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 78px 0;
}
.page-hero h1 { color: var(--white); margin-top: 14px; }
.page-hero p { color: #b9c4d4; max-width: 640px; margin-top: 16px; font-size: 1.08rem; }

/* ---------- Service detail blocks ---------- */

.service-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: none; }
.service-block .icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-block h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-block p { color: var(--ink-600); max-width: 760px; }
.service-block ul { margin: 14px 0 0 18px; color: var(--ink-600); font-size: 0.95rem; display: grid; gap: 6px; }

/* ---------- FAQ ---------- */

.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--navy-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold-500);
  transition: transform 0.2s;
  flex: 0 0 auto;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 24px 20px; color: var(--ink-600); font-size: 0.96rem; }

/* ---------- Values / About ---------- */

.value-card {
  background: var(--white);
  border-top: 3px solid var(--gold-500);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.value-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.value-card p { color: var(--ink-600); font-size: 0.95rem; }

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.team-card .avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-400);
}
.team-card h3 { font-size: 1.1rem; }
.team-card .role { color: var(--gold-500); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin: 4px 0 12px; }
.team-card p { color: var(--ink-600); font-size: 0.92rem; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }

.contact-info .info-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .ci-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info h3 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; }
.contact-info p, .contact-info a { color: var(--ink-600); font-size: 0.95rem; }
.contact-info a:hover { color: var(--gold-500); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
  background: var(--white);
}
.form-note { font-size: 0.82rem; color: var(--ink-400); margin-top: 14px; }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy-900); color: #93a2b8; }

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-main .brand { font-size: 1.15rem; margin-bottom: 16px; }
.footer-main p { font-size: 0.9rem; max-width: 300px; }

.footer-main h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-main ul { list-style: none; display: grid; gap: 10px; }
.footer-main ul a { color: #93a2b8; font-size: 0.92rem; }
.footer-main ul a:hover { color: var(--gold-400); }
.footer-main ul li { font-size: 0.92rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer-bottom a { color: #93a2b8; }
.footer-bottom a:hover { color: var(--gold-400); }

.disclaimer {
  font-size: 0.78rem;
  color: #5f7089;
  padding: 0 0 28px;
  max-width: 880px;
}

/* ---------- Reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding: 72px 0; }
  .hero-art { display: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .trustbar-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-band { flex-direction: column; text-align: center; padding: 48px 32px; }
}

@media (max-width: 700px) {
  .section { padding: 64px 0; }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 0; font-size: 1rem; }
  .nav-cta { margin: 14px 0 0; }

  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
}
