:root {
  --navy: #0A192F;
  --charcoal: #111827;
  --gold: #D4AF37;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-500: #6B7280;
  --white: #FFFFFF;
  --blue: #2563EB;
  --blue-dark: #1E40AF;
  --success: #0F766E;
  --danger: #B91C1C;
  --shadow: 0 18px 45px rgba(10, 25, 47, .12);
  --shadow-soft: 0 8px 24px rgba(10, 25, 47, .08);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-muted {
  background: var(--gray-100);
}

.section-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #111827 66%, #1F2937);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  font-size: 4.7rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
  color: #4B5563;
}

.hero h1,
.subhero h1,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.hero p,
.subhero p,
.section-dark p {
  color: rgba(255, 255, 255, .82);
}

.lead {
  max-width: 720px;
  font-size: 1.08rem;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 14px;
}

.section-kicker::before {
  width: 32px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.section-heading {
  max-width: 760px;
  margin: 0 0 28px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.center .section-kicker::before {
  display: none;
}

.announcement {
  color: var(--white);
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  text-align: center;
  font-size: .88rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(17, 24, 39, .08);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 228px;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  color: #374151;
  border-radius: var(--radius);
  font-size: .94rem;
  font-weight: 700;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--navy);
  background: #EFF6FF;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quick-contact {
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: var(--gray-500);
  font-size: .78rem;
  white-space: nowrap;
}

.quick-contact strong {
  color: var(--charcoal);
  font-size: .86rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(37, 99, 235, .26);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .18);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--gray-200);
}

.btn-outline {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(10, 25, 47, .18);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 25, 47, .98) 0%, rgba(10, 25, 47, .82) 38%, rgba(10, 25, 47, .38) 68%, rgba(10, 25, 47, .28) 100%),
    url("../images/hero-corporate.png") center right / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding: 72px 0;
}

.hero .eyebrow {
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
}

.hero .lead {
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 700;
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.subhero {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(10, 25, 47, .98), rgba(17, 24, 39, .9)),
    url("../images/hero-corporate.png") center / cover no-repeat;
}

.subhero .container {
  padding: 86px 0 74px;
}

.subhero h1 {
  max-width: 820px;
  margin: 12px 0 18px;
  font-size: 4rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}

.breadcrumb a {
  color: var(--gold);
  font-weight: 800;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, .09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, .5);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  margin-bottom: 18px;
}

.section-dark .card h3 {
  color: var(--navy);
}

.section-dark .card p,
.section-dark .card li {
  color: #4B5563;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--gold);
  background: #FFF8E1;
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: var(--radius);
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
  align-items: center;
  gap: 48px;
}

.media-frame {
  overflow: hidden;
  background: var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list,
.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list {
  margin-top: 0;
  gap: 10px;
}

.check-list li,
.feature-list li {
  display: flex;
  gap: 10px;
  color: #374151;
}

.check-list svg,
.feature-list svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--success);
}

.process-list {
  counter-reset: process;
}

.process-card {
  position: relative;
  padding-top: 64px;
}

.process-card::before {
  position: absolute;
  top: 24px;
  left: 24px;
  color: rgba(10, 25, 47, .12);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  counter-increment: process;
  content: "0" counter(process);
}

.portfolio-card {
  overflow: hidden;
  padding: 0;
}

.portfolio-visual {
  display: grid;
  min-height: 186px;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 25, 47, .92), rgba(37, 99, 235, .65)),
    url("../images/services-collage.svg") center / cover no-repeat;
}

.portfolio-visual.gold {
  background:
    linear-gradient(135deg, rgba(17, 24, 39, .9), rgba(212, 175, 55, .62)),
    url("../images/publishing-ebook.svg") center / cover no-repeat;
}

.portfolio-visual.light {
  background:
    linear-gradient(135deg, rgba(10, 25, 47, .78), rgba(15, 118, 110, .62)),
    url("../images/brand-protection.svg") center / cover no-repeat;
}

.portfolio-visual.auto {
  background:
    linear-gradient(135deg, rgba(10, 25, 47, .8), rgba(37, 99, 235, .58)),
    url("../images/auto-consulting.svg") center / cover no-repeat;
}

.portfolio-visual span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
}

.portfolio-body {
  padding: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  color: var(--navy);
  background: #EFF6FF;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
}

.stats-band {
  color: var(--white);
  background: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
}

.stat {
  padding: 36px 24px;
  background: rgba(255, 255, 255, .05);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.stat span {
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}

.testimonial {
  display: grid;
  gap: 18px;
}

.quote-mark {
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
}

.avatar-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 800;
}

.avatar-line strong {
  display: block;
  color: var(--navy);
}

.avatar-line span {
  color: var(--gray-500);
  font-size: .9rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px 22px;
  color: var(--navy);
  background: transparent;
  border: 0;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.cta-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #1E3A8A);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, .82);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.cta-inner h2 {
  margin-bottom: 12px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 34px;
}

.filter-btn {
  min-height: 42px;
  padding: 9px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.note {
  padding: 16px 18px;
  color: #374151;
  background: #FFFBEB;
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: var(--radius);
}

.note-spaced {
  margin-top: 24px;
}

.legal-content {
  display: grid;
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
}

.legal-content .card p {
  margin-bottom: 14px;
}

.legal-content .card p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: #374151;
}

.legal-meta {
  color: var(--gray-500);
  font-weight: 700;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--gray-500);
  font-size: .86rem;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.form-title {
  margin-bottom: 10px;
  font-size: 2.1rem;
}

.form-intro {
  margin-bottom: 24px;
}

.form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid #D1D5DB;
  border-radius: var(--radius);
  outline: none;
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.field .error {
  min-height: 18px;
  color: var(--danger);
  font-size: .82rem;
  font-weight: 700;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--danger);
}

.form-status {
  min-height: 24px;
  color: var(--success);
  font-weight: 800;
}

.map-placeholder {
  display: grid;
  min-height: 270px;
  place-items: center;
  color: rgba(255, 255, 255, .82);
  background:
    linear-gradient(135deg, rgba(10, 25, 47, .93), rgba(37, 99, 235, .75)),
    url("../images/services-collage.svg") center / cover no-repeat;
  border-radius: var(--radius);
}

.map-placeholder span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, .78);
  background: var(--charcoal);
}

.site-footer p {
  color: rgba(255, 255, 255, .78);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, .65fr));
  gap: 34px;
  padding: 64px 0;
}

.footer-logo {
  width: 244px;
  margin-bottom: 18px;
}

.footer-main h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-main ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-main a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .9rem;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 1060px) {
  .quick-contact {
    display: none;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  h1,
  .subhero h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .nav-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: fixed;
    top: 116px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-list {
    display: flex;
  }

  .nav-list a {
    justify-content: space-between;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 25, 47, .97), rgba(10, 25, 47, .76)),
      url("../images/hero-corporate.png") center / cover no-repeat;
  }

  .hero-content {
    padding: 66px 0 58px;
  }

  .split,
  .grid-2,
  .grid-3,
  .contact-layout,
  .cta-inner,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .section-tight {
    padding: 48px 0;
  }

  h1,
  .subhero h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .brand img {
    width: 198px;
  }

  .nav-inner {
    min-height: 68px;
  }

  .nav-list {
    top: 106px;
    right: 14px;
    left: 14px;
  }

  .hero-content {
    padding: 52px 0 48px;
  }

  .hero-actions,
  .trust-badges {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .trust-badge {
    width: 100%;
  }

  .subhero .container {
    padding: 62px 0 54px;
  }

  .grid-4,
  .stats-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 22px;
  }

  .stat strong {
    font-size: 2.4rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
