/* ============================================
   minify GmbH — Brand Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

:root {
    --primary:       #111827;
    --secondary:     #1F2937;
    --accent:        #E11D2E;
    --accent-hover:  #BE1725;
    --bg:            #F8FAFC;
    --surface:       #FFFFFF;
    --text:          #111827;
    --text-secondary:#6B7280;
    --border:        #E5E7EB;
    --shadow-sm:     0 1px 2px rgba(0,0,0,0.05);
    --shadow-md:     0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg:     0 8px 24px rgba(0,0,0,0.08);
    --radius:        6px;
    --radius-lg:     10px;
    --container:     1120px;
    --transition:    0.2s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
}

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

img {
    display: block;
    max-width: 100%;
}


/* ============================================
   Header
   ============================================ */

header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-claim {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    line-height: 1.4;
    border-left: 1px solid var(--border);
    padding-left: 16px;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
}

.logo-claim .typewriter-line {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
}

.logo-claim .typewriter-line:first-child {
    animation: typewriter 1.2s steps(24) 0.3s forwards;
}

.logo-claim .typewriter-line:last-child {
    animation: typewriter 1s steps(18) 1.8s forwards;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}

nav a:hover {
    color: var(--text);
    background: var(--bg);
}

nav a.active {
    color: var(--accent);
    background: transparent;
    position: relative;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}


/* Language Switcher */

.lang-switch {
    display: flex;
    gap: 2px;
    align-items: center;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--border);
}

.lang-switch a {
    font-size: 1.15rem;
    line-height: 1;
    padding: 4px 4px;
    border-radius: var(--radius);
    border-bottom: none;
    opacity: 0.5;
    transition: opacity var(--transition), background var(--transition);
}

.lang-switch a::after {
    display: none;
}

.lang-switch a:hover {
    opacity: 1;
    background: var(--bg);
}

.lang-switch a.active-lang {
    opacity: 1;
    background: transparent;
}


/* Hamburger */

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 10px;
    transition: border-color var(--transition);
}

.menu-toggle:hover {
    border-color: var(--text-secondary);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    margin: 4px 0;
    border-radius: 1px;
    transition: var(--transition);
}


/* ============================================
   Hero
   ============================================ */

.hero {
    background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 50%, #162033 100%);
    color: var(--surface);
    padding: 120px 32px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(225,29,46,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto;
}

.hero-brands {
    margin-top: 24px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
}

.hero-brands strong {
    color: rgba(255,255,255,0.7);
}

.hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(225,29,46,0.25);
}

.btn-outline {
    background: transparent;
    color: var(--surface);
    border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}

/* Hero inline trust */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.01em;
}

.hero-trust-item i {
    width: 15px;
    height: 15px;
    stroke-width: 2;
    color: rgba(225,29,46,0.7);
}

/* Mid-page CTA */
.mid-cta {
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px 32px;
    text-align: center;
}

.mid-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.mid-cta p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.mid-cta .btn-dark {
    display: inline-flex;
}

/* Homepage brand teaser */
.brand-teaser {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.brand-teaser-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow var(--transition);
}

.brand-teaser-card:hover {
    box-shadow: var(--shadow-md);
}

.brand-teaser-card img {
    height: 36px;
    width: auto;
    flex-shrink: 0;
}

.brand-teaser-text {
    flex: 1;
}

.brand-teaser-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.brand-teaser-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.brand-teaser-card .teaser-arrow {
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: color var(--transition), transform var(--transition);
}

.brand-teaser-card .teaser-arrow i {
    width: 18px;
    height: 18px;
    stroke-width: 1.75;
}

.brand-teaser-card:hover .teaser-arrow {
    color: var(--accent);
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .hero-trust {
        gap: 16px;
    }

    .hero-trust-item {
        font-size: 0.75rem;
    }

    .mid-cta {
        padding: 56px 20px;
    }

    .brand-teaser {
        grid-template-columns: 1fr;
        padding: 0 20px 48px;
    }
}


/* ============================================
   Sections
   ============================================ */

.section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 100px 32px;
}

.section-bg {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.section.centered {
    text-align: center;
}

.section.centered .section-subtitle {
    margin: 0 auto;
}

.section-header {
    margin-bottom: 56px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 16px;
}

.section.centered .section-header h2::after {
    margin-left: auto;
    margin-right: auto;
}


/* ============================================
   Feature Cards
   ============================================ */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}

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

.feature-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(225,29,46,0.07);
    border-radius: var(--radius);
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-icon i {
    width: 22px;
    height: 22px;
    stroke-width: 1.75;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ============================================
   Contact Bar
   ============================================ */

.contact-bar {
    background: var(--primary);
    padding: 40px 32px;
}

.contact-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.contact-item .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.contact-item .icon i {
    width: 18px;
    height: 18px;
    stroke-width: 1.75;
    color: rgba(255,255,255,0.7);
}

.contact-item a {
    color: rgba(255,255,255,0.8);
}

.contact-item a:hover {
    color: var(--surface);
}

.contact-item small {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}


/* ============================================
   Page Header (Subpages)
   ============================================ */

.page-header {
    background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--surface);
    padding: 72px 32px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}


/* ============================================
   Content (Subpages)
   ============================================ */

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 32px;
}

.content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.content h2:first-child {
    margin-top: 0;
}

.content p,
.content address {
    margin-bottom: 16px;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.content a {
    color: var(--accent);
    font-weight: 500;
}

.content a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.content > p:first-of-type {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.85;
}


/* Impressum Page */

.impressum-compact-hero {
    background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--surface);
    padding: 52px 32px;
    text-align: center;
}

.impressum-compact-hero h1 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.impressum-compact-hero p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    margin-top: 6px;
}

.impressum-layout {
    max-width: 960px;
    margin: 0 auto;
    padding: 64px 32px 80px;
}

.impressum-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.impressum-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.impressum-block h3 {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.impressum-block .company-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.impressum-block p {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.impressum-block p:last-child {
    margin-bottom: 0;
}

.impressum-block strong {
    color: var(--text);
    font-weight: 600;
}

.impressum-block a {
    color: var(--accent);
    font-weight: 500;
}

.impressum-block a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.impressum-block .contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.impressum-block .contact-line:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.impressum-block .contact-line .cl-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225,29,46,0.07);
    border-radius: var(--radius);
    color: var(--accent);
    flex-shrink: 0;
}

.impressum-block .contact-line .cl-icon i {
    width: 15px;
    height: 15px;
    stroke-width: 1.75;
}

.impressum-block .contact-line .cl-text {
    font-size: 0.88rem;
    color: var(--text);
}

.impressum-block .contact-line .cl-text small {
    display: block;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 1px;
}

.impressum-block .contact-line .cl-text a {
    color: var(--text);
    font-weight: 500;
}

.impressum-block .contact-line .cl-text a:hover {
    color: var(--accent);
}

.impressum-section-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    margin-top: 0;
}

.impressum-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.impressum-grid-reg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.impressum-text-section {
    margin-bottom: 40px;
}

.impressum-text-section h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.impressum-text-section p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.impressum-text-section a {
    color: var(--accent);
    font-weight: 500;
}

.impressum-text-section a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.reg-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}

.reg-item:last-child {
    border-bottom: none;
}

.reg-item .reg-label {
    color: var(--text-secondary);
}

.reg-item .reg-value {
    color: var(--text);
    font-weight: 600;
    text-align: right;
}

@media (max-width: 768px) {
    .impressum-compact-hero {
        padding: 40px 20px;
    }

    .impressum-layout {
        padding: 40px 20px 56px;
    }

    .impressum-grid-top,
    .impressum-grid-reg {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   About Page
   ============================================ */

/* Enhanced Page Hero */
.page-hero {
    background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 50%, #162033 100%);
    color: var(--surface);
    padding: 100px 32px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(225,29,46,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto;
}

/* Trust Bar */
.trust-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0 32px;
}

.trust-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    position: relative;
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: var(--border);
}

.trust-item .trust-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225,29,46,0.07);
    border-radius: var(--radius);
    color: var(--accent);
    flex-shrink: 0;
}

.trust-item .trust-icon i {
    width: 18px;
    height: 18px;
    stroke-width: 1.75;
}

.trust-item .trust-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

.trust-item .trust-text small {
    display: block;
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.78rem;
    margin-top: 1px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.about-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: box-shadow var(--transition);
}

.about-card:hover {
    box-shadow: var(--shadow-md);
}

.about-card .card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225,29,46,0.07);
    border-radius: var(--radius);
    color: var(--accent);
    margin-bottom: 20px;
}

.about-card .card-icon i {
    width: 20px;
    height: 20px;
    stroke-width: 1.75;
}

.about-card h3 {
    color: var(--primary);
    margin-bottom: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.9rem;
}

/* History Timeline */
.history-intro {
    max-width: 640px;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.history-timeline {
    position: relative;
    padding-left: 40px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--border);
}

.history-item {
    position: relative;
    padding-bottom: 40px;
}

.history-item:last-child {
    padding-bottom: 0;
}

.history-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    z-index: 1;
}

.history-item.active::before {
    border-color: var(--accent);
    background: var(--accent);
}

.history-year {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.history-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.history-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 560px;
}

@media (max-width: 768px) {
    .history-timeline {
        padding-left: 32px;
    }

    .history-item::before {
        left: -32px;
    }
}

/* Engagement Grid */
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.engagement-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: box-shadow var(--transition);
}

.engagement-item:hover {
    box-shadow: var(--shadow-md);
}

.engagement-item .eng-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225,29,46,0.07);
    border-radius: var(--radius);
    color: var(--accent);
    margin-bottom: 16px;
}

.engagement-item .eng-icon i {
    width: 18px;
    height: 18px;
    stroke-width: 1.75;
}

.engagement-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.engagement-item p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Founders */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.founder-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow var(--transition);
}

.founder-card:hover {
    box-shadow: var(--shadow-md);
}

.founder-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.founder-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.founder-info span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: block;
}

.founder-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 6px;
    line-height: 1.6;
}

/* Mini Brand Cards (on About page) */
.mini-brands {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.mini-brand {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: box-shadow var(--transition);
}

.mini-brand:hover {
    box-shadow: var(--shadow-md);
}

.mini-brand-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.mini-brand-header img {
    height: 32px;
    width: auto;
}

.mini-brand-header .mini-brand-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mini-brand p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Location compact */
.location-compact {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.location-compact .loc-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225,29,46,0.07);
    border-radius: var(--radius);
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-compact .loc-icon i {
    width: 18px;
    height: 18px;
    stroke-width: 1.75;
}

.location-compact strong {
    color: var(--text);
}

.location-compact a {
    color: var(--accent);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 72px 32px;
    text-align: center;
    position: relative;
}

.cta-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--surface);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.cta-section p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section label (eyebrow) */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

/* Team list (legacy) */
.team-list {
    list-style: none;
}

.team-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

.team-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.team-list li:first-child {
    padding-top: 0;
}

.team-list li span {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 2px;
}


/* ============================================
   Brand Cards
   ============================================ */

.brand-card {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    margin: 24px 0;
    transition: box-shadow var(--transition);
}

.brand-card:hover {
    box-shadow: var(--shadow-md);
}

.brand-logo {
    flex-shrink: 0;
}

.brand-logo img {
    width: 160px;
    height: auto;
}

.brand-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    margin-top: 0;
    padding-top: 0;
    letter-spacing: -0.01em;
}

.brand-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 16px !important;
}

.brand-info p {
    color: var(--text-secondary);
    line-height: 1.75;
}


/* ============================================
   Brands Page
   ============================================ */

.brand-showcase {
    max-width: var(--container);
    margin: 0 auto;
    padding: 100px 32px;
}

.brand-showcase-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    transition: box-shadow var(--transition);
}

.brand-showcase-card:hover {
    box-shadow: var(--shadow-lg);
}

.brand-showcase-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    border-right: 1px solid var(--border);
    background: var(--bg);
}

.brand-showcase-logo img {
    width: 140px;
    height: auto;
}

.brand-showcase-body {
    padding: 44px 48px;
}

.brand-showcase-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 8px;
}

.brand-showcase-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.brand-showcase-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.75;
    max-width: 520px;
}

.brand-traits {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.brand-trait {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.brand-trait i {
    width: 16px;
    height: 16px;
    color: var(--accent);
    stroke-width: 2;
}

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

.btn-dark:hover {
    background: var(--secondary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Brands promise bar */
.brands-promise {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px 80px;
}

.brands-promise-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.brands-promise-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.brands-promise-item .bp-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225,29,46,0.07);
    border-radius: var(--radius);
    color: var(--accent);
    flex-shrink: 0;
}

.brands-promise-item .bp-icon i {
    width: 18px;
    height: 18px;
    stroke-width: 1.75;
}

.brands-promise-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.brands-promise-item p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .brand-showcase {
        padding: 64px 20px;
    }

    .brand-showcase-card {
        grid-template-columns: 1fr;
    }

    .brand-showcase-logo {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 32px;
    }

    .brand-showcase-logo img {
        width: 100px;
    }

    .brand-showcase-body {
        padding: 28px 24px 32px;
    }

    .brand-traits {
        flex-direction: column;
        gap: 10px;
    }

    .brands-promise {
        padding: 0 20px 48px;
    }

    .brands-promise-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}


/* ============================================
   Footer
   ============================================ */

footer {
    background: var(--primary);
    color: rgba(255,255,255,0.5);
    padding: 48px 32px;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid var(--secondary);
}

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

footer nav {
    justify-content: center;
    margin-bottom: 20px;
}

footer nav a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    padding: 6px 12px;
}

footer nav a::after {
    display: none;
}

footer nav a:hover {
    color: var(--surface);
    background: transparent;
}

footer .copyright {
    color: rgba(255,255,255,0.35);
}


/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    .header-inner {
        padding: 0 20px;
        height: 68px;
    }

    .logo-claim {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 16px 20px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    nav.open {
        display: flex;
    }

    nav a {
        padding: 10px 14px;
        width: 100%;
    }

    nav a.active::after {
        display: none;
    }

    nav a.active {
        background: var(--bg);
    }

    .lang-switch {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        padding-top: 12px;
        margin-top: 8px;
        border-top: 1px solid var(--border);
        justify-content: flex-start;
    }

    .hero {
        padding: 80px 20px 72px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 64px 20px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-hero {
        padding: 72px 20px 56px;
    }

    .page-hero h1 {
        font-size: 1.85rem;
    }

    .trust-bar-inner {
        flex-direction: column;
        gap: 0;
    }

    .trust-item:not(:last-child)::after {
        display: none;
    }

    .trust-item {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mini-brands {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-section {
        padding: 56px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-bar {
        padding: 32px 20px;
    }

    .contact-bar-inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .page-header {
        padding: 56px 20px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .content {
        padding: 48px 20px;
    }

    .brand-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 24px;
        padding: 32px 24px;
    }

    .brand-logo img {
        width: 120px;
    }

    footer {
        padding: 36px 20px;
    }

    footer nav {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.65rem;
    }

    .section h2 {
        font-size: 1.4rem;
    }
}
