/* ============================================
   SIEYUAN LIMITED — Industrial B2B Website
   Style: corporate industrial / sober B2B
   ============================================ */

:root {
    --color-primary: #0a2540;       /* Deep industrial navy */
    --color-primary-dark: #061829;
    --color-accent: #c8a45a;        /* Brushed gold accent */
    --color-accent-dark: #a8843a;
    --color-text: #1a2332;
    --color-text-secondary: #4a5568;
    --color-text-muted: #718096;
    --color-bg: #ffffff;
    --color-bg-light: #f7f9fc;
    --color-bg-dark: #0a2540;
    --color-border: #e2e8f0;
    --color-border-strong: #cbd5e0;
    
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    --max-width: 1280px;
    --content-width: 1080px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* === Typography === */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent);
}

/* === Container === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* === Top Bar === */
.topbar {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.topbar-info {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-info span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar-badge {
    background: rgba(200, 164, 90, 0.15);
    color: var(--color-accent);
    padding: 0.2rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(200, 164, 90, 0.3);
}

/* === Header === */
.header {
    background: white;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
}

.logo-mark::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: var(--color-accent);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.logo-suffix {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.5rem 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a.active {
    color: var(--color-primary);
}

/* === Mobile menu === */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* === Hero === */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(200, 164, 90, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(200, 164, 90, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(200, 164, 90, 0.3);
}

.hero h1 {
    color: white;
    font-weight: 300;
    max-width: 850px;
    margin-bottom: 1.5rem;
}

.hero h1 strong {
    font-weight: 500;
    color: var(--color-accent);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 900px;
}

.stat {
    color: rgba(255, 255, 255, 0.85);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* === Page Header (smaller hero) === */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: white;
    font-weight: 300;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-header p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    font-size: 1.1rem;
}

.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

/* === Section === */
.section {
    padding: 6rem 0;
}

.section-light {
    background: var(--color-bg-light);
}

.section-dark {
    background: var(--color-primary);
    color: white;
}

.section-dark h2,
.section-dark h3 {
    color: white;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.75);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-intro {
    max-width: 700px;
    color: var(--color-text-secondary);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

/* === Cards Grid === */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
    background: white;
    border: 1px solid var(--color-border);
    padding: 2.5rem 2rem;
    transition: all var(--transition);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.08);
    border-color: var(--color-border-strong);
}

.card:hover::before {
    width: 60px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
}

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === Product Grid === */
.product-card {
    background: white;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 16px 32px rgba(10, 37, 64, 0.1);
}

.product-image {
    aspect-ratio: 4 / 3;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.product-image svg {
    width: 70%;
    height: 70%;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-bottom: 0.7rem;
    font-weight: 500;
}

.product-desc {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    flex: 1;
}

.product-specs {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.product-spec {
    font-size: 0.75rem;
    background: var(--color-bg-light);
    color: var(--color-primary);
    padding: 0.3rem 0.7rem;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

/* === Two Column === */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.two-col-feature {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 900px) {
    .two-col,
    .two-col-feature {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* === Info Block === */
.info-block {
    background: var(--color-bg-light);
    padding: 2.5rem;
    border-left: 3px solid var(--color-accent);
}

.info-block h3 {
    margin-bottom: 1rem;
}

.info-block dl {
    margin-top: 1.5rem;
}

.info-block dt {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 1.25rem;
}

.info-block dd {
    color: var(--color-primary);
    font-weight: 500;
    margin-top: 0.25rem;
    font-size: 1.05rem;
}

.info-block dd a {
    color: var(--color-primary);
}

.info-block dd a:hover {
    color: var(--color-accent);
}

/* === Image Block === */
.image-block {
    aspect-ratio: 4/5;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.image-block svg {
    width: 80%;
    height: 80%;
}

.image-block::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border: 1px solid var(--color-border);
    pointer-events: none;
}

/* === Industries Strip === */
.industries-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
}

.industry-cell {
    background: white;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background var(--transition);
}

.industry-cell:hover {
    background: var(--color-bg-light);
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.industry-name {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* === CTA Section === */
.cta-block {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 164, 90, 0.1) 0%, transparent 70%);
}

.cta-block-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.cta-block h2 {
    color: white;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-block p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid;
    cursor: pointer;
    background: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

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

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

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

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

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

/* === Footer === */
.footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: white;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-col p,
.footer-col li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

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

.footer-logo {
    color: white;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 1rem;
    font-family: var(--font-mono);
}

.footer-legal span::before {
    content: '·';
    margin-right: 1rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal span:first-child::before {
    display: none;
}

/* === Mobile === */
@media (max-width: 900px) {
    .header-inner {
        padding: 1rem 1.5rem;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .topbar-info {
        gap: 1rem;
        font-size: 0.7rem;
    }
    
    .container,
    .content {
        padding: 0 1.25rem;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .page-header {
        padding: 3rem 0 2.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .cta-block {
        padding: 3rem 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out backwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* === PHOTO STYLES === */
.photo-block {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: var(--color-bg-light);
}

.photo-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-block:hover img {
    transform: scale(1.04);
}

.photo-tall {
    aspect-ratio: 3/4;
}

.photo-wide {
    aspect-ratio: 16/9;
}

.photo-square {
    aspect-ratio: 1/1;
}

/* Photo with caption overlay */
.photo-overlay {
    position: relative;
    overflow: hidden;
}

.photo-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.85) 0%, transparent 50%);
    pointer-events: none;
}

.photo-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: white;
    z-index: 1;
}

.photo-caption-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.4rem;
}

.photo-caption h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Photo gallery grid */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.photo-gallery > * {
    grid-column: span 4;
}

.photo-gallery .span-6 { grid-column: span 6; }
.photo-gallery .span-8 { grid-column: span 8; }
.photo-gallery .span-12 { grid-column: span 12; }

@media (max-width: 900px) {
    .photo-gallery {
        grid-template-columns: 1fr 1fr;
    }
    .photo-gallery > *,
    .photo-gallery .span-6,
    .photo-gallery .span-8 { 
        grid-column: span 1; 
    }
    .photo-gallery .span-12 { grid-column: span 2; }
}

@media (max-width: 600px) {
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    .photo-gallery > *,
    .photo-gallery .span-6,
    .photo-gallery .span-8,
    .photo-gallery .span-12 { 
        grid-column: span 1; 
    }
}

/* Hero photo background variant */
.hero-photo {
    position: relative;
    background: var(--color-primary-dark);
    overflow: hidden;
}

.hero-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 0;
}

.hero-photo .hero-inner,
.hero-photo .page-header-inner {
    position: relative;
    z-index: 2;
}

/* Trust strip with photo */
.trust-strip {
    padding: 4rem 0;
    background: var(--color-primary-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.trust-strip-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.trust-strip-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.trust-strip h2 {
    color: white;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.trust-strip p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Form */
.contact-form {
    background: white;
    padding: 3rem;
    border: 1px solid var(--color-border);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--color-border);
    background: white;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* === LOGO IMAGE STYLES === */
.logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.logo-img-suffix {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 4px;
    text-align: center;
}

.logo-real {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    gap: 0;
}

.footer-logo-img {
    height: 38px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
}
