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

:root {
  --gold:        #C8A84B;
  --gold-light:  #DEC06A;
  --gold-pale:   #faf4e4;
  --gold-border: #DEC06A;
  --silver:      #c0c0c0;
  --silver-dark: #8a8a8a;
  --silver-pale: #f4f4f6;
  --silver-mid:  #e2e2e6;
  --dark:        #1c1c1a;
  --gray:        #6a6a68;
  --white:       #ffffff;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); overflow-x: hidden; }

.hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* TOPBAR */
.topbar {
  background: var(--silver-pale);
  border-bottom: 1px solid var(--silver-mid);
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: var(--gold); text-decoration: none; font-weight: 500; }
.topbar-right { display: flex; gap: 24px; align-items: center; }

/* NAVBAR */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--silver-mid);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; justify-content: space-between; align-items: center; height: 80px;
}
.nav-logo img { height: 48px; object-fit: contain; max-width: 200px; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--dark);
  text-decoration: none; position: relative; padding-bottom: 4px; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important; color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 2px;
  font-weight: 500 !important; letter-spacing: 1px !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--dark);
  margin: 5px 0; transition: 0.3s;
}

/* HERO */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; overflow: hidden;
  background: #1a1a18;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1505409628601-edc9af17fda6?w=1600&q=80') center/cover no-repeat;
  opacity: 0.38;
}
.hero-gold-line {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.hero-content {
  position: relative; max-width: 1200px; margin: 0 auto; padding: 0 40px; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-tag::before {
  content: ''; width: 32px; height: 1px; background: var(--gold-light); display: block;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300; color: var(--white); line-height: 1.1;
  max-width: 820px; margin-bottom: 28px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: 18px; color: rgba(255,255,255,0.75);
  max-width: 560px; line-height: 1.8; margin-bottom: 44px;
  font-weight: 300; animation: fadeUp 0.8s 0.3s ease both;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.45s ease both; }
.btn-primary {
  background: var(--gold); color: var(--white); text-decoration: none;
  padding: 16px 40px; font-size: 14px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; border-radius: 2px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); text-decoration: none;
  padding: 16px 40px; font-size: 14px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; border-radius: 2px;
  transition: border-color 0.2s, background 0.2s; display: inline-block; background: transparent;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(200,168,75,0.15); }
.hero-stats {
  position: absolute; bottom: 48px; right: 40px;
  display: flex; gap: 48px; animation: fadeUp 0.8s 0.6s ease both;
}
.stat { text-align: right; }
.stat-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 300;
  color: var(--gold-light); line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.services { background: var(--silver-pale); padding: 100px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-tag {
  font-size: 13px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300; color: var(--dark); line-height: 1.2; margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 17px; color: var(--gray); max-width: 620px;
  line-height: 1.8; font-weight: 300; margin-bottom: 56px;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--silver-mid); }
.service-card {
  background: var(--white); padding: 36px 32px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.service-card:hover { border-top-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(184,144,42,0.12); }
.service-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 300;
  color: var(--silver-mid); line-height: 1; margin-bottom: 16px; transition: color 0.3s;
}
.service-card:hover .service-num { color: var(--gold-border); }
.service-card h3 {
  font-size: 14px; font-weight: 600; letter-spacing: 1.5px;
  color: var(--dark); margin-bottom: 12px; text-transform: uppercase;
}
.service-card p { font-size: 15px; color: var(--gray); line-height: 1.7; font-weight: 300; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold); text-decoration: none; transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 520px; object-fit: cover; display: block; }
.about-img-frame {
  position: absolute; bottom: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold-border); z-index: -1; pointer-events: none;
}
.about-badge {
  position: absolute; bottom: 32px; left: -24px;
  background: var(--white); color: var(--dark);
  padding: 20px 28px; border: 1px solid var(--silver-mid);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.about-badge-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.about-badge-text { font-size: 11px; color: var(--silver-dark); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.about-content .section-title { margin-bottom: 24px; }
.about-content p { font-size: 16px; color: var(--gray); line-height: 1.9; font-weight: 300; margin-bottom: 20px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 36px 0; }
.value-item { border-left: 2px solid var(--gold-border); padding-left: 16px; }
.value-item h4 { font-size: 14px; font-weight: 600; letter-spacing: 0.5px; color: var(--dark); margin-bottom: 4px; }
.value-item p { font-size: 14px; color: var(--gray); line-height: 1.6; margin: 0; }

.news { background: var(--silver-pale); padding: 100px 0; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.news-card {
  background: var(--white); border: 1px solid var(--silver-mid);
  overflow: hidden; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.news-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(184,144,42,0.1); }
.news-card-img { width: 100%; height: 200px; object-fit: cover; display: block; filter: brightness(0.95); transition: filter 0.3s; }
.news-card:hover .news-card-img { filter: brightness(1); }
.news-card-body { padding: 24px; }
.news-cat {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block;
}
.news-card h3 {
  font-family: var(--font-display); font-size: 1.45rem;
  font-weight: 400; color: var(--dark); line-height: 1.4; margin-bottom: 12px;
}
.news-card p { font-size: 15px; color: var(--gray); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }
.news-meta { font-size: 12px; color: var(--silver); letter-spacing: 0.5px; }
.news-more { text-align: center; margin-top: 52px; }
.btn-outline-gold {
  border: 1.5px solid var(--gold); color: var(--gold); text-decoration: none;
  padding: 14px 40px; font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 2px; display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #ede9df 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: 'INVENTIVE LEGAL';
  position: absolute;
  font-family: var(--font-display); font-size: 12vw; font-weight: 300;
  color: rgba(184,144,42,0.06); white-space: nowrap;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; letter-spacing: 4px;
}
.cta-inner { max-width: 800px; margin: 0 auto; padding: 0 40px; text-align: center; position: relative; z-index: 2; }
.cta-inner .section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.cta-inner p { font-size: 17px; color: var(--gray); line-height: 1.8; font-weight: 300; margin-bottom: 40px; }
.cta-contacts { display: flex; justify-content: center; gap: 48px; margin-top: 52px; flex-wrap: wrap; }
.cta-contact-item { text-align: center; }
.cta-contact-item .label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--silver-dark); margin-bottom: 8px; }
.cta-contact-item a {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--dark); text-decoration: none; font-weight: 400;
}
.cta-contact-item a:hover { color: var(--gold); }

.trusted {
  background: var(--white); padding: 40px 0 36px;
  border-top: 1px solid var(--silver-mid);
  border-bottom: 1px solid var(--silver-mid);
}
.trusted-label {
  text-align: center; font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--silver);
  margin-bottom: 28px;
}
.ticker-wrap { overflow: hidden; position: relative; }
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.ticker-track {
  display: flex; gap: 64px; width: max-content;
  animation: ticker 22s linear infinite; align-items: center; padding: 4px 0;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 400;
  color: var(--silver); white-space: nowrap; letter-spacing: 0.5px;
  transition: color 0.2s; cursor: default;
}
.ticker-item:hover { color: var(--gold); }
.ticker-dot { width: 4px; height: 4px; background: var(--gold-border); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.footer-article { background: #1a1c20; }
.footer-article .wrap-content {
  max-width: 1200px; margin: 0 auto; padding: 64px 40px 52px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 48px;
}
.footer-logo-text { font-size: 19px; font-weight: 700; letter-spacing: 1px; line-height: 1.2; margin-bottom: 6px; }
.footer-logo-text span { color: var(--gold); }
.footer-logo-text em { color: var(--silver); font-style: normal; }
.footer-company-name {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35); margin: 10px 0 2px; text-transform: uppercase;
}
.footer-company-sub { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-title {
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--silver); margin-bottom: 20px; display: block;
}
.footer-ul { list-style: none; padding: 0; }
.footer-ul li { margin-bottom: 11px; }
.footer-ul a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 15px; font-weight: 300; transition: color 0.2s; }
.footer-ul a:hover { color: var(--gold-light); }
.footer-info p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 8px; font-weight: 300; }
.footer-info strong { color: rgba(255,255,255,0.7); font-weight: 500; }
.footer-info a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-info a:hover { color: var(--gold-light); }
.social-footer { list-style: none; padding: 0; display: flex; gap: 10px; margin-top: 20px; }
.social-footer li a {
  width: 34px; height: 34px;
  border: 1px solid rgba(192,192,192,0.2); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.social-footer li a:hover { border-color: var(--gold); background: rgba(184,144,42,0.12); }
.social-footer img { width: 16px; height: 16px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.5; }
.footer-divider { border: none; border-top: 1px solid rgba(192,192,192,0.08); margin: 0; }
.footer-bottom-bar { background: #12141a; padding: 16px 0; }
.footer-bottom-bar .wrap-content {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.footer-policy-link { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 12px; transition: color 0.2s; white-space: nowrap; }
.footer-policy-link:hover { color: var(--gold-light); }
.footer-sep { color: rgba(192,192,192,0.2); font-size: 12px; margin: 0 4px; }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.25); margin-left: auto; }
.click-top {
  width: 34px; height: 34px; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 3px; margin-left: 12px; flex-shrink: 0;
  border: 1px solid rgba(192,192,192,0.15); transition: background 0.2s, border-color 0.2s;
}
.click-top:hover { background: var(--gold); border-color: var(--gold); }
.click-top img { width: 16px; filter: invert(1); opacity: 0.6; }

.float-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 26px; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 992px) {
  .hero-stats { position: static; margin-top: 48px; justify-content: flex-start; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .stat { text-align: left; }
}

@media (max-width: 768px) {
  .topbar-right { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--silver-mid); padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 40px; }
  .site-nav { position: sticky; }
  .site-nav .nav-inner { position: relative; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-frame { display: none; }
  .about-badge { left: 16px; }
  .cta-contacts { gap: 24px; }
  .footer-article .wrap-content { flex-direction: column; }
  .footer-copyright { margin-left: 0; width: 100%; margin-top: 8px; }
}
