/* Legacy-Styles aus rubberduck-child (rd-*-Klassen: Flyer, Unterseiten) */

/* ── Farbpalette ── */
:root {
    --rd-navy:      #0A2342;
    --rd-ocean:     #0EA5E9;
    --rd-gold:      #F59E0B;
    --rd-offwhite:  #F8F9FA;
    --rd-text:      #1E293B;
    --rd-muted:     #64748B;
}

/* ── Reset / Base ── */
*, *::before, *::after {
    box-sizing: border-box;
}

body.rd-flyer-page {
    font-family: 'Inter', sans-serif;
    color: var(--rd-text);
    background: #fff;
    margin: 0;
    padding: 0;
}

.rd-flyer-page h1, .rd-flyer-page h2, .rd-flyer-page h3 {
    font-family: 'Playfair Display', serif;
    color: var(--rd-navy);
}

.rd-flyer-page a {
    color: var(--rd-ocean);
    text-decoration: none;
}
.rd-flyer-page a:hover {
    color: var(--rd-navy);
}

/* ── Custom Header ── */
.rd-site-header {
    background: var(--rd-navy);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    width: 100%;
}

/* Ausgleich für den fixed Header — !important wegen Astra-Overrides */
body.rd-flyer-page {
    padding-top: 80px !important;
}

@media (max-width: 768px) {
    body.rd-flyer-page {
        padding-top: 56px !important;
    }
}

/* Flyer-Seite: kein weisser Spalt — Offset direkt im Navy-Hero */
body.rd-flyer-page {
    padding-top: 0 !important;
}

body.rd-flyer-page .rd-fl-hero-top {
    padding-top: calc(3.5rem + 80px);
}

@media (max-width: 768px) {
    body.rd-flyer-page .rd-fl-hero-top {
        padding-top: calc(2.5rem + 56px);
    }
}

.rd-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 1.5rem;
    max-width: 1140px;
    margin: 0 auto;
}

/* Logo */
.rd-site-header .custom-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.rd-site-header .custom-logo {
    height: 64px;
    width: auto;
    display: block;
}

/* Nav */
.rd-main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rd-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rd-main-nav ul li a {
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.rd-main-nav ul li a:hover {
    color: var(--rd-ocean);
}

/* ── Sprachumschalter im Header ── */
.rd-lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 1.5rem;
    margin-left: 0.5rem;
}

.rd-lang-toggle a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    transition: color 0.2s;
}

.rd-lang-toggle a:hover,
.rd-lang-toggle a.rd-lang-active {
    color: var(--rd-ocean);
}

/* ── Hero ── */
.rd-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    width: 100%;
    margin-top: -80px;
}

@media (max-width: 768px) {
    .rd-hero { margin-top: -56px; }
}

.rd-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,35,66,0.85) 0%, rgba(10,35,66,0.2) 60%, transparent 100%);
}

.rd-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 2rem 4rem;
    max-width: 700px;
}

.rd-hero-content .rd-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rd-ocean);
    margin-bottom: 0.5rem;
}

.rd-hero-content h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.15;
    margin: 0 0 1.5rem;
}

.rd-hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ── Buttons ── */
.rd-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.2s;
}

.rd-btn-primary {
    background: var(--rd-ocean);
    color: #fff;
}
.rd-btn-primary:hover {
    background: #0284c7;
    color: #fff;
}

/* ── Sections ── */
.rd-section {
    padding: 5rem 0;
    display: block;
    width: 100%;
}

.rd-section-navy {
    background: var(--rd-navy);
}

.rd-section-light {
    background: var(--rd-offwhite);
}

.rd-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.rd-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.rd-section-header .rd-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rd-ocean);
    margin-bottom: 0.5rem;
}

.rd-section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 0 0 0.75rem;
}

.rd-section-header p {
    color: var(--rd-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Galerie ── */
.rd-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.rd-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

/* ── Boot Facts ── */
.rd-boat-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.rd-fact {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.rd-fact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rd-ocean);
}

.rd-fact-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--rd-navy);
}

/* ── Logbuch / Trip Cards ── */
.rd-trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.rd-trip-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(10,35,66,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.rd-trip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(10,35,66,0.14);
}

.rd-trip-map {
    width: 100%;
    height: 180px;
    background: var(--rd-offwhite);
    overflow: hidden;
}

.rd-trip-map img,
.rd-trip-map .rd-leaflet-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rd-trip-body {
    padding: 1.1rem 1.25rem;
}

.rd-trip-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rd-ocean);
    margin-bottom: 0.3rem;
}

.rd-trip-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--rd-navy);
    margin: 0 0 0.2rem;
}

.rd-trip-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--rd-ocean);
    margin: 0 0 0.6rem;
}

.rd-trip-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--rd-muted);
}

/* ── App Section ── */
.rd-app-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .rd-app-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.rd-eyebrow-white {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rd-ocean);
    margin-bottom: 0.5rem;
}

.rd-white,
.rd-section-navy h2,
.rd-section-navy p {
    color: #fff !important;
}

.rd-app-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.rd-app-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.rd-app-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--rd-ocean);
    font-weight: 700;
}

.rd-app-coming-soon {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6) !important;
    font-style: italic;
    margin-top: 1rem;
}

/* ── Footer ── */
.rd-site-footer {
    background: var(--rd-navy);
}

.rd-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
}

.rd-footer-copy {
    color: rgba(255,255,255,0.6);
}

.rd-footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.rd-footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
}

.rd-footer-links a:hover {
    color: var(--rd-ocean);
}

/* ── Inhaltsseiten (Impressum, Datenschutz) ── */
.rd-page-wrap {
    padding: 4rem 0 5rem;
    min-height: 60vh;
}

.rd-page-wrap > .rd-container > h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--rd-navy);
    margin: 0 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--rd-offwhite);
    max-width: 720px;
}

.rd-page-content {
    max-width: 720px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--rd-text);
}

.rd-page-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--rd-navy);
    margin: 3rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--rd-offwhite);
}

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

.rd-page-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rd-ocean);
    margin: 2rem 0 0.5rem;
}

.rd-page-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--rd-navy);
    margin: 1.25rem 0 0.3rem;
}

.rd-page-content p {
    margin: 0 0 1rem;
}

.rd-page-content strong {
    font-weight: 600;
    color: var(--rd-navy);
}

.rd-page-content ul,
.rd-page-content ol {
    margin: 0.5rem 0 1rem 1.25rem;
    padding: 0;
}

.rd-page-content li {
    margin-bottom: 0.35rem;
}

.rd-page-content a {
    color: var(--rd-ocean);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rd-page-content a:hover {
    color: var(--rd-navy);
}

/* ══════════════════════════════════════
   FLYER / APP-SECTION
   Alle Klassen mit rd-fl- präfixiert
   um Konflikte mit dem Theme zu vermeiden
══════════════════════════════════════ */

.rd-flyer {
    font-family: 'Inter', -apple-system, Helvetica, sans-serif;
    color: #1E293B;
    width: 100%;
}

/* ── Hero ── */
.rd-fl-hero {
    background: #0A2342;
    display: flex;
    flex-direction: column;
}

.rd-fl-hero-top {
    padding: 3.5rem 3.5rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    text-align: center;   /* 16.07.: linksbündig wirkte auf breiten Screens verloren */
}

.rd-fl-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #0EA5E9;
    margin-bottom: 1.25rem;
}

.rd-fl-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.05;
    color: #fff;
    margin: 0 0 1.5rem;
    font-weight: 700;
}

.rd-fl-hero-title em {
    font-style: italic;
    color: #0EA5E9;
}

.rd-fl-hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    max-width: 620px;
    line-height: 1.65;
    margin: 0 auto 2rem;
}

.rd-fl-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 760px;
    margin: 0 auto;
}

.rd-fl-badge {
    background: rgba(14,165,233,0.15);
    border: 1px solid rgba(14,165,233,0.4);
    color: #7DD3FC;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    letter-spacing: 0.05em;
}

.rd-fl-hero-divider {
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 0 3.5rem;
}

.rd-fl-stats {
    padding: 2rem 3.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.rd-fl-stat { text-align: center; }

.rd-fl-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #0EA5E9;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.rd-fl-stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ── Features ── */
.rd-fl-features {
    background: #fff;
    padding: 3rem 3.5rem;
}

.rd-fl-section-header {
    margin-bottom: 2rem;
}

.rd-fl-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    line-height: 1.15;
    margin: 0.5rem 0 0;
}

.rd-fl-features .rd-fl-section-header {
    background: linear-gradient(135deg, #0A2342 0%, #0E3460 100%);
    margin: -3rem -3.5rem 2rem;
    padding: 2.5rem 3.5rem 2rem;
}

.rd-fl-features .rd-fl-section-title { color: #fff; }

.rd-fl-feature-group {
    margin-bottom: 1.75rem;
}

.rd-fl-feature-group-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0EA5E9;
    margin-bottom: 0.75rem;
    padding-left: 0.25rem;
}

.rd-fl-feature-group .rd-fl-grid {
    margin-bottom: 0;
}

.rd-fl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.rd-fl-card {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.rd-fl-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: #0EA5E9;
}

.rd-fl-card-icon {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: block;
}

.rd-fl-card-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0A2342;
    margin-bottom: 0.4rem;
}

.rd-fl-card-desc {
    font-size: 0.75rem;
    color: #64748B;
    line-height: 1.55;
}

.rd-fl-tier {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.4rem;
    padding: 0.05rem 0.4rem;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #475569;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
}

.rd-fl-tier--premium {
    color: #7A5B00;
    background: #FCF3D6;
    border-color: #E9CE7A;
}

.rd-fl-highlight {
    background: linear-gradient(135deg, #0A2342, #0E3460);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rd-fl-highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.rd-fl-highlight h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.4rem;
    font-family: 'Inter', sans-serif;
}

.rd-fl-highlight p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    margin: 0;
}

.rd-fl-tag {
    display: inline-block;
    background: rgba(14,165,233,0.2);
    color: #7DD3FC;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    margin-top: 0.5rem;
    letter-spacing: 0.06em;
}

/* ── Zielgruppen ── */
.rd-fl-audiences {
    background: #F8FAFC;
    padding: 0 3.5rem 0;
}

.rd-fl-audiences .rd-fl-section-header {
    background: linear-gradient(135deg, #0A2342 0%, #0E3460 100%);
    margin: 0 -3.5rem 2rem;
    padding: 2.5rem 3.5rem 2rem;
}

.rd-fl-section-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
    font-weight: 300;
    max-width: 580px;
}

.rd-fl-audience-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(10,35,66,0.08);
    overflow: hidden;
    margin-bottom: 1rem;
}

.rd-fl-ac-header {
    padding: 1rem 1.5rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #F1F5F9;
}

.rd-fl-ac-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2.5rem;
    text-align: center;
}

.rd-fl-ac-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0EA5E9;
    margin-bottom: 0.2rem;
}

.rd-fl-ac-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0A2342;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.rd-fl-ac-body {
    padding: 0.9rem 1.5rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}

.rd-fl-ac-point {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #475569;
    line-height: 1.45;
}

.rd-fl-ac-check {
    color: #0EA5E9;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.rd-fl-workflow {
    background: #0A2342;
    margin: 0 -3.5rem;
    padding: 1.25rem 3.5rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.rd-fl-ws-step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.rd-fl-ws-num {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #0EA5E9;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rd-fl-ws-text {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

.rd-fl-ws-text strong {
    display: block;
    color: #fff;
    font-weight: 600;
}

/* ── App Store CTA ── */
.rd-fl-appstore {
    background: #0A2342;
    margin: 0 -3.5rem;
    padding: 2.5rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.rd-fl-appstore-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin: 0.3rem 0 0.25rem;
    line-height: 1.2;
}

.rd-fl-appstore-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.rd-fl-appstore-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    text-align: center;
}

.rd-fl-appstore-badge svg {
    opacity: 1;
    display: block;
}

.rd-fl-appstore-badge a {
    display: block;
    transition: opacity 0.15s ease;
}

.rd-fl-appstore-badge a:hover { opacity: 0.85; }

/* QR-Code: navy Module auf weißer Karte (Scanner brauchen dunkel-auf-hell) */
.rd-fl-appstore-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
}

.rd-fl-appstore-qr img {
    display: block;
    width: 130px;
    height: 130px;
    background: #fff;
    padding: 9px;
    border-radius: 11px;
}

.rd-fl-appstore-qr span {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.65);
}

/* ── Flyer Responsive ── */
@media (max-width: 768px) {
    .rd-fl-hero-top,
    .rd-fl-stats { padding-left: 1.5rem; padding-right: 1.5rem; }
    .rd-fl-hero-divider { margin: 0 1.5rem; }
    .rd-fl-features { padding-left: 1.5rem; padding-right: 1.5rem; }
    .rd-fl-features .rd-fl-section-header { margin-left: -1.5rem; margin-right: -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
    .rd-fl-audiences { padding-left: 1.5rem; padding-right: 1.5rem; }
    .rd-fl-audiences .rd-fl-section-header { margin-left: -1.5rem; margin-right: -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
    .rd-fl-workflow { margin-left: -1.5rem; margin-right: -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; grid-template-columns: 1fr 1fr; }
    .rd-fl-ac-body { grid-template-columns: 1fr; }
    .rd-fl-appstore { margin-left: -1.5rem; margin-right: -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
    .rd-fl-appstore-badge { align-items: center; }
}

@media (max-width: 540px) {
    .rd-fl-grid { grid-template-columns: 1fr; }
    .rd-fl-workflow { grid-template-columns: 1fr; }
    .rd-fl-highlight { flex-direction: column; gap: 0.75rem; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .rd-header-inner {
        height: auto;
        min-height: 56px;
        padding: 0.5rem 1rem;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .rd-site-header .custom-logo {
        height: 36px;
    }

    .rd-main-nav {
        gap: 0.75rem;
    }

    .rd-main-nav ul {
        gap: 0.75rem;
    }

    .rd-main-nav ul li a {
        font-size: 0.72rem;
        letter-spacing: 0.03em;
        white-space: nowrap;
    }

    .rd-lang-toggle {
        padding-left: 0.75rem;
        gap: 0.25rem;
    }

    .rd-lang-toggle a {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .rd-site-header .custom-logo {
        height: 30px;
    }

    .rd-main-nav ul li a {
        font-size: 0.65rem;
    }

    .rd-lang-toggle {
        border-left: none;
        padding-left: 0.25rem;
    }
}

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

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

    .rd-trips-grid {
        grid-template-columns: 1fr;
    }

    .rd-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
