/* ===========================
   BLACKDEAL - Global Styles
   =========================== */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --gold: #bd8d2d;
  --gold-light: #bd8d2d;
  --gold-dark: #bd8d2d;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --white: #ffffff;
  --off-white: #f5f3ee;
  --grey: #888888;
  --grey-light: #cccccc;
  --border: rgba(200, 154, 46, 0.2);
  --font-display: "Montserrat", sans-serif;
  --font-body: "Karla", sans-serif;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black);
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-divider {
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, 0.15);
}

.btn-contact {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  transition:
    background 0.2s,
    transform 0.2s !important;
}

.btn-contact::after {
  display: none !important;
}
.btn-contact:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav .btn-contact {
  font-size: 0.9rem !important;
  padding: 14px 36px !important;
}

/* ===========================
   PAGE WRAPPER
   =========================== */
.page {
  padding-top: var(--nav-h);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  height: 540px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 180px;
}

.hero-content-2 {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 100px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 8.6vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  max-width: 580px;
}

.hero-content-2 h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 8.6vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  max-width: 580px;
}

.hero-content h1 span {
  color: var(--gold);
}
.hero-content-2 h1 span {
  color: var(--gold);
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ===========================
   PILLARS BAR
   =========================== */
.pillars {
  background: #000;
}

.pillars-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pillar {
  padding: 32px 28px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%; /* adjust this to control how short the line is */
  width: 1px;
  background: #bd8d2d;
}

.pillar:last-child {
  border-right: none;
}

.pillar-icon {
  width: 58px;
  height: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.pillar-text h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.pillar-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.4;
}

/* ===========================
   SECTION SHARED
   =========================== */
.section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  max-width: 540px;
}

/* ===========================
   WHO WE ARE (HOME)
   =========================== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-text p + p {
  margin-top: 16px;
}

.who-img-wrap {
  position: relative;
}

.who-img-wrap img {
  width: auto;
  height: 420px;
  object-fit: contain;
}

.who-img-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  z-index: -1;
  border-radius: 2px;
}

.btn-primary {
  display: inline-block;
  margin-top: 32px;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  padding: 13px 32px;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* ===========================
   SERVICES SECTION (HOME)
   =========================== */
.services-home {
  background: var(--white);
  padding: 80px 0;
}

.services-home-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

.services-home .section-title {
  color: var(--black);
  text-align: center;
  margin-bottom: 8px;
}
.services-home .section-label {
  text-align: center;
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 154, 46, 0.2);
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  transition:
    border-color 0.3s,
    background 0.3s;
  cursor: default;
}

.service-card:hover {
  border-color: #bd8d2d;
  background: var(--white);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
}

.services-home-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===========================
   FULL SERVICES PAGE
   =========================== */
.services-full {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
}

.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.service-full-card {
  border: 1px solid #c5c5c5;
  border-radius: 8px;
  padding: 44px 36px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.service-full-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(200, 154, 46, 0.1);
}

.service-full-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-full-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
}

.service-full-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-full-card > p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-full-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-full-card ul li {
  font-size: 0.85rem;
  color: #444;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.service-full-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-hero-band {
  background: var(--gold);
  padding: 105px 40px;
  text-align: center;
}

.about-hero-band p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--white);
  line-height: 1.6;
  max-width: 1500px;
  margin: 0 auto;
  font-weight: 500;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.purpose-mission {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}

.pm-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.pm-item p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* VALUES */
.values-section {
  background: var(--white);
  padding: 80px 0;
}

.values-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

.values-inner .section-title {
  text-align: center;
}
.values-inner .section-label {
  text-align: center;
  display: block;
}

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

.value-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid #c5c5c5;
}

.value-card:last-child {
  border-right: none;
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}

/* CREDENTIALS */
.credentials-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.level-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 20px 36px;
  margin-bottom: 32px;
  border-radius: 2px;
}

.level-badge .level-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.level-badge .level-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.9;
}

.cred-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cred-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #444;
}

.cred-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C89A2E' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center/12px no-repeat;
}

.cred-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 2px;
}

/* ===========================
   APPROACH PAGE
   =========================== */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.approach-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  height: 320px;
}

.approach-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.approach-card:hover img {
  transform: scale(1.04);
}

.approach-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.1) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.approach-card-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.approach-card-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.approach-cta-band {
  background: var(--white);
  padding: 72px 40px;
  text-align: center;
  margin-top: 0px;
}

.approach-cta-band h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0px;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-layout {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-info-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 20px;
  height: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.5;
  display: block;
}

.contact-detail-text a:hover {
  color: var(--gold);
}

/* FORM */
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid #c5c5c5;
  border-radius: 8px;
  padding: 13px 16px;
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-field textarea {
  height: 140px;
}

.btn-submit {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--gold-dark);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 0.88rem;
  display: none;
}

.form-status.success {
  display: block;
  background: #f0faf4;
  border: 1px solid #2ecc71;
  color: #1a7a45;
}

.form-status.error {
  display: block;
  background: #fff5f5;
  border: 1px solid #e74c3c;
  color: #922b21;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  padding: 60px 0 0;
  border-top: 1px solid rgba(200, 154, 46, 0.2);
}

.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-brand .nav-logo span {
  color: var(--gold);
}

.footer-col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 6px;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 40px;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.social-link:hover {
  border-color: var(--gold);
  background: rgba(200, 154, 46, 0.1);
}

.social-link svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.6);
  fill: none;
  stroke-width: 1.8;
}
.social-link:hover svg {
  stroke: var(--gold);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .pillars-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .who-grid,
  .about-grid,
  .credentials-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .services-full-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-divider {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .pillars-inner {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .value-card {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero {
    height: 420px;
  }
  .section {
    padding: 56px 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .contact-layout {
    padding: 56px 24px;
  }
  .services-full {
    padding: 56px 24px;
  }
  .about-hero-band {
    padding: 40px 24px;
  }
  .credentials-section {
    padding: 56px 24px;
  }
}

@media (max-width: 480px) {
  .pillars-inner {
    grid-template-columns: 1fr;
  }
  .pillar {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .nav-inner {
    padding: 0 20px;
  }
  .hero-content {
    padding: 0 24px 40px;
  }
}
