/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --brand:       #B5472A;
    --brand-dark:  #8F3620;
    --brand-light: #F8EDE9;
    --navy:        #1B1B17;
    --navy-2:      #2A2A26;
    --gray-700:    #3D3D3D;
    --gray-500:    #6B6B6B;
    --gray-300:    #C8C8C8;
    --gray-200:    #E8E8E8;
    --gray-100:    #F5F5F5;
    --white:       #FFFFFF;
    --radius:      4px;
    --shadow-sm:   0 1px 4px rgba(0,0,0,.08);
    --shadow-md:   0 4px 20px rgba(0,0,0,.1);
    --transition:  .15s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 15px;
}

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: var(--navy); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 700; line-height: 1.15; letter-spacing: -.01em; color: var(--navy); }
h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); }
p  { margin-bottom: .75rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600; font-size: .88rem;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer; border: 1.5px solid transparent;
    white-space: nowrap; letter-spacing: .01em;
}
.btn-brand  { background: var(--brand); color: var(--white); border-color: var(--brand); }
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand-light); }
.btn-navy   { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-2); color: var(--white); }
.btn-ghost  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-sm  { padding: 8px 16px; font-size: .82rem; }
.btn-lg  { padding: 14px 32px; font-size: .95rem; }
.btn-full { width: 100%; justify-content: center; display: flex; }

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar, .announcement-bar {
    background: var(--navy); color: rgba(255,255,255,.75);
    text-align: center; padding: 8px 24px;
    font-size: .78rem; font-weight: 600; letter-spacing: .02em;
}
.announce-bar a, .announcement-bar a { color: var(--brand); margin-left: 8px; font-weight: 700; }

/* ===== HEADER ===== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo-link { display: flex; align-items: center; }
.logo-img, .site-logo { height: 32px; width: auto; }

.primary-nav { display: flex; align-items: center; }
.nav-menu, .nav-list { display: flex; gap: 2px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-menu li, .nav-list li { display: flex; align-items: center; }
.nav-menu a, .nav-list a {
    display: flex; align-items: center;
    padding: 7px 13px; border-radius: var(--radius);
    font-size: .82rem; font-weight: 600; letter-spacing: .01em;
    color: var(--gray-500); transition: var(--transition);
    line-height: 1;
}
.nav-menu a:hover, .nav-menu .current a,
.nav-list a:hover, .nav-list .current-menu-item a { color: var(--navy); background: var(--gray-100); }
.nav-cta { margin-left: 10px; }

.lang-switcher {
    display: flex; align-items: center; gap: 2px; list-style: none;
    margin-left: 14px; padding-left: 14px; border-left: 1px solid var(--gray-200);
}
.lang-switcher li a, .lang-switcher li span {
    display: block; padding: 4px 7px;
    font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
    color: var(--gray-500); border-radius: var(--radius); transition: var(--transition);
}
.lang-switcher li a:hover { color: var(--brand); background: var(--brand-light); }
.lang-switcher li.current-lang a, .lang-switcher li.current-lang span { color: var(--brand); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
    background: var(--navy);
    background-size: cover;
    background-position: center;
    padding: 88px 0 80px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(27,27,23,.55);
    z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; position: relative; z-index: 1;
}
.hero-grid > div:first-child {
    background: rgba(27,27,23,.82);
    border-radius: 6px;
    padding: 40px 36px;
}

/* Clean hero — no grid */
.hero-clean {
    max-width: 680px;
    padding: 44px 40px;
    background: rgba(27,27,23,.84);
    border-radius: 6px;
}
.hero-clean h1 { margin-bottom: 20px; }

/* Who we are */
.who-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.who-grid h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.who-stats { display: flex; gap: 32px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--gray-200); flex-wrap: wrap; }
.who-stat { display: flex; flex-direction: column; }
.who-stat strong { font-size: 1.8rem; font-weight: 800; color: var(--brand); line-height: 1; }
.who-stat span { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--gray-500); margin-top: 4px; }

/* Pillars */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px 24px; }
.pillar-icon { font-size: 1.6rem; margin-bottom: 14px; }
.pillar h3 { font-size: .97rem; margin-bottom: 10px; color: var(--navy); }
.pillar p { font-size: .86rem; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* Why grid */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-item { border-top: 2px solid var(--brand); padding-top: 20px; }
.why-num { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); margin-bottom: 12px; }
.why-item h3 { font-size: .97rem; margin-bottom: 10px; color: var(--navy); }
.why-item p { font-size: .86rem; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* Brands grid */
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.brand-card {
    display: flex; flex-direction: column;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 28px 24px;
    text-decoration: none; color: inherit;
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.brand-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--brand);
    transform: scaleX(0); transform-origin: left;
    transition: transform .2s;
}
.brand-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.brand-card:hover::before { transform: scaleX(1); }
.brand-card-name { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; letter-spacing: -.01em; }
.brand-card p { font-size: .86rem; color: var(--gray-500); line-height: 1.6; margin: 0 0 16px; flex: 1; }
.brand-card-territory { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand); margin-bottom: 16px; display: block; }
.brand-card-link { font-size: .82rem; font-weight: 700; color: var(--navy); }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
    color: var(--brand); margin-bottom: 18px;
    background: rgba(181,71,42,.15); border: 1px solid rgba(181,71,42,.25);
    padding: 5px 12px; border-radius: 3px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; font-weight: 800; }
.hero h1 strong { color: var(--brand); font-weight: inherit; }
.hero-sub { color: rgba(255,255,255,.6); font-size: .97rem; max-width: 440px; margin-bottom: 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.5); }
.hero-trust-item span { color: var(--brand); font-size: 1rem; }

.hero-card {
    background: rgba(27,27,23,.88);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px; overflow: hidden;
    backdrop-filter: blur(6px);
}
.hero-card-header {
    background: var(--brand);
    padding: 18px 22px;
}
.hero-card-header p { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.7); margin-bottom: 3px; }
.hero-card-header h3 { font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.hero-card-list { padding: 6px 0; }
.hero-card-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 22px; border-bottom: 1px solid rgba(255,255,255,.06);
    cursor: pointer; transition: var(--transition);
}
.hero-card-item:last-child { border: none; }
.hero-card-item:hover { background: rgba(255,255,255,.04); }
.hci-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: rgba(181,71,42,.2); border: 1px solid rgba(181,71,42,.3);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem; font-weight: 800; color: var(--brand);
}
.hci-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 1px; }
.hci-text span { font-size: .78rem; color: rgba(255,255,255,.4); }
.hci-arrow { margin-left: auto; color: rgba(255,255,255,.25); font-size: .9rem; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--gray-100); padding: 22px 0; border-bottom: 1px solid var(--gray-200); }
.trust-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--gray-700); }
.trust-icon { color: var(--brand); font-size: 1rem; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section.bg-gray { background: var(--gray-100); }
.section.bg-navy { background: var(--navy); }
.section.bg-brand { background: var(--brand); }

.section-eyebrow {
    display: inline-block;
    font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
    color: var(--brand); margin-bottom: 10px;
}
.section-eyebrow.light { color: rgba(255,255,255,.5); }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header p { color: var(--gray-500); font-size: .95rem; max-width: 520px; margin-top: 10px; line-height: 1.7; }
.section-header.centered p { margin: 10px auto 0; }

/* ===== PRODUCT CARDS ===== */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--gray-200); border: 1px solid var(--gray-200); }
.product-card {
    background: var(--white);
    padding: 36px 32px;
    position: relative; overflow: hidden;
    transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-md); z-index: 1; }
.product-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--brand);
    transform: scaleX(0); transform-origin: left;
    transition: transform .22s ease;
}
.product-card:hover::before { transform: scaleX(1); }
.product-num {
    font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
    color: var(--brand); margin-bottom: 14px;
    display: flex; align-items: center; gap: 6px;
}
.product-num::before { content: ''; display: block; width: 16px; height: 1.5px; background: var(--brand); }
.product-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; letter-spacing: -.01em; }
.product-card .subtitle { color: var(--gray-500); font-size: .82rem; margin-bottom: 14px; font-weight: 600; }
.product-card p { color: var(--gray-700); font-size: .9rem; line-height: 1.65; margin-bottom: 22px; }
.product-card-actions { display: flex; gap: 10px; }

/* ===== SPEC GRID ===== */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0 28px; }
.spec-item { background: var(--gray-100); border-radius: var(--radius); padding: 12px 14px; border-left: 2px solid var(--brand); }
.spec-item dt { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: 3px; }
.spec-item dd { font-size: .92rem; font-weight: 700; color: var(--navy); }

/* ===== FEATURE LIST ===== */
.feature-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 9px 0; border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700); font-size: .88rem;
}
.feature-list li:last-child { border: none; }
.feature-list li::before {
    content: ''; width: 5px; height: 5px; flex-shrink: 0; margin-top: 7px;
    background: var(--brand); border-radius: 50%;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.product-detail.reverse .product-detail-visual { order: 2; }
.product-detail.reverse .product-detail-content { order: 1; }
.product-detail-visual {
    background: var(--gray-100); border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    height: 320px; display: flex; align-items: center; justify-content: center;
}
.product-visual-label { font-size: 5.5rem; font-weight: 800; color: rgba(26,35,50,.07); user-select: none; }
.product-tagline { color: var(--brand); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 16px; }
.product-ctas { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

/* ===== STATS BAND ===== */
.stats-band { background: var(--navy); padding: 52px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 24px 32px; border-right: 1px solid rgba(255,255,255,.07); text-align: center; }
.stat-item:last-child { border: none; }
.stat-num { font-size: 2.6rem; font-weight: 800; color: var(--brand); line-height: 1; margin-bottom: 6px; letter-spacing: -.02em; }
.stat-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.4); }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step-card { position: relative; }
.step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--brand); color: var(--white);
    font-size: .82rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.step-card h3 { font-size: .97rem; margin-bottom: 8px; }
.step-card p  { font-size: .86rem; color: var(--gray-500); line-height: 1.65; margin: 0; }
.step-connector {
    position: absolute; top: 18px; left: calc(100% - 4px);
    width: calc(100% - 28px); height: 1px;
    background: var(--gray-200);
}
.steps-grid .step-card:last-child .step-connector { display: none; }

/* ===== CTA STRIP ===== */
.cta-strip { background: var(--brand); padding: 60px 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip h2 { color: var(--white); }
.cta-strip p  { color: rgba(255,255,255,.8); font-size: .95rem; margin: 8px 0 0; }
.cta-strip-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ===== CONTACT / FORMS ===== */
.contact-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 72px; align-items: start; }
.form-wrap { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.form-wrap h3 { margin-bottom: 22px; font-size: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 10px 13px;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius);
    font-size: .9rem; font-family: inherit; color: var(--navy); background: var(--white);
    transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light);
}
.contact-info-heading { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--gray-200); }
.contact-detail:last-child { border: none; }
.contact-detail-icon { font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.contact-detail dt { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: 2px; }
.contact-detail dd { font-size: .88rem; color: var(--navy); font-weight: 600; line-height: 1.5; }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--navy); padding: 64px 0 72px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 48px; background: var(--white); clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.page-hero.bg-gray::after { background: var(--gray-100); }
.page-hero-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); margin-bottom: 12px; display: block; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.55); font-size: .97rem; max-width: 500px; line-height: 1.7; }
.page-hero-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; }
.footer-logo { height: 28px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .84rem; line-height: 1.65; max-width: 240px; }
.footer-col h4 { color: rgba(255,255,255,.3); font-size: .68rem; letter-spacing: .1em; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.55); font-size: .84rem; padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--brand); }
.footer-social { display: flex; gap: 7px; margin-top: 18px; }
.footer-social a { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 800; color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-social a:hover { border-color: var(--brand); color: var(--brand); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,.2); font-size: .75rem; font-weight: 600; letter-spacing: .03em; margin: 0; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,.2); font-size: .72rem; font-weight: 600; letter-spacing: .03em; transition: color var(--transition); }
.footer-legal a:hover { color: var(--brand); }

.product-territory {
    display: inline-block;
    font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
    color: var(--brand); background: var(--brand-light);
    border: 1px solid rgba(181,71,42,.2);
    padding: 4px 10px; border-radius: 3px;
    margin-bottom: 14px;
}
.feat-list { list-style: none; padding: 0; margin: 12px 0 20px; }
.feat-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 7px 0; border-bottom: 1px solid var(--gray-200);
    font-size: .88rem; color: var(--gray-700); line-height: 1.5;
}
.feat-list li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--brand); flex-shrink: 0; margin-top: 6px;
}
.feat-list li:last-child { border: none; }

/* ===== PRODUCT DETAIL PAGES ===== */
.product-detail-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.product-detail-grid--reverse .product-detail-visual { order: 2; }
.product-detail-visual {
    background: var(--gray-100); border: 1px solid var(--gray-200);
    border-radius: var(--radius); height: 280px;
    display: flex; align-items: center; justify-content: center;
}
.product-detail-label {
    font-size: 1.6rem; font-weight: 800; color: rgba(27,27,23,.1); letter-spacing: -.02em;
}
.product-detail-img {
    width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius);
    display: block;
}
.clients-list {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px;
}
.clients-list span {
    background: var(--gray-100); border: 1px solid var(--gray-200);
    padding: 7px 16px; border-radius: 3px;
    font-size: .82rem; font-weight: 700; color: var(--gray-700);
}

.form-success {
    background: #F0FBF0; border: 1px solid #A8D5A8; border-radius: var(--radius);
    padding: 20px 24px; margin-bottom: 24px;
}
.form-success strong { display: block; color: #2D6A2D; font-size: 1rem; margin-bottom: 4px; }
.form-success p { color: #4A8A4A; font-size: .88rem; margin: 0; }
.form-error {
    background: #FDF0EE; border: 1px solid #E8B4A8; border-radius: var(--radius);
    padding: 14px 18px; margin-bottom: 18px;
    color: var(--brand); font-size: .88rem; font-weight: 600;
}
.contact-info h3 { font-size: 1.1rem; margin-bottom: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--gray-200); }
.contact-detail:last-child { border: none; }
.contact-detail-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-detail dl { margin: 0; }
.contact-detail dt { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: 2px; }
.contact-detail dd { font-size: .9rem; font-weight: 600; color: var(--navy); line-height: 1.5; margin: 0; }

/* ===== INDEX / BLOG ===== */
.posts-grid { display: grid; gap: 24px; }
.post-card { background: var(--white); border: 1px solid var(--gray-200); padding: 28px; border-radius: var(--radius); }
.post-date { font-size: .75rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 8px; }
.post-title { font-size: 1.1rem; margin-bottom: 8px; }
.post-excerpt { font-size: .88rem; color: var(--gray-500); margin-bottom: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .who-grid { grid-template-columns: 1fr; gap: 32px; }
    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .brands-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .product-detail { grid-template-columns: 1fr; gap: 36px; }
    .product-detail.reverse .product-detail-visual { order: 0; }
    .product-detail.reverse .product-detail-content { order: 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 44px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step-connector { display: none; }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .form-row { grid-template-columns: 1fr; }
    .spec-grid { grid-template-columns: 1fr; }
    .cta-strip-inner { flex-direction: column; }
    .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .nav-menu, .nav-list, .nav-cta, .lang-switcher { display: none; }
    .nav-toggle { display: flex; }
    .primary-nav.open { position: fixed; inset: 68px 0 0 0; background: var(--white); flex-direction: column; align-items: flex-start; padding: 16px; border-top: 1px solid var(--gray-200); }
    .primary-nav.open .nav-menu, .primary-nav.open .nav-list { display: flex; flex-direction: column; width: 100%; }
    .primary-nav.open .nav-menu a, .primary-nav.open .nav-list a { font-size: 1rem; padding: 12px 16px; }
    .primary-nav.open .nav-cta { display: flex; width: 100%; margin: 12px 0 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
