/* Salt Creek Trust - Apple-inspired light aesthetic */
:root {
    --sct-dark-teal: #1a3a3a;
    --sct-teal: #2c5a6a;
    --sct-blue: #4a7c8c;
    --sct-river-blue: #5a9aaa;
    --sct-brown: #8b7355;
    --sct-cream: #f5f0e8;
    --sct-white: #ffffff;
    --sct-dark: #0f2525;
    --apple-gray: #f5f5f7;
    --apple-gray-dark: #e8e8ed;
    --apple-text: #1d1d1f;
    --apple-text-secondary: #6e6e73;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
    color: var(--apple-text);
    line-height: 1.6;
    font-size: 17px;
    overflow-x: hidden;
    background: var(--sct-white);
}

h1, h2, h3, h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    font-weight: 600;
    color: var(--apple-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--sct-blue);
    color: var(--sct-white);
    border-color: var(--sct-blue);
}

.btn-primary:hover {
    background: var(--sct-teal);
    border-color: var(--sct-teal);
    color: var(--sct-white);
}

.btn-outline {
    background: transparent;
    color: var(--sct-blue);
    border-color: var(--sct-blue);
}

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

.btn-hero {
    background: var(--sct-brown);
    color: var(--sct-white);
    border-color: var(--sct-brown);
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-hero:hover {
    background: #7a6348;
    border-color: #7a6348;
    color: var(--sct-white);
}

/* Header - Apple-style light nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar {
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    height: 48px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--sct-teal) 0%, var(--sct-blue) 50%, var(--sct-river-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    color: var(--apple-text);
    text-decoration: none;
    padding: 8px 14px;
    font-weight: 400;
    font-size: 14px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--sct-blue);
}

.nav-menu a.btn-outline:hover,
.nav-menu a.btn-primary:hover {
    color: var(--sct-white);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(251, 251, 253, 0.98);
    backdrop-filter: saturate(180%) blur(20px);
    min-width: 220px;
    padding: 12px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    color: var(--apple-text);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--apple-text);
}

/* Hero - Brighter, Apple-style */
.hero {
    position: relative;
    min-height: 560px;
    margin-top: 70px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.85) 100%);
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    text-align: center;
    padding: 60px 24px;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--apple-text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.9), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.hero-content p {
    color: #1d1d1f;
    font-size: 1.25rem;
    margin-bottom: 28px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--sct-blue);
    transform: scale(1.2);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--apple-text);
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow);
}

.hero-arrow:hover {
    background: var(--sct-white);
    box-shadow: var(--shadow-hover);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

/* Section Banners - Full-width background images */
.section-banner {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.section-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.quote-section .section-banner::after {
    background: rgba(255, 255, 255, 0.6);
}

.cta-section .section-banner::after {
    background: rgba(255, 255, 255, 0.5);
}

.testimonials .section-banner::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(245, 245, 247, 0.95) 100%);
}

.quote-section .section-banner,
.cta-section .section-banner,
.testimonials-banner {
    height: 200px;
}

/* About */
.about {
    padding: 0 0 80px;
    background: var(--sct-white);
}

.about .section-banner {
    margin-bottom: 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.about-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.about-text {
    background: var(--sct-white);
    padding: 24px 0;
}

.about h2 {
    font-size: 2.5rem;
    color: var(--apple-text);
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.3rem;
    color: var(--sct-teal);
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.5;
}

.about p {
    margin-bottom: 20px;
    color: var(--apple-text-secondary);
    font-size: 17px;
}

/* Products */
.products {
    padding: 80px 0;
    background: var(--apple-gray);
}

.products h2 {
    font-size: 2.5rem;
    color: var(--apple-text);
    margin-bottom: 48px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--sct-white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 24px 24px 0;
}

.product-card p {
    padding: 12px 24px 20px;
}

.product-card h3 {
    font-size: 1.4rem;
    color: var(--apple-text);
    margin-bottom: 14px;
}

.product-card p {
    margin-bottom: 20px;
    color: var(--apple-text-secondary);
    font-size: 1rem;
}

.product-link {
    color: var(--sct-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin: 0 24px 24px;
    display: inline-block;
}

.product-link:hover {
    color: var(--sct-teal);
}

/* Quote Section */
.quote-section {
    padding: 0 0 80px;
    background: var(--apple-gray);
    position: relative;
}

.quote-section .container {
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

/* Prospect Form - unified contact/quote form */
.prospect-form {
    background: var(--sct-white);
    padding: 40px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
    max-width: 600px;
    width: 100%;
    margin: 0 auto 24px;
    overflow: hidden;
    box-sizing: border-box;
}

.prospect-form h3 {
    margin-bottom: 8px;
    color: var(--apple-text);
    font-size: 1.75rem;
}

.form-intro {
    color: var(--apple-text-secondary);
    margin-bottom: 24px;
    font-size: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.form-grid input {
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.form-grid input:focus {
    outline: none;
    border-color: var(--sct-blue);
}

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

.form-contact-method {
    margin-bottom: 24px;
}

.products-label {
    display: block;
    font-weight: 600;
    color: var(--apple-text);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.products-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--apple-text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--sct-blue);
}

/* CTA inline form */
.prospect-form-inline {
    margin-top: 24px;
}

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

.prospect-form-inline .products-checkboxes {
    gap: 8px 20px;
}

.prospect-form-inline .form-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

/* Footer form */
.footer-form {
    max-width: 320px;
}

.footer-form p {
    margin-bottom: 16px;
    color: var(--apple-text);
}

.prospect-form-footer {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    margin: 0;
}

.prospect-form-footer input,
.prospect-form-footer textarea {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
}

.prospect-form-footer textarea {
    resize: vertical;
    min-height: 80px;
}

.form-products-footer .products-checkboxes {
    flex-direction: column;
    gap: 8px;
}

.form-products-footer .products-label {
    margin-bottom: 8px;
}

.form-contact-method-footer {
    margin-bottom: 16px;
}

.quote-disclaimer {
    font-size: 0.9rem;
    color: var(--apple-text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.disclaimer-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.5em;
    color: var(--apple-text);
}

/* CTA Section */
.cta-section {
    padding: 0 0 80px;
    color: var(--apple-text);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(245, 245, 247, 0.95) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--apple-text);
}

.cta-subtitle {
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1.15rem;
    color: var(--apple-text-secondary);
}

.cta-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--apple-text-secondary);
}

.cta-content .btn-hero {
    background: var(--sct-blue);
    border-color: var(--sct-blue);
}

.cta-content .btn-hero:hover {
    background: var(--sct-teal);
    border-color: var(--sct-teal);
}

/* Careers */
.careers {
    padding: 0 0 80px;
    background: var(--sct-white);
}

.careers-image {
    width: 100%;
    max-width: 800px;
    margin: -60px auto 40px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
}

.careers-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.careers h2 {
    font-size: 2.5rem;
    color: var(--apple-text);
    margin-bottom: 24px;
}

.careers p {
    margin-bottom: 32px;
    max-width: 800px;
    color: var(--apple-text-secondary);
    font-size: 17px;
}

.open-positions {
    background: var(--apple-gray);
    padding: 32px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.open-positions h3 {
    font-size: 1.5rem;
    color: var(--apple-text);
    margin-bottom: 16px;
}

.no-positions {
    color: var(--apple-text-secondary);
    font-size: 17px;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 0 0 80px;
    background: var(--sct-white);
    position: relative;
}

.testimonials .section-banner {
    margin-bottom: 0;
}

.testimonials .container {
    position: relative;
    z-index: 2;
    margin-top: -80px;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: var(--apple-text);
    margin-bottom: 48px;
    text-align: center;
}

.testimonial-slider {
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--apple-gray);
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.testimonial-card blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--apple-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--apple-text-secondary);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.testimonial-prev,
.testimonial-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--sct-white);
    color: var(--apple-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--sct-blue);
    color: var(--sct-white);
    border-color: var(--sct-blue);
}

/* Service Pages */
.service-hero {
    position: relative;
    min-height: 320px;
    margin-top: 70px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-size: 2.5rem;
    color: var(--apple-text);
}

.service-content {
    padding: 80px 0;
    background: var(--sct-white);
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.service-content p {
    margin-bottom: 20px;
    color: var(--apple-text-secondary);
    max-width: 720px;
}

.service-list {
    margin: 24px 0 32px;
    padding-left: 24px;
    color: var(--apple-text-secondary);
}

.service-list li {
    margin-bottom: 12px;
}

.btn-service-cta {
    display: inline-block;
    margin: 24px 0 40px;
}

/* Partners */
.partners {
    padding: 60px 0;
    background: var(--apple-gray);
    color: var(--apple-text);
    text-align: center;
}

.partners h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--apple-text);
}

.partners-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--apple-text-secondary);
}

/* News */
.news {
    padding: 80px 0;
    background: var(--sct-white);
}

.news h2 {
    font-size: 2.5rem;
    color: var(--apple-text);
    margin-bottom: 48px;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.news-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    transition: var(--transition);
    overflow: hidden;
    background: var(--sct-white);
}

.news-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-card .news-date,
.news-card .news-source,
.news-card h3,
.news-card .news-link {
    padding: 0 24px;
}

.news-card .news-date {
    padding-top: 20px;
}

.news-card:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-hover);
}

.news-date {
    font-size: 0.85rem;
    color: var(--sct-blue);
    margin-bottom: 4px;
}

.news-source {
    font-size: 0.95rem;
    color: var(--sct-teal);
    margin-bottom: 12px;
}

.news-card h3 {
    font-size: 1.2rem;
    color: var(--apple-text);
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-link {
    color: var(--sct-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    padding: 0 24px 20px;
}

.news-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--apple-gray);
    color: var(--apple-text);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand .logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--sct-teal) 0%, var(--sct-blue) 50%, var(--sct-river-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--apple-text-secondary);
    font-size: 0.95rem;
}

.footer-contact a,
.footer-links a {
    color: var(--sct-blue);
    text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover {
    text-decoration: underline;
}

.footer-contact p,
.footer-links p {
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    color: var(--apple-text-secondary);
}

.footer-legal a {
    color: var(--sct-blue);
    text-decoration: none;
    margin-left: 24px;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(251, 251, 253, 0.98);
        backdrop-filter: saturate(180%) blur(20px);
        padding: 24px;
        box-shadow: var(--shadow-hover);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .about-inner {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image img {
        height: 280px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

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

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

    .prospect-form {
        padding: 24px;
    }

    .careers-image img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .logo-icon {
        height: 40px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero {
        margin-top: 80px;
        min-height: 420px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.75rem;
    }

    .section-banner {
        height: 200px;
    }

    .quote-section .section-banner,
    .cta-section .section-banner,
    .testimonials-banner {
        height: 150px;
    }

    .quote-section .container {
        margin-top: -40px;
    }

    .products-checkboxes {
        flex-direction: column;
    }

    .product-image {
        height: 140px;
    }

    .careers-image {
        margin-top: -40px;
    }

    .careers-image img {
        height: 220px;
    }

    .testimonials .container {
        margin-top: -50px;
    }
}
