:root {
  --black: #050505;
  --soft-black: #111111;
  --charcoal: #1b1b1b;
  --white: #ffffff;
  --off-white: #f8f8f6;
  --light-gray: #e9e9e6;
  --text-gray: #6f6f6f;

  --orange: #f28c28;
  --orange-dark: #d97112;

  --teal: #19c6c8;
  --teal-dark: #0ea5a8;

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --transition: 0.25s ease;
}


/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--soft-black);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--soft-black);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-kicker,
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.professional-copy h2,
.contact-copy h2,
.cta-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
  margin-top: 12px;
}

.section-heading p {
  margin-top: 18px;
  color: var(--text-gray);
  font-size: 1.05rem;
}


/* =========================
   TOP BAR
========================= */

.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.87rem;
}

.top-bar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-bar a {
  color: var(--teal);
  font-weight: 700;
}


/* =========================
   HEADER / NAVIGATION
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
}
.header-logo {
    display: block;
    width: 150px;
    height: 60px;
    object-fit: contain;
    object-position: center;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--orange);
}

.brand-subtitle {
  margin-top: 5px;
  max-width: 250px;
  color: var(--teal-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav > a:not(.nav-button) {
  font-size: 0.94rem;
  font-weight: 600;
  position: relative;
}

.main-nav > a:not(.nav-button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

.main-nav > a:not(.nav-button):hover::after {
  width: 100%;
}

.nav-button {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}

.nav-button:hover {
  background: var(--orange);
  color: var(--black);
}

.mobile-menu-button {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
}


/* =========================
   BUTTONS
========================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
}

.button-primary {
  background: var(--orange);
  color: var(--black);
}

.button-primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.button-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-dark:hover {
  background: var(--teal-dark);
}

.button-outline {
  border: 1px solid var(--white);
  color: var(--white);
}

.button-outline:hover {
  background: var(--white);
  color: var(--black);
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 25%, rgba(25, 198, 200, 0.2), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(242, 140, 40, 0.2), transparent 34%),
    linear-gradient(135deg, #050505 0%, #121212 54%, #0a2021 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  right: -100px;
  top: -100px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  left: -80px;
  bottom: -80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 70px;
  padding: 90px 0;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-top: 18px;
}

.hero h1 span {
  display: block;
  color: var(--teal);
}

.hero-description {
  max-width: 680px;
  margin-top: 28px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  color: var(--orange);
  font-weight: 800;
}

.hero-card {
  position: relative;
  padding: 42px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(25, 198, 200, 0.17);
  border-radius: 20px;
  pointer-events: none;
}

.hero-card-label {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.hero-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.1;
  margin-top: 14px;
}

.hero-card > p:not(.hero-card-label):not(.hero-card-tagline) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-card-divider {
  height: 1px;
  margin: 28px 0;
  background: linear-gradient(to right, var(--orange), var(--teal));
}

.hero-card-tagline {
  color: var(--teal);
  font-weight: 700;
  font-style: italic;
}


/* =========================
   CREDENTIAL STRIP
========================= */

.credentials-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
}

.credentials-grid {
  min-height: 150px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.credential {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
  position: relative;
}

.credential:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 0;
  width: 1px;
  height: calc(100% - 56px);
  background: var(--light-gray);
}

.credential-number {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--orange);
  font-weight: 700;
}

.credential-text {
  margin-top: 4px;
  font-size: 0.88rem;
  color: var(--text-gray);
}


/* =========================
   SERVICES
========================= */

/* =========================
   SERVICES
========================= */

.services-section {
  background:
    linear-gradient(
      180deg,
      #f8f8f6 0%,
      #ffffff 100%
    );
  padding-top: 80px;
  padding-bottom: 100px;
}

.services-section .section-heading {
  max-width: 850px;
  margin-bottom: 55px;
}

.services-section .section-heading h2 {
  color: #090909;
}

.services-section .section-heading p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 36px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--orange),
    var(--teal)
  );
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(25, 198, 200, 0.35);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

.featured-service {
  background:
    radial-gradient(
      circle at top right,
      rgba(25, 198, 200, 0.16),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      #050505,
      #121212
    );
  color: #ffffff;
  border-color: #050505;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(25, 198, 200, 0.12);
  border: 1px solid rgba(25, 198, 200, 0.18);
  color: var(--teal-dark);
  font-size: 1.1rem;
  font-weight: 800;
}

.featured-service .service-icon {
  background: linear-gradient(
    135deg,
    var(--orange),
    #ff9f43
  );
  border: none;
  color: #050505;
}

.service-card h3 {
  margin-top: 26px;
  font-size: 1.45rem;
  line-height: 1.25;
  color: #090909;
}

.featured-service h3 {
  color: #ffffff;
}

.service-card p {
  margin-top: 14px;
  color: #6f6f6f;
  font-size: 1rem;
  line-height: 1.7;
}

.featured-service p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: var(--orange-dark);
  font-weight: 800;
  transition: 0.25s ease;
}

.service-card a:hover {
  color: var(--teal-dark);
  transform: translateX(4px);
}

.featured-service a {
  color: var(--teal);
}

.featured-service a:hover {
  color: var(--orange);
}

@media (max-width: 1050px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 30px;
  }
}
/* =========================
   REGISTERED AGENT REFERRAL
========================= */

.registered-agent-banner {
  margin-top: 34px;
  padding: 34px 38px;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at top right,
      rgba(25, 198, 200, 0.18),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #050505 0%,
      #111111 58%,
      #0b2324 100%
    );
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.registered-agent-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--orange),
    var(--teal)
  );
}

.registered-agent-content {
  max-width: 760px;
}

.registered-agent-kicker {
  display: inline-block;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.registered-agent-banner h3 {
  margin-top: 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.registered-agent-banner p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.registered-agent-action {
  min-width: fit-content;
}

.registered-agent-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--orange);
  color: #050505;
  font-weight: 800;
  transition: 0.25s ease;
}

.registered-agent-button:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

@media (max-width: 850px) {
  .registered-agent-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .registered-agent-action {
    width: 100%;
  }

  .registered-agent-button {
    width: 100%;
  }
}

/* =========================
   ABOUT
========================= */

.about-section {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.about-visual {
  position: relative;
}

.about-image {
    height: 620px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--black);
}

.about-image img {
    width: 100%;
    height: 620px;
    display: block;
    object-fit: cover;
    object-position: center 20%;
}

.about-badge {
  position: absolute;
  right: -28px;
  bottom: 42px;
  padding: 24px 28px;
  min-width: 210px;
  border-radius: 18px;
  background: var(--orange);
  color: var(--black);
  box-shadow: var(--shadow);
}

.about-badge strong,
.about-badge span {
  display: block;
}

.about-badge strong {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
}

.about-badge span {
  margin-top: 3px;
  font-size: 0.88rem;
  font-weight: 700;
}

.about-copy p {
  margin-top: 18px;
  color: var(--text-gray);
  font-size: 1.02rem;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
}

.about-point span {
  color: var(--teal-dark);
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--orange-dark);
  font-weight: 800;
}


/* =========================
   PROCESS
========================= */

.process-section {
  background: var(--black);
  color: var(--white);
}

.light-heading p {
  color: rgba(255, 255, 255, 0.65);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  padding: 32px 26px;
  border-radius: var(--radius);
  background: var(--soft-black);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--orange);
}

.process-step h3 {
  margin-top: 22px;
  font-size: 1.18rem;
}

.process-step p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

.process-button {
  margin-top: 42px;
  text-align: center;
}


/* =========================
   PROFESSIONAL SUPPORT
========================= */

.professional-section {
  background:
    radial-gradient(circle at top left, rgba(25, 198, 200, 0.1), transparent 35%),
    var(--white);
}

.professional-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.professional-copy p {
  margin-top: 18px;
  max-width: 680px;
  color: var(--text-gray);
}

.professional-copy .button {
  margin-top: 30px;
}

.professional-panel {
  padding: 46px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--black), #0c2627);
  color: var(--white);
  box-shadow: var(--shadow);
}

.panel-small {
  color: var(--orange);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.professional-panel h3 {
  margin-top: 16px;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
}

.professional-panel p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
}

.professional-panel ul {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.professional-panel li {
  position: relative;
  padding-left: 26px;
}

.professional-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}


/* =========================
   CTA
========================= */

.cta-section {
  padding: 75px 0;
  background: linear-gradient(135deg, var(--orange), #ef9f45);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-inner .section-kicker {
  color: var(--black);
}

.cta-inner h2 {
  max-width: 760px;
  margin-top: 10px;
}

.cta-actions {
  min-width: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

.contact-copy p {
  margin-top: 18px;
  color: var(--text-gray);
  max-width: 600px;
}

.contact-card {
  padding: 40px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.contact-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--light-gray);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--orange);
}

.contact-row a {
  color: var(--teal-dark);
  font-weight: 700;
}
.contact-row a.appointment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--teal);
    color: var(--black);
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
}
.contact-row a.taxestogo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--black);
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
}

.contact-row a.taxestogo-button:hover {
    background: var(--teal);
    transform: translateY(-2px);
}
.contact-row a.appointment-button:hover {
    background: var(--orange);
    transform: translateY(-2px);
}


/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 70px 0 26px;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 60px;
}

.site-footer .brand {
  min-width: 0;
}

.footer-brand p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
}
.footer-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  margin-bottom: 6px;
  color: var(--orange);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.8rem;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {
  .main-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav > a {
    padding: 8px 0;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero-content,
  .about-grid,
  .professional-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 680px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-visual {
    max-width: 700px;
  }

  .about-badge {
    right: 20px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 75px 0;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center;
    padding: 10px 0;
  }

  .top-bar-inner p {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-subtitle {
    max-width: 190px;
    font-size: 0.57rem;
  }

  .hero-content {
    padding: 70px 0;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-actions,
  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credential:nth-child(2)::after {
    display: none;
  }

  .credential:nth-child(1),
  .credential:nth-child(2) {
    border-bottom: 1px solid var(--light-gray);
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .professional-panel,
  .contact-card,
  .hero-card {
    padding: 28px;
  }

  .about-image-placeholder {
    min-height: 420px;
  }

  .about-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -24px 20px 0;
  }

  .cta-actions {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* =========================
   NEWSOME HERO IMAGE
========================= */

/* =========================
   NEWSOME HERO IMAGE
========================= */

/* =========================
   NEWSOME HERO IMAGE
========================= */

.hero-image-section {
  width: 100%;
  height: 650px;
  background: #050505;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.newsome-hero-image {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 1050px) {
  .hero-image-section {
    height: 480px;
  }
}

@media (max-width: 760px) {
  .hero-image-section {
    height: auto;
  }

  .newsome-hero-image {
    width: 100%;
    height: auto;
  }
}