/* ===================================
   STORKER SECURITY B.V. - STYLESHEET
   =================================== */

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

html {
    font-size: 14pt;
    scroll-behavior: smooth;
}

body {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ===================================
   HEADER STYLES
   =================================== */
.site-header {
    background-color: #ef4823;
    height: 100px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header-logo {
    height: 60px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14pt;
    transition: opacity 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}
.main-nav a:hover {
    opacity: 0.85;
}

/* ===================================
   SEARCH PILL
   =================================== */
.search-pill-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 36px;
    min-height: 36px;
}

.search-pill-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 36px;
    height: 36px;
    background-color: #1a1a1a;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.search-pill-wrap.open {
    width: 280px;
    cursor: text;
}

.search-pill-form {
    display: flex;
    align-items: center;
    height: 36px;
    width: calc(100% - 36px);
    padding: 0 8px 0 12px;
    flex-shrink: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.search-pill-wrap.open .search-pill-form {
    opacity: 1;
    pointer-events: auto;
}

.search-pill-input {
    width: 100%;
    height: 36px;
    background-color: transparent;
    border: none;
    font-size: 12pt;
    color: #ffffff;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    outline: none;
}

.search-pill-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-icon-img {
    height: 18px;
    width: auto;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 2;
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===================================
   MAIN CONTENT STYLES
   =================================== */
.main-content {
    background-color: #ffffff;
    min-height: calc(100vh - 100px - 200px);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-banner-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
}

.hero-banner h1 {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 36pt;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-banner p {
    font-size: 16pt;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 14px 40px;
    background-color: #ef4823;
    color: #ffffff;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14pt;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d63a15;
}

/* Numbers Strip */
.numbers-strip {
    background-color: #1a1a1a;
    padding: 50px 0;
}

.numbers-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.number-item {
    text-align: center;
}

.number-item .number {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 36pt;
    color: #ef4823;
    display: block;
}

.number-item .number-label {
    font-size: 14pt;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    display: block;
}

/* Introduction Section */
.intro-section {
    padding: 60px 0;
}

.intro-text-box {
    background-color: #ef4823;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 50px;
    border-radius: 8px;
}

.intro-text {
    font-size: 16pt;
    line-height: 1.8;
    text-align: left;
    color: #ffffff;
}

/* Solutions Preview Cards */
.solutions-preview-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.solutions-preview-section .section-heading {
    margin-bottom: 50px;
    color: #333;
}

.section-heading {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 20pt;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.solutions-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.solution-card {
    background-color: #f5f5f5;
    border-radius: 6px;
    padding: 30px 25px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.solution-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.solution-card .card-image {
    width: auto;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    margin-bottom: 16px;
}

.solution-card h3 {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 16pt;
    color: #333;
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 12pt;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
}

.solution-card a {
    color: #ef4823;
    font-weight: 700;
    text-decoration: none;
    font-size: 12pt;
    transition: color 0.3s ease;
}

.solution-card a:hover {
    color: #d63a15;
    text-decoration: underline;
}

/* Image + Text Section */
.image-text-section {
    padding: 60px 0;
}

.image-text-section:nth-child(even) {
    background-color: #f5f5f5;
}

.image-text-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.image-text-reverse .image-text-row {
    flex-direction: row-reverse;
}

.image-col,
.text-col {
    flex: 1;
}

.text-col a {
    display: inline-block;
    margin-top: 16px;
    color: #ef4823;
    font-weight: 700;
    text-decoration: none;
    font-size: 14pt;
    transition: color 0.3s ease;
}

.text-col a:hover {
    text-decoration: underline;
    color: #d63a15;
}
.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.body-text p {
    font-size: 14pt;
    line-height: 1.8;
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.large-quote {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 28pt;
    line-height: 1.5;
    color: #ef4823;
    max-width: 900px;
    margin: 0 auto;
    border: none;
    quotes: none;
}

/* Trusted By Strip */
.trusted-by-strip {
    background-color: #f5f5f5;
    padding: 40px 0;
    text-align: center;
}

.trusted-by-strip h2 {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 12pt;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.client-logos-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.client-logo-placeholder {
    width: 150px;
    height: 60px;
    background-color: #d8d8d8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-placeholder span {
    font-size: 9pt;
    color: #999;
}

/* Carousel */
.carousel-section {
    padding: 80px 0 0;
    background-color: #f5f5f5;
}

.page-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
    background-color: #1a1a1a;
    border-bottom: 3px solid #ef4823;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    min-height: 300px;
    padding: 50px 70px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.carousel-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.carousel-slide-content {
    position: relative;
    z-index: 2;
}

.carousel-slide h3 {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 24pt;
    color: #ffffff;
    margin-bottom: 12px;
}

.carousel-slide p {
    font-size: 14pt;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

.carousel-slide a {
    display: inline-block;
    margin-top: 16px;
    color: #ef4823;
    font-weight: 700;
    text-decoration: none;
    font-size: 14pt;
    transition: color 0.3s ease;
}

.carousel-slide a:hover {
    text-decoration: underline;
    color: #d63a15;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(239, 72, 35, 0.85);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18pt;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    line-height: 1;
}

.carousel-btn:hover {
    background-color: rgba(214, 58, 21, 0.95);
}
.carousel-prev {
    left: 10px;
}
.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 14px 0;
    background-color: #222;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #555;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background-color: #ef4823;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 24pt;
    color: #333;
    margin-bottom: 20px;
}

/* ===================================
   SOLUTIONS PAGE STYLES
   =================================== */
.solution-section {
    padding: 80px 0;
}
.solution-alt {
    background-color: #f5f5f5;
}
.solution-row {
    display: flex;
    align-items: center;
    gap: 60px;
}
.solution-image {
    flex-shrink: 0;
    width: 400px;
    height: 100%;
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.solution-text {
    flex: 1;
}

.solution-text h2 {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 20pt;
    color: #333;
    margin-bottom: 20px;
}

.solution-text p {
    font-size: 14pt;
    line-height: 1.8;
}

/* ===================================
   MISSION PAGE STYLES
   =================================== */
.pillars-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #333;
}
.pillars-section .section-heading {
    color: #333;
}

.pillars-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.pillar-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    text-align: center;
}

.pillar-image-rect {
    width: 100%;
    height: 250px;
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    margin-bottom: 20px;
}

.pillar-item h2 {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 20pt;
    color: #333;
    margin-bottom: 20px;
}

.pillar-text {
    font-size: 14pt;
    line-height: 1.8;
    color: #333;
}

.pillars-spacer {
    height: 40px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: left;
}
.values-section .section-heading {
    color: #ef4823;
}

.values-content {
    max-width: 1000px;
    margin: 0 auto;
}

.values-image-text-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.values-text-col,
.values-image-col {
    flex: 1;
}
.values-image-col .image-placeholder {
    height: 350px;
}

.values-text {
    font-size: 14pt;
    line-height: 1.8;
    color: #333;
}
.values-text strong {
    font-weight: 700;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.contact-top-section {
    padding: 80px 0;
}
.contact-top-row {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.contact-logo-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-page-logo {
    max-width: 400px;
    height: auto;
}

.contact-form-col {
    flex: 1;
}

.contact-form-col h2 {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 20pt;
    color: #333;
    margin-bottom: 30px;
}

.contact-form-col form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    align-items: flex-start;
}

.contact-form-col .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-col label {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14pt;
    color: #333;
    margin-bottom: 5px;
}

.contact-form-col input,
.contact-form-col textarea {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14pt;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-col input:focus,
.contact-form-col textarea:focus {
    outline: none;
    border-color: #ef4823;
}
.contact-form-col textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-col button {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14pt;
    padding: 14px 40px;
    background-color: #ef4823;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-col button:hover {
    background-color: #d63a15;
}

.contact-bottom-section {
    padding: 60px 0 80px;
    background-color: #f5f5f5;
}
.contact-bottom-row {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.contact-details-block {
    flex: 1;
}

.contact-details-block h2 {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 20pt;
    color: #333;
    margin-bottom: 20px;
}

.contact-details {
    font-style: normal;
    font-size: 14pt;
    line-height: 2;
}
.contact-details p {
    margin-bottom: 15px;
}
.contact-details a {
    color: #ef4823;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-details a:hover {
    color: #d63a15;
    text-decoration: underline;
}

.ceo-details-block {
    flex: 1;
}
.ceo-details-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.ceo-photo {
    flex-shrink: 0;
    width: 200px;
}
.ceo-photo img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.ceo-info h2 {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14pt;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ceo-info h3 {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 20pt;
    color: #333;
    margin-bottom: 30px;
}

.leader-contact {
    font-size: 14pt;
    line-height: 2;
    color: #333;
}
.leader-contact strong {
    font-weight: 700;
    color: #666;
}
.leader-contact a {
    color: #ef4823;
    text-decoration: none;
    transition: color 0.3s ease;
}
.leader-contact a:hover {
    color: #d63a15;
    text-decoration: underline;
}

.monitoring-notice {
    font-size: 10pt;
    color: #999;
    font-style: italic;
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #d8d8d8;
}

/* ===================================
   SEARCH RESULTS PAGE
   =================================== */
.search-results-page {
    padding: 120px 0;
    text-align: center;
}

.search-page-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 40px;
}

.search-sorry-heading {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 24pt;
    color: #333;
    margin-bottom: 16px;
}

.search-sorry-sub {
    font-size: 14pt;
    color: #666;
}
.search-sorry-sub a {
    color: #ef4823;
    text-decoration: none;
    transition: color 0.3s ease;
}
.search-sorry-sub a:hover {
    text-decoration: underline;
}

/* ===================================
   ERROR PAGE STYLES
   =================================== */
.error-section {
    padding: 120px 0;
    text-align: center;
}

.error-code {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 80pt;
    color: #ef4823;
    margin-bottom: 20px;
}

.error-message {
    font-size: 14pt;
    color: #666;
    margin-bottom: 30px;
}

.error-link {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14pt;
    color: #ef4823;
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-link:hover {
    color: #d63a15;
    text-decoration: underline;
}

/* ===================================
   LEGAL PAGE STYLES
   =================================== */
.legal-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.legal-section .container {
    max-width: 800px;
}

.legal-heading {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 28pt;
    color: #ef4823;
    margin-bottom: 10px;
}

.legal-last-updated {
    font-size: 10pt;
    color: #999;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section h2 {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 18pt;
    color: #333;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-section p {
    font-size: 14pt;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}
.legal-section ul {
    margin: 0 0 15px 20px;
    font-size: 14pt;
    line-height: 1.8;
    color: #333;
}
.legal-section ul li {
    margin-bottom: 8px;
}
.legal-section a {
    color: #ef4823;
    text-decoration: none;
    transition: color 0.3s ease;
}
.legal-section a:hover {
    color: #d63a15;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14pt;
}
.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #d8d8d8;
}
.cookie-table th {
    background-color: #ef4823;
    color: #ffffff;
    font-weight: 700;
    font-size: 12pt;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cookie-table td {
    color: #333;
}
.cookie-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* ===================================
   FOOTER STYLES
   =================================== */
.site-footer {
    background-color: #ef4823;
    padding: 40px 0 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.footer-logo-block {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-top: 0;
}
.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-info {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 10pt;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.footer-contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.footer-contact-info a:hover {
    opacity: 0.8;
}

.footer-legal-notes {
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 10pt;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.footer-legal-notes a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.footer-legal-notes a:hover {
    opacity: 0.8;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 992px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 20px 40px;
    }
    .site-header {
        height: auto;
    }
    .main-nav ul {
        margin-top: 20px;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .image-text-row,
    .solution-row,
    .contact-top-row,
    .contact-bottom-row,
    .values-image-text-row {
        flex-direction: column;
        gap: 40px;
    }
    .contact-logo-col {
        justify-content: flex-start;
    }
    .contact-page-logo {
        max-width: 250px;
    }
    .pillars-grid {
        gap: 40px;
    }
    .footer-inner {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    .numbers-grid {
        gap: 40px;
    }
    .solutions-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .client-logos-grid {
        gap: 20px;
    }
    .hero-banner h1 {
        font-size: 28pt;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 12pt;
    }
    .container {
        padding: 0 20px;
    }
    .header-inner {
        padding: 15px 20px;
    }
    .main-nav ul {
        gap: 15px;
    }
    .hero-banner {
        min-height: 300px;
    }
    .hero-banner h1 {
        font-size: 24pt;
    }
    .pillars-grid {
        flex-direction: column;
        align-items: center;
    }
    .pillar-item {
        max-width: 100%;
    }
    .solutions-card-grid {
        grid-template-columns: 1fr;
    }
    .numbers-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .search-pill-wrap.open {
        width: 220px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 11pt;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .image-placeholder {
        height: 250px;
    }
    .hero-logo {
        max-width: 400px;
    }
}
