/*
 * Uzman Yönetim v1.3.0
 * Baştan tasarlanan mobil ve tablet arayüzü
 */
.mobile-header-actions,
.mobile-contact-bar,
.mobile-menu-caption,
.mobile-menu-buttons {
  display: none;
}

@media (max-width: 900px) {
  :root {
    --mobile-gutter: 18px;
    --mobile-header-height: 76px;
    --mobile-action-height: 66px;
  }

  html {
    scroll-padding-top: calc(var(--mobile-header-height) + 14px);
    overflow-x: hidden;
  }

  body {
    min-width: 320px;
    padding: 0 0 calc(var(--mobile-action-height) + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    background: #fff;
    background-image: none;
    -webkit-text-size-adjust: 100%;
  }

  body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .site-shell {
    width: 100%;
    margin: 0;
    border: 0;
    border-top: 3px solid var(--gold);
    box-shadow: none;
    overflow: visible;
  }

  .container {
    width: min(calc(100% - (var(--mobile-gutter) * 2)), var(--container));
  }

  .topbar {
    border-bottom-width: 2px;
    font-size: 11px;
  }

  .topbar-inner {
    min-height: 34px;
    justify-content: space-between;
    gap: 10px;
  }

  .topbar-contact,
  .topbar-social {
    min-width: 0;
    display: flex;
    gap: 0;
  }

  .topbar-contact > :not(:first-child),
  .topbar-social > :not(a) {
    display: none !important;
  }

  .topbar-contact > a:first-child,
  .topbar-social > a {
    display: inline-flex !important;
    min-height: 34px;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  .topbar-contact > a:first-child {
    font-weight: 800;
  }

  .topbar-contact > a:first-child > span,
  .topbar-social > a > span {
    display: inline-block !important;
  }

  .topbar-social > a span:last-child {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .topbar .dashicons {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    font-size: 14px;
  }

  .site-header,
  .site-header.scrolled {
    position: sticky;
    top: 0;
    z-index: 1300;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(46,39,92,.11);
    box-shadow: 0 7px 24px rgba(46,39,92,.08);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-open .site-header,
  .menu-open .site-header.scrolled {
    z-index: 1600;
  }

  .admin-bar .site-header,
  .admin-bar .site-header.scrolled {
    top: 32px;
  }

  .header-inner {
    min-height: var(--mobile-header-height);
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    margin-right: 0;
  }

  .brand-logo,
  .custom-logo-link {
    display: inline-flex;
    align-items: center;
    max-width: 154px;
  }

  .brand-logo,
  .custom-logo {
    width: 154px;
    max-height: 66px;
    object-fit: contain;
    object-position: left center;
  }

  .header-cta {
    display: none;
  }

  .mobile-header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-call-button,
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(46,39,92,.13);
    background: #fff;
    color: var(--navy);
    box-shadow: 0 6px 18px rgba(46,39,92,.06);
  }

  .mobile-call-button {
    color: var(--blue);
  }

  .mobile-call-button .dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    cursor: pointer;
  }

  .menu-toggle > span {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 2px;
    margin: 0;
    background: var(--navy);
    border-radius: 10px;
    transition: transform .24s ease, opacity .18s ease, top .24s ease;
  }

  .menu-toggle > span:nth-child(1) { top: 14px; }
  .menu-toggle > span:nth-child(2) { top: 21px; }
  .menu-toggle > span:nth-child(3) { top: 28px; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

  .primary-nav {
    position: fixed;
    z-index: 1500;
    inset: 0 0 0 auto;
    width: min(94vw, 420px);
    max-width: 100%;
    max-height: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    box-shadow: -24px 0 65px rgba(20,17,55,.25);
    transform: translate3d(104%,0,0);
    visibility: hidden;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), visibility .3s ease;
    touch-action: pan-y;
  }

  .primary-nav.open {
    max-height: none;
    overflow: hidden;
    transform: translate3d(0,0,0);
    visibility: visible;
  }

  .admin-bar .primary-nav {
    top: 32px;
  }

  .mobile-menu-head {
    flex: 0 0 auto;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 0;
    border-bottom: 1px solid rgba(46,39,92,.1);
    background: #fff;
    color: var(--navy);
  }

  .mobile-menu-brand {
    display: inline-flex;
    align-items: center;
    width: 165px;
    max-width: calc(100% - 60px);
  }

  .mobile-menu-brand img {
    width: 100%;
    max-height: 62px;
    object-fit: contain;
    object-position: left center;
  }

  .menu-close {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(46,39,92,.12);
    background: var(--soft);
    color: var(--navy);
    cursor: pointer;
  }

  .menu-close span {
    font-size: 29px;
    line-height: 1;
    transform: translateY(-1px);
  }

  .mobile-menu-caption {
    flex: 0 0 auto;
    display: grid;
    gap: 2px;
    padding: 15px 20px;
    border-left: 4px solid var(--gold);
    background: linear-gradient(100deg, rgba(46,39,92,.06), rgba(0,150,219,.04));
  }

  .mobile-menu-caption strong {
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-menu-caption span {
    color: var(--muted);
    font-size: 11px;
  }

  .primary-nav > ul,
  .primary-nav > .menu,
  .primary-nav > .menu > ul {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .primary-nav > ul,
  .primary-nav > .menu > ul {
    display: block;
    margin: 0;
    padding: 9px 18px 22px;
    list-style: none;
  }

  .primary-nav > .menu {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
  }

  .primary-nav li {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1fr) 46px;
    align-items: stretch;
    width: 100%;
  }

  .primary-nav li > a {
    grid-column: 1;
    min-width: 0;
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 13px 8px;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: none;
  }

  .primary-nav > ul > li > a,
  .primary-nav > .menu > ul > li > a {
    padding-left: 4px;
  }

  .primary-nav .current-menu-item > a,
  .primary-nav .current-menu-ancestor > a,
  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    color: var(--blue);
  }

  .primary-nav .current-menu-item > a::after {
    display: none;
  }

  .submenu-toggle {
    grid-column: 2;
    width: 46px;
    height: 54px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--navy);
    cursor: pointer;
  }

  .submenu-toggle span {
    position: relative;
    width: 14px;
    height: 14px;
  }

  .submenu-toggle span::before,
  .submenu-toggle span::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: currentColor;
    transform: translate(-50%,-50%);
    transition: transform .2s ease, opacity .2s ease;
  }

  .submenu-toggle span::before { width: 14px; height: 2px; }
  .submenu-toggle span::after { width: 2px; height: 14px; }
  .menu-item-has-children.submenu-open > .submenu-toggle span::after { opacity: 0; }

  .primary-nav .sub-menu,
  .primary-nav li:hover > .sub-menu {
    grid-column: 1 / -1;
    position: static;
    width: 100%;
    display: none;
    margin: 0;
    padding: 5px 0 8px 13px;
    border: 0;
    border-left: 2px solid rgba(0,150,219,.25);
    background: var(--soft);
    box-shadow: none;
  }

  .primary-nav .menu-item-has-children.submenu-open > .sub-menu {
    display: block;
  }

  .primary-nav .sub-menu li {
    display: block;
  }

  .primary-nav .sub-menu a {
    min-height: 44px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(46,39,92,.07);
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-menu-contact {
    flex: 0 0 auto;
    display: grid;
    gap: 10px;
    padding: 16px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--line);
    background: var(--soft);
  }

  .mobile-menu-contact > span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .9px;
    text-transform: uppercase;
  }

  .mobile-menu-contact > a:not(.mobile-menu-quote) {
    min-height: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 900;
  }

  .mobile-menu-contact .dashicons {
    color: var(--blue);
  }

  .mobile-menu-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .mobile-menu-whatsapp,
  .mobile-menu-quote {
    min-height: 46px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 12px;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .45px;
    text-transform: uppercase;
  }

  .mobile-menu-whatsapp { background: #20b95a; }
  .mobile-menu-whatsapp .dashicons { color: #fff; }
  .mobile-menu-quote { margin: 0; background: var(--gold); }

  .menu-overlay {
    position: fixed;
    z-index: 1400;
    inset: 0;
    display: block;
    padding: 0;
    border: 0;
    background: rgba(20,16,52,.62);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }

  .menu-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hero-slider,
  .hero-content {
    min-height: 550px;
  }

  .hero-slider::before {
    background: linear-gradient(135deg, transparent 0 76%, rgba(58,164,61,.24) 76% 79%, transparent 79%);
  }

  .hero-slide {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(31,25,72,.96) 0%, rgba(46,39,92,.88) 64%, rgba(0,150,219,.34) 100%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .hero-content h1 {
    max-width: 680px;
    margin: 15px 0 15px;
    font-size: clamp(38px, 7vw, 55px);
    line-height: 1.08;
    letter-spacing: -1.8px;
  }

  .hero-content p {
    max-width: 590px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 25px;
  }

  .slider-arrow {
    display: none;
  }

  .slider-dots {
    bottom: 24px;
  }

  .slider-dots button {
    width: 27px;
    height: 4px;
  }

  .trust-strip {
    overflow: hidden;
  }

  .trust-strip .container {
    width: 100%;
  }

  .trust-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px var(--mobile-gutter) 17px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .trust-grid::-webkit-scrollbar {
    display: none;
  }

  .trust-grid > div {
    flex: 0 0 min(78vw, 290px);
    min-height: 92px;
    grid-template-columns: 42px 1fr;
    padding: 17px 16px;
    border: 1px solid var(--line) !important;
    background: #fff;
    scroll-snap-align: start;
    box-shadow: 0 7px 20px rgba(46,39,92,.05);
  }

  .trust-grid .dashicons {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading.centered {
    text-align: left;
  }

  .section-heading.centered .eyebrow {
    justify-content: flex-start;
  }

  .section-heading h2 {
    margin-top: 11px;
    font-size: clamp(31px, 5.5vw, 41px);
    letter-spacing: -1px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .section-heading.split {
    align-items: flex-start;
  }

  .service-grid,
  .news-grid,
  .posts-grid,
  .reference-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
  }

  .service-card,
  .reference-card,
  .news-card {
    overflow: hidden;
  }

  .service-card:hover,
  .reference-card:hover,
  .purpose-grid article:hover,
  .management-disciplines article:hover {
    transform: none;
  }

  .service-image {
    height: 184px;
  }

  .service-body {
    padding: 24px 21px 25px;
  }

  .about-grid,
  .testimonial-layout,
  .contact-grid,
  .quote-layout,
  .detail-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 42px;
  }

  .about-content {
    order: 1;
  }

  .about-visual {
    order: 2;
    width: 100%;
    max-width: 620px;
    min-height: 390px;
  }

  .about-main-card {
    inset: 24px 42px 72px 0;
    padding: 31px;
  }

  .about-main-card .dashicons {
    margin-bottom: 76px;
  }

  .about-experience {
    right: 0;
    bottom: 18px;
  }

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

  .why-grid article {
    min-height: 220px;
    padding: 27px 23px;
  }

  .why-grid article:nth-child(2n) {
    border-right: 0;
  }

  .why-grid article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .why-grid h3 {
    margin-top: 27px;
  }

  .stats-section {
    padding: 42px 0;
  }

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

  .stats-grid div {
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    border-right: 1px solid rgba(11,39,69,.2);
    border-bottom: 1px solid rgba(11,39,69,.2);
  }

  .stats-grid div:nth-child(2n) {
    border-right: 0;
  }

  .stats-grid div:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .stats-grid strong {
    font-size: 32px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 4px;
  }

  .process-grid::before {
    display: block;
    top: 28px;
    bottom: 28px;
    left: 31px;
    right: auto;
    width: 1px;
    height: auto;
    background: #cfd9e4;
  }

  .process-grid article {
    min-height: 118px;
    display: grid;
    grid-template-columns: 58px 1fr;
    grid-template-rows: auto auto;
    column-gap: 17px;
    align-content: start;
    padding: 0 0 27px;
    text-align: left;
  }

  .process-grid b {
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0;
  }

  .process-grid h3 {
    grid-column: 2;
    margin: 3px 0 6px;
  }

  .process-grid p {
    grid-column: 2;
    margin: 0;
  }

  .testimonial-layout {
    gap: 32px;
  }

  .testimonial-heading h2 {
    font-size: clamp(32px, 6vw, 42px);
  }

  .testimonial-card {
    padding: 33px 29px;
  }

  .testimonial-card blockquote {
    font-size: 18px;
  }

  .home-cta {
    padding-bottom: 66px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 38px 32px;
  }

  .cta-inner h2 {
    font-size: clamp(29px, 5.5vw, 36px);
  }

  .cta-actions {
    width: 100%;
    justify-content: space-between;
  }

  .page-hero,
  .page-hero.compact {
    padding: 66px 0 62px;
  }

  .page-hero h1 {
    font-size: clamp(37px, 7vw, 50px);
    letter-spacing: -1.2px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .article-container {
    max-width: 100%;
  }

  .entry-content,
  .entry-content p {
    overflow-wrap: anywhere;
  }

  .entry-content table,
  .wp-block-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .entry-content iframe,
  .entry-content video {
    max-width: 100%;
  }

  .detail-grid,
  .faq-layout {
    gap: 32px;
  }

  .detail-sidebar {
    gap: 16px;
  }

  .form-panel,
  .quote-info {
    padding: 31px 27px;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .uzman-form input,
  .uzman-form select,
  .uzman-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .uzman-form textarea {
    min-height: 140px;
  }

  .map-frame {
    height: 300px;
  }

  .footer-main {
    padding: 58px 0 44px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 34px 28px;
  }

  .footer-bottom-inner {
    min-height: auto;
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 1250;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(var(--mobile-action-height) + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: .88fr 1.12fr 1.2fr;
    padding: 7px 9px calc(7px + env(safe-area-inset-bottom, 0px));
    gap: 7px;
    border-top: 1px solid rgba(46,39,92,.12);
    background: rgba(255,255,255,.97);
    box-shadow: 0 -10px 30px rgba(46,39,92,.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: transform .25s ease;
  }

  .menu-open .mobile-contact-bar {
    transform: translateY(110%);
  }

  .mobile-contact-bar a {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 6px;
    color: var(--navy);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: .35px;
    text-transform: uppercase;
  }

  .mobile-contact-bar a:nth-child(1) {
    border: 1px solid rgba(46,39,92,.13);
    background: #fff;
  }

  .mobile-contact-bar a:nth-child(2) {
    background: #20b95a;
    color: #fff;
  }

  .mobile-contact-bar a:nth-child(3) {
    background: var(--gold);
    color: #fff;
  }

  .mobile-contact-bar .dashicons {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    font-size: 17px;
  }

  /* Hakkımızda sayfası */
  .about-page-hero {
    padding-bottom: 62px;
  }

  .page-hero-chips {
    margin-top: 22px;
  }

  .about-intro-grid,
  .values-layout,
  .management-model-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-intro-content {
    order: 1;
  }

  .about-intro-visual {
    order: 2;
    width: 100%;
    max-width: 620px;
    min-height: 430px;
  }

  .about-logo-panel {
    left: 30px;
    right: 56px;
    top: 38px;
    bottom: 78px;
    padding: 35px;
  }

  .about-visual-note {
    right: 0;
    bottom: 26px;
  }

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

  .purpose-grid article {
    min-height: 285px;
    padding: 29px 25px;
  }

  .purpose-grid article:last-child {
    grid-column: 1 / -1;
  }

  .values-layout {
    gap: 34px;
  }

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

  .management-disciplines {
    gap: 14px;
  }

  .management-disciplines article {
    min-height: 160px;
    padding: 22px 19px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header,
  .admin-bar .site-header.scrolled,
  .admin-bar .primary-nav {
    top: 46px;
  }
}

@media (max-width: 680px) {
  :root {
    --mobile-gutter: 16px;
    --mobile-header-height: 72px;
  }

  .topbar-social > a span:last-child {
    display: none;
  }

  .brand-logo,
  .custom-logo-link,
  .brand-logo,
  .custom-logo {
    width: 142px;
    max-width: 142px;
    max-height: 62px;
  }

  .mobile-call-button,
  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu-toggle > span {
    left: 11px;
  }

  .primary-nav {
    width: min(96vw, 405px);
  }

  .hero-slider,
  .hero-content {
    min-height: 515px;
  }

  .hero-content {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-content h1 {
    font-size: clamp(35px, 10.5vw, 44px);
    letter-spacing: -1.3px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-actions {
    width: 100%;
    max-width: 360px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 27px;
  }

  .section-heading h2 {
    font-size: clamp(29px, 9vw, 37px);
  }

  .section-heading.split {
    flex-direction: column;
    gap: 17px;
  }

  .service-grid,
  .news-grid,
  .posts-grid,
  .reference-grid,
  .why-grid,
  .form-grid,
  .purpose-grid,
  .about-values-grid,
  .management-disciplines {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .news-grid,
  .posts-grid,
  .reference-grid {
    gap: 17px;
  }

  .service-image {
    height: 200px;
  }

  .why-grid article {
    min-height: 0;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.14) !important;
  }

  .why-grid article:last-child {
    border-bottom: 0 !important;
  }

  .about-visual {
    min-height: 350px;
  }

  .about-main-card {
    inset: 20px 30px 66px 0;
    padding: 25px;
  }

  .about-main-card .dashicons {
    margin-bottom: 54px;
    font-size: 61px;
    width: 61px;
    height: 61px;
  }

  .about-main-card strong {
    font-size: 24px;
  }

  .about-experience {
    width: 190px;
    padding: 20px 23px;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 29px 23px;
  }

  .testimonial-card .quote {
    right: 18px;
    font-size: 74px;
  }

  .cta-inner {
    padding: 32px 24px;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .cta-actions .button {
    width: 100%;
  }

  .page-hero,
  .page-hero.compact {
    padding: 57px 0 54px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .breadcrumbs,
  .post-meta {
    flex-wrap: wrap;
  }

  .form-panel,
  .quote-info,
  .sidebar-card,
  .sidebar-cta,
  .faq-aside {
    padding: 25px 20px;
  }

  .form-panel h2 {
    font-size: 27px;
  }

  .inline-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 20px;
  }

  .footer-main {
    padding: 50px 0 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .footer-brand-logo {
    width: 195px;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .about-intro-visual {
    min-height: 350px;
  }

  .about-logo-panel {
    left: 18px;
    right: 31px;
    top: 28px;
    bottom: 71px;
    gap: 18px;
    padding: 27px 22px;
  }

  .about-logo-panel img {
    width: min(100%, 270px);
  }

  .about-logo-panel > span {
    text-align: center;
    font-size: 9px;
  }

  .about-visual-note {
    bottom: 20px;
    min-width: 194px;
    padding: 16px 18px;
  }

  .about-visual-note strong {
    font-size: 18px;
  }

  .purpose-grid article,
  .management-disciplines article {
    min-height: 0;
  }

  .purpose-grid article:last-child {
    grid-column: auto;
  }

  .about-values-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16) !important;
  }

  .about-values-grid article:last-child {
    border-bottom: 0 !important;
  }
}

@media (max-width: 420px) {
  :root {
    --mobile-gutter: 14px;
  }

  .topbar-inner {
    min-height: 32px;
  }

  .topbar-contact > a:first-child {
    font-size: 10px;
  }

  .brand-logo,
  .custom-logo-link,
  .brand-logo,
  .custom-logo {
    width: 128px;
    max-width: 128px;
  }

  .mobile-call-button,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-toggle > span {
    left: 10px;
  }

  .primary-nav {
    width: 100%;
  }

  .mobile-menu-head {
    min-height: 78px;
    padding: 13px 15px;
  }

  .mobile-menu-brand {
    width: 148px;
  }

  .mobile-menu-caption {
    padding: 13px 16px;
  }

  .primary-nav > ul,
  .primary-nav > .menu > ul {
    padding-inline: 15px;
  }

  .mobile-menu-contact {
    padding-inline: 15px;
  }

  .hero-slider,
  .hero-content {
    min-height: 500px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.35px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .button {
    min-height: 47px;
    padding-inline: 17px;
    font-size: 11px;
  }

  .trust-grid > div {
    flex-basis: 84vw;
  }

  .section-heading h2 {
    font-size: 29px;
  }

  .stats-grid strong {
    font-size: 28px;
  }

  .stats-grid span {
    font-size: 10px;
  }

  .process-grid article {
    column-gap: 13px;
  }

  .process-grid b {
    width: 52px;
    height: 52px;
  }

  .process-grid::before {
    left: 27px;
  }

  .mobile-contact-bar {
    gap: 5px;
    padding-inline: 6px;
  }

  .mobile-contact-bar a {
    gap: 4px;
    padding-inline: 3px;
    font-size: 9px;
  }

  .mobile-contact-bar .dashicons {
    width: 15px;
    height: 15px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary-nav,
  .menu-overlay,
  .mobile-contact-bar,
  .menu-toggle > span {
    transition: none !important;
  }
}
