
:root {
  --black: #0b0b0f;
  --red: #d71920;
  --dark-red: #a91016;
  --white: #ffffff;
  --gray-50: #f7f7f8;
  --gray-100: #eeeeef;
  --gray-300: #c8c8cc;
  --gray-600: #606069;
  --gray-800: #25252b;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius: 18px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.top-bar { background: var(--black); color: var(--white); font-size: 0.9rem; padding: 0.55rem 0; }
.top-bar .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 0; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.9rem; color: var(--black); min-width: 0; }
.brand img { width: 82px; height: 58px; object-fit: contain; background: transparent; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.15rem; font-weight: 900; letter-spacing: -0.03em; }
.brand-text span { color: var(--gray-600); font-size: 0.9rem; font-weight: 700; }
nav ul { display: flex; align-items: center; gap: 1.05rem; list-style: none; color: var(--gray-800); font-weight: 700; font-size: 0.92rem; }
nav a.active, nav a:hover { color: var(--red); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border: none; border-radius: 999px; padding: 0.9rem 1.35rem;
  font-weight: 800; cursor: pointer; transition: 0.2s ease; font-size: 0.98rem;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--dark-red); transform: translateY(-2px); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--black); border: 1px solid var(--gray-300); }
.btn-light:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, rgba(11, 11, 15, 0.93), rgba(11, 11, 15, 0.76)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: var(--white); padding: 7rem 0 4.5rem;
}
.page-hero {
  background: linear-gradient(120deg, var(--black), #24242b);
  color: var(--white); padding: 5rem 0 3.5rem;
}
.hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 3rem; align-items: center; }
.eyebrow {
  display: inline-flex; background: rgba(215, 25, 32, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18); color: var(--white);
  padding: 0.45rem 0.8rem; border-radius: 999px; font-weight: 800;
  font-size: 0.85rem; margin-bottom: 1.2rem;
}
h1 { font-size: clamp(2.6rem, 7vw, 5rem); line-height: 0.95; letter-spacing: -0.07em; margin-bottom: 1.2rem; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 4.2rem); }
.hero p, .page-hero p { font-size: 1.18rem; color: rgba(255, 255, 255, 0.86); max-width: 760px; margin-bottom: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-card {
  background: rgba(255, 255, 255, 0.96); color: var(--black);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); border-top: 5px solid var(--red);
}
.hero-card img { width: 100%; max-height: 330px; object-fit: contain; margin-bottom: 1rem; }
.hero-card h3 { font-size: 1.35rem; margin-bottom: 0.8rem; }
.hero-card ul { list-style: none; display: grid; gap: 0.75rem; }
.hero-card li { display: flex; gap: 0.65rem; align-items: start; color: var(--gray-800); }
.check { color: var(--red); font-weight: 900; }
section { padding: 5rem 0; }
.section-title { text-align: center; max-width: 820px; margin: 0 auto 2.5rem; }
.section-title h2 { color: var(--black); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -0.05em; margin-bottom: 0.9rem; }
.section-title p { color: var(--gray-600); font-size: 1.08rem; }
.gray { background: var(--gray-50); }
.black { background: var(--black); color: var(--white); }
.black .section-title h2, .black h3 { color: var(--white); }
.black .section-title p, .black p { color: rgba(255, 255, 255, 0.78); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 1.35rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.card .icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(215, 25, 32, 0.1); color: var(--red);
  display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 1rem;
}
.card h3 { color: var(--black); font-size: 1.17rem; margin-bottom: 0.5rem; }
.card p { color: var(--gray-600); font-size: 0.98rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; }
.image-panel {
  min-height: 420px; border-radius: var(--radius);
  background: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1200&q=80') center/cover;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.image-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4)); }
.feature-list { display: grid; gap: 1rem; margin-top: 1.25rem; }
.feature { display: flex; gap: 0.8rem; align-items: flex-start; background: var(--white); border-radius: 14px; padding: 1rem; border: 1px solid var(--gray-100); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: step; }
.step { background: var(--white); border-radius: var(--radius); padding: 1.3rem; border: 1px solid var(--gray-100); position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  width: 38px; height: 38px; background: var(--red); color: var(--white);
  border-radius: 50%; display: grid; place-items: center; font-weight: 900; margin-bottom: 1rem;
}
.pricing-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 2rem; align-items: start; }
.pricing-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.2rem; }
.pricing-list span { background: var(--gray-50); border: 1px solid var(--gray-100); padding: 0.85rem; border-radius: 12px; font-weight: 700; color: var(--gray-800); }
form {
  background: var(--white); border-radius: var(--radius); padding: 1.35rem;
  border: 1px solid var(--gray-100); box-shadow: 0 14px 36px rgba(0, 0, 0, 0.07);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.field { display: grid; gap: 0.35rem; }
label { font-weight: 800; color: var(--black); font-size: 0.9rem; }
input, select, textarea { width: 100%; border: 1px solid var(--gray-300); border-radius: 12px; padding: 0.85rem 0.9rem; font: inherit; color: var(--black); background: var(--white); }
textarea { min-height: 120px; resize: vertical; }
.full { grid-column: 1 / -1; }
.success-message { display: none; background: #ecfff1; border: 1px solid #a8e8b8; color: #145c25; padding: 0.9rem; border-radius: 12px; margin-top: 1rem; font-weight: 800; }
.cta-band {
  background: linear-gradient(135deg, var(--black), #24242b); color: var(--white);
  border-radius: 28px; padding: 2rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.05; }
.cta-band p { color: rgba(255, 255, 255, 0.78); }
footer { background: var(--black); color: var(--white); padding: 4rem 0 1.3rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { max-width: 240px; margin-bottom: 1rem; }
.footer-logo img { width: 100%; object-fit: contain; }
footer h4 { margin-bottom: 0.8rem; }
footer ul { list-style: none; display: grid; gap: 0.45rem; color: rgba(255, 255, 255, 0.72); }
footer p { color: rgba(255, 255, 255, 0.72); }
.copyright { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 1.2rem; color: rgba(255, 255, 255, 0.56); }
@media (max-width: 920px) {
  nav ul { display: none; }
  .hero-grid, .split, .pricing-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .top-bar .container { justify-content: center; text-align: center; }
  .hero { padding: 5rem 0 3rem; }
  .cards, .steps, .pricing-list, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .brand img { width: 68px; height: 48px; }
}



/* Premium homepage v3 */
.premium-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 7.5rem 0 4.5rem;
  background:
    radial-gradient(circle at 75% 25%, rgba(215, 25, 32, 0.22), transparent 32%),
    linear-gradient(135deg, #07070a 0%, #111117 52%, #1e0709 100%);
}
.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.28;
}
.premium-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -150px;
  bottom: -220px;
  background: rgba(215, 25, 32, 0.23);
  filter: blur(90px);
  border-radius: 999px;
}
.premium-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 2.5rem;
}
.premium-hero-copy h1 {
  max-width: 760px;
}
.premium-hero-copy p {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  margin-bottom: 1.6rem;
}
.premium-eyebrow {
  background: rgba(215,25,32,0.22);
  border-color: rgba(215,25,32,0.5);
}
.premium-logo-panel {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 34px;
  padding: 1.1rem;
  box-shadow: 0 26px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}
.premium-logo-panel img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 24px;
  filter: drop-shadow(0 22px 35px rgba(0,0,0,0.35));
}
.premium-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
  max-width: 720px;
}
.premium-stats div {
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1rem;
}
.premium-stats strong {
  display: block;
  font-size: 1.15rem;
  color: var(--white);
}
.premium-stats span {
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
}
.trust-strip-section {
  padding: 0;
  background: var(--black);
}
.trust-strip {
  transform: translateY(-50%);
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.trust-strip div {
  padding: 1.25rem;
  border-right: 1px solid var(--gray-100);
}
.trust-strip div:last-child {
  border-right: none;
}
.trust-strip strong {
  display: block;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.trust-strip span {
  display: block;
  color: var(--gray-600);
  font-size: 0.92rem;
}
.red-label {
  display: inline-flex;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}
.premium-featured {
  padding-top: 3rem;
}
.premium-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.premium-service-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 1.4rem;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: 0 8px 26px rgba(0,0,0,0.055);
  transition: 0.22s ease;
}
.premium-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215,25,32,0.35);
  box-shadow: 0 18px 44px rgba(0,0,0,0.10);
}
.premium-service-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  bottom: -70px;
  border-radius: 999px;
  background: rgba(215,25,32,0.1);
}
.premium-service-card span {
  color: var(--red);
  font-weight: 900;
  font-size: 0.9rem;
}
.premium-service-card h3 {
  color: var(--black);
  font-size: 1.25rem;
  line-height: 1.12;
  margin: 0.75rem 0;
}
.premium-service-card p {
  color: var(--gray-600);
}
.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.premium-dark {
  background:
    radial-gradient(circle at 20% 20%, rgba(215,25,32,0.2), transparent 28%),
    linear-gradient(135deg, #060609, #15151c 55%, #25090b);
  color: var(--white);
}
.premium-dark-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: start;
}
.premium-dark h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 1rem;
}
.premium-dark p {
  color: rgba(255,255,255,0.76);
  margin-bottom: 1.3rem;
}
.premium-reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.premium-reasons div {
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1.25rem;
}
.premium-reasons strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  margin: 0.55rem 0 0.4rem;
}
.premium-reasons p {
  margin: 0;
  color: rgba(255,255,255,0.68);
}
.premium-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.premium-process div {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 22px;
  padding: 1.35rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.045);
}
.premium-process span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 1rem;
}
.premium-process h3 {
  color: var(--black);
  line-height: 1.12;
  margin-bottom: 0.6rem;
}
.premium-process p {
  color: var(--gray-600);
}
.premium-about h2 {
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}
.premium-about p {
  color: var(--gray-600);
}
.premium-quote-card {
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(11,11,15,0.96), rgba(35,35,43,0.96)),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1200&q=80') center/cover;
  background-blend-mode: multiply;
  padding: 2rem;
  color: var(--white);
  box-shadow: var(--shadow);
}
.premium-quote-card h3 {
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.premium-quote-card p {
  color: rgba(255,255,255,0.76);
  margin-bottom: 1.2rem;
}
.premium-quote-card .btn {
  margin-right: 0.6rem;
  margin-bottom: 0.6rem;
}
@media (max-width: 920px) {
  .premium-hero-grid, .premium-dark-grid { grid-template-columns: 1fr; }
  .trust-strip { transform: none; grid-template-columns: repeat(2, 1fr); border-radius: 0; }
  .premium-service-grid, .premium-process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .premium-hero { padding: 4.5rem 0 3rem; }
  .premium-stats, .premium-service-grid, .premium-reasons, .premium-process, .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .trust-strip div:last-child { border-bottom: none; }
}
