/* --- DRIVER HUB HOME STYLE (Pro Version) --- */

:root {
    --dh-primary: var(--dh-color-primary, #10069f);
    --dh-primary-dark: var(--dh-color-primary-hover, #0c0486);
    --dh-dark: var(--dh-color-text, #0b0f1a);
    --dh-text: var(--dh-color-muted, #667085);
    --dh-bg-gray: #f8fafc;
    --dh-white: var(--dh-color-surface, #ffffff);
    --dh-radius: var(--dh-radius-md, 16px);
    --dh-font: var(--dh-font-sans, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif);

    --shadow-soft: var(--dh-shadow-sm, 0 1px 2px rgba(16, 24, 40, 0.06));
    --shadow-medium: var(--dh-shadow-md, 0 8px 24px rgba(16, 24, 40, 0.1));
    --shadow-large: var(--dh-shadow-lg, 0 18px 40px rgba(16, 24, 40, 0.14));
}

body {
    font-family: var(--dh-font);
    color: var(--dh-text);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: #fff;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    padding: 120px 0 160px;
    background: var(--dh-white);
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 130%;
    background: radial-gradient(circle at 100% 0%, #38bdf8 0%, #3b82f6 50%, #0f172a 100%);
    opacity: 0.08;
    transform: skewY(-6deg);
    transform-origin: top left;
    z-index: 0;
}

/* Hero Top Row (Text Left, Img Right) */
.hero-top-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.hero-text-col {
    text-align: left; /* WYMUSZENIE DO LEWEJ */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--dh-dark);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--dh-text);
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-badges {
    display: flex; gap: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dh-primary-dark);
}

.hero-img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
}
.hero-img-main:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

/* Hero Bottom Row (Search) */
.search-panel {
    background: var(--dh-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-large);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    z-index: 5;
}

.search-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dh-text);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.modern-select, .modern-input {
    width: 100%; height: 54px; padding: 0 16px;
    border: 1px solid var(--dh-color-border, rgba(16,24,40,0.12)); border-radius: var(--dh-radius-md, 16px);
    font-size: 1rem; color: var(--dh-dark); background: #f8fafc;
    transition: 0.2s; box-sizing: border-box; font-weight: 500; font-family: inherit;
}

.modern-select:focus, .modern-input:focus {
    border-color: var(--dh-primary); background: #fff;
    outline: none; box-shadow: 0 0 0 3px rgba(16, 6, 159, 0.22);
}

.btn-accent {
    background: var(--dh-primary); color: #fff; border: 1px solid var(--dh-primary);
    height: 54px; padding: 0 32px; border-radius: var(--dh-radius-pill, 25px);
    font-weight: 700; font-size: 1rem; cursor: pointer; transition: 0.18s ease; white-space: nowrap;
    box-shadow: 0 4px 14px rgba(16, 6, 159, 0.24);
}
.btn-accent:hover {
    background: var(--dh-primary-dark); transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(16, 6, 159, 0.26);
}
.full-width { width: 100%; }

.search-footer-links {
    margin-top: 20px; padding-top: 15px; border-top: 1px solid #f1f5f9;
    font-size: 0.9rem; color: var(--dh-text); display: flex; gap: 12px; align-items: center;
}
.search-footer-links a { color: var(--dh-primary); font-weight: 600; }
.search-footer-links a:hover { text-decoration: underline; }
.sep { color: #e2e8f0; }

/* --- SECTIONS --- */
.home-section { padding: 100px 0; position: relative; }
.bg-gray { background: var(--dh-bg-gray); }
.bg-white { background: var(--dh-white); }
.bg-dark { background: var(--dh-dark); color: #fff; }

.grid-2-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

/* Clip Paths */
.clip-bottom { clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%); }
.clip-both { clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%); padding: 140px 0; }

/* Typography */
h2 { font-size: 2.5rem; font-weight: 800; color: var(--dh-dark); margin: 0 0 20px 0; line-height: 1.15; letter-spacing: -0.02em; }
.text-white h2 { color: #fff; }
.sub-text { font-size: 1.15rem; opacity: 0.8; margin-bottom: 30px; line-height: 1.7; }

/* VERIFICATION LIST (New Style) */
.verification-list {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Duże odstępy między punktami */
    margin: 40px 0;
}

.ver-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ver-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Kolorowe tła ikon */
.icon-blue { background: #e0f2fe; color: #0284c7; }
.icon-orange { background: #ffedd5; color: #ea580c; }
.icon-cyan { background: #ecfeff; color: #0891b2; }

.ver-item strong {
    display: block;
    font-size: 1.15rem;
    color: var(--dh-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.ver-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--dh-text);
    line-height: 1.5;
}

.small-note { font-size: 0.9rem; font-style: italic; opacity: 0.8; margin-bottom: 25px; display: block; }

/* Other Lists */
.benefit-list { list-style: none; padding: 0; margin-bottom: 30px; }
.benefit-list li { display: flex; gap: 20px; margin-bottom: 25px; }
.icon-circle {
    width: 44px; height: 44px; background: #e0f2fe; color: var(--dh-primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; flex-shrink: 0;
}
.benefit-list strong { display: block; color: var(--dh-dark); font-weight: 700; margin-bottom: 4px; }
.benefit-list p { margin: 0; font-size: 0.95rem; }

/* Images & Buttons */
.img-rounded { border-radius: 16px; width: 100%; display: block; }
.shadow-large { box-shadow: var(--shadow-large); }
.hover-tilt { transition: 0.5s; }
.hover-tilt:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(2deg); }

.pill-label {
    display: inline-block; padding: 6px 14px; background: #e0f2fe;
    color: #0369a1; border-radius: 20px; font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 0.05em;
}
.pill-label.transparent { background: rgba(255,255,255,0.15); color: #fff; }

.btn-dark {
    background: var(--dh-primary); color: #fff; padding: 14px 32px; border-radius: var(--dh-radius-pill, 25px);
    font-weight: 600; display: inline-block; transition: 0.18s ease;
}
.btn-dark:hover { background: var(--dh-primary-dark); transform: translateY(-1px); }

.btn-outline {
    border: 1px solid var(--dh-color-border, rgba(16,24,40,0.12)); color: var(--dh-text); padding: 10px 24px; border-radius: var(--dh-radius-pill, 25px);
    font-weight: 600; display: inline-block; transition: 0.18s ease; background: #fff;
}
.btn-outline:hover { border-color: var(--dh-primary); color: var(--dh-primary); background: #f6f8ff; }

.btn-white {
    background: #fff; color: var(--dh-primary); padding: 14px 32px; border-radius: var(--dh-radius-pill, 25px);
    font-weight: 600; display: inline-block; transition: 0.18s ease; border: 1px solid rgba(16,24,40,0.1);
}
.btn-white:hover { background: #f5f8ff; border-color: rgba(16, 6, 159, 0.24); }

.link-arrow { color: var(--dh-primary); font-weight: 700; }
.link-arrow:hover { text-decoration: underline; }

/* Steps Ordered */
.ordered-steps { list-style: none; padding: 0; counter-reset: step-c; margin-bottom: 40px; }
.ordered-steps li { position: relative; padding-left: 45px; margin-bottom: 20px; color: rgba(255,255,255,0.85); }
.ordered-steps li::before {
    counter-increment: step-c; content: counter(step-c);
    position: absolute; left: 0; top: 0; width: 32px; height: 32px;
    background: rgba(255,255,255,0.15); border-radius: 50%;
    text-align: center; line-height: 32px; font-weight: 700; color: #fff;
}
.link-white { color: #fff; text-decoration: underline; margin-left: 20px; font-weight: 500; }

/* Listings */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.listings-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.empty-state { 
    grid-column: 1/-1; text-align: center; padding: 60px; 
    background: #f1f5f9; border-radius: 16px; 
}

/* Category Tiles */
.text-center { text-align: center; }
.categories-tiles { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 40px; }
.cat-tile {
    background: #fff; padding: 14px 28px; border-radius: 50px;
    border: 1px solid #e2e8f0; color: var(--dh-dark); font-weight: 600;
    box-shadow: var(--shadow-soft); transition: 0.2s; display: flex; align-items: center; gap: 10px;
}
.cat-tile:hover { transform: translateY(-3px); border-color: var(--dh-primary); color: var(--dh-primary); }

/* FAQ & CTA */
.faq-section h3 { margin-bottom: 30px; font-size: 2rem; color: var(--dh-dark); }
.faq-block { margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
.faq-block h4 { margin: 0 0 8px 0; color: var(--dh-primary); font-size: 1.1rem; }
.faq-block p { margin: 0; font-size: 0.95rem; }

.cta-box-gradient {
    background: radial-gradient(circle at 0% 0%, #1e293b 0%, #3b82f6 100%);
    padding: 50px; border-radius: 20px; color: #fff;
    box-shadow: var(--shadow-large); text-align: center;
}
.cta-box-gradient h3 { font-size: 2rem; margin-bottom: 15px; color: #fff; }
.cta-features { list-style: none; padding: 0; margin: 20px 0; text-align: left; display: inline-block; }
.cta-features li { margin-bottom: 8px; padding-left: 25px; position: relative; }
.cta-features li::before { content: '✓'; position: absolute; left: 0; font-weight: 800; }
.block { display: block; margin-top: 20px; }

/* Responsive */
@media (max-width: 992px) {
    .hero-top-row { grid-template-columns: 1fr; text-align: left; }
    .hero-image-col { display: none; }
    .search-form-layout { grid-template-columns: 1fr 1fr; }
    .form-action { grid-column: 1 / -1; }
    .grid-2-col { grid-template-columns: 1fr; gap: 50px; }
    .listings-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .search-form-layout { grid-template-columns: 1fr; }
    .listings-grid { grid-template-columns: 1fr; }
    .cta-box-gradient { text-align: center; }
}

/* --- FAQ ACCORDION (Professional Style) --- */

.faq-centered-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-centered-wrapper h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.faq-list-pro {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion {
    background: #fff;
    border: 1px solid #e6ebf1;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Stan zamknięty - hover */
.faq-accordion:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* Stan otwarty */
.faq-accordion[open] {
    border-color: var(--dh-primary);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.faq-accordion summary {
    padding: 24px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dh-dark);
    cursor: pointer;
    list-style: none; /* Ukrywa domyślny trójkąt */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-accordion summary:hover {
    color: var(--dh-primary);
}

/* Ukrycie domyślnego znacznika w Chrome/Safari */
.faq-accordion summary::-webkit-details-marker {
    display: none;
}

/* Ikona Plus/Minus CSS */
.icon-toggle {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.icon-toggle::before,
.icon-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--dh-primary);
    border-radius: 2px;
}

/* Pozioma kreska */
.icon-toggle::before {
    width: 14px;
    height: 2px;
}

/* Pionowa kreska (znika przy otwarciu) */
.icon-toggle::after {
    width: 2px;
    height: 14px;
    transition: transform 0.3s ease;
}

/* Animacja ikony przy otwarciu */
.faq-accordion[open] .icon-toggle {
    transform: rotate(180deg);
}
.faq-accordion[open] .icon-toggle::after {
    transform: rotate(90deg); /* Robi się płaski, tworząc minus */
    opacity: 0; /* Lub znika */
}

/* Treść odpowiedzi */
.faq-content {
    padding: 0 24px 24px 24px;
    color: var(--dh-text);
    line-height: 1.6;
    font-size: 1rem;
    animation: fadeIn 0.3s ease-in-out;
}

.faq-footer-link {
    text-align: center;
    margin-top: 40px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
    .faq-accordion summary {
        font-size: 1rem;
        padding: 20px;
    }
}

/* --- FINAL CTA SECTION (Pro & Trust) --- */
.cta-section-pro {
    padding: 100px 0 140px;
    background: var(--dh-bg-gray);
    position: relative;
    overflow: hidden;
}

.cta-full-card {
    background: radial-gradient(120% 200% at 0% 0%, #0f172a 0%, #1e293b 50%, #3b82f6 100%);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 30px 60px -12px rgba(16, 6, 159, 0.25);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

/* Dekoracyjne okręgi w tle */
.cta-full-card::before {
    content: ''; 
    position: absolute; 
    top: -50%; 
    left: -10%; 
    width: 600px; 
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    border-radius: 50%; 
    pointer-events: none;
}

.cta-content-center {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-center h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.cta-lead {
    font-size: 1.25rem;
    color: #cbd5e1; /* Jasny szary tekst */
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Lista korzyści z "ptaszkami" */
.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    flex-wrap: wrap;
}

.cta-trust-badges li {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-trust-badges .chk {
    font-size: 1.2rem;
}

/* Duży biały przycisk */
.btn-white-big {
    background: #fff;
    color: var(--dh-primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 20px 48px;
    border-radius: var(--dh-radius-pill, 25px);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn-white-big:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: #f8fafc;
    color: var(--dh-dark);
}

/* Mały tekst pod przyciskiem */
.cta-micro {
    margin-top: 24px;
    font-size: 0.9rem;
    opacity: 0.7;
    color: #fff;
}

/* Responsywność */
@media (max-width: 768px) {
    .cta-full-card { padding: 50px 24px; }
    .cta-content-center h2 { font-size: 2.2rem; }
    .cta-trust-badges { flex-direction: column; gap: 12px; align-items: center; }
    .btn-white-big { width: 100%; padding: 18px 20px; box-sizing: border-box; }
}

/* =========================================
   Driver Hub Home Mobile Refinements
   ========================================= */

.home-main,
.home-main * {
    min-width: 0;
}

.home-main {
    overflow-x: clip;
}

@media (max-width: 768px) {
    .home-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-section {
        padding: 88px 0 112px;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
        line-height: 1.1;
    }

    .hero-lead {
        font-size: 1rem;
        line-height: 1.55;
    }

    .search-panel {
        padding: 16px;
        border-radius: 14px;
    }

    .search-form-layout {
        gap: 12px;
    }

    .search-footer-links {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .search-footer-links .sep {
        display: none;
    }

    .home-section {
        padding: 72px 0;
    }

    .grid-2-col {
        gap: 38px;
    }

    h2 {
        font-size: clamp(1.55rem, 7.2vw, 2.2rem);
    }

    .dealers-title {
        font-size: clamp(1.8rem, 8vw, 2.25rem);
    }

    .listings-grid {
        gap: 16px;
    }

    .categories-tiles {
        gap: 10px;
    }

    .cat-tile {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .cta-section-pro {
        padding: 72px 0 88px;
    }

    .cta-full-card {
        padding: 42px 18px;
        border-radius: 18px;
    }

    .cta-content-center h2 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    .cta-lead {
        font-size: 1rem;
    }

    .btn-white-big {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 430px) {
    .home-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-section {
        padding-top: 76px;
    }

    .search-panel {
        padding: 14px;
    }

    .modern-select,
    .modern-input,
    .btn-accent {
        min-height: 46px;
    }

    .ordered-steps li {
        padding-left: 38px;
    }

    .ordered-steps li::before {
        width: 28px;
        height: 28px;
        line-height: 28px;
    }
}

/* =========================================
   Driver Hub: Home Tweaks
   ========================================= */

.hero-section {
    padding: clamp(56px, 9vh, 92px) 0 clamp(54px, 8vh, 86px);
}

.hero-top-row {
    gap: clamp(24px, 3vw, 42px);
    margin-bottom: clamp(18px, 2.8vh, 34px);
}

.hero-title {
    font-size: clamp(2.15rem, 4.6vw, 3.25rem);
    margin-bottom: clamp(10px, 1.6vh, 18px);
}

.hero-lead {
    max-width: 64ch;
    margin-bottom: clamp(12px, 1.8vh, 20px);
}

.hero-bottom-row .search-panel {
    padding: clamp(18px, 2.2vw, 26px);
}

.hero-bottom-row .search-panel > h2 {
    font-size: clamp(1.35rem, 2.1vw, 1.9rem);
    margin-bottom: 14px;
}

.dh-home-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 14px;
}

.dh-home-trustchips {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 12px;
    row-gap: 8px;
}

.dh-home-trustchips span {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    white-space: nowrap;
}

.dh-home-usp-grid {
    margin-top: clamp(20px, 3vh, 34px);
}

.dh-home-usp-grid > .search-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .dh-home-usp-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        align-items: stretch;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .dh-home-usp-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        align-items: stretch;
    }

    .dh-home-usp-grid > .search-panel:last-child {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1200px) and (max-height: 800px) {
    .hero-section {
        padding: 48px 0 56px;
    }

    .hero-top-row {
        grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
        gap: 16px;
        margin-bottom: 16px;
    }

    .hero-text-col,
    .hero-image-col {
        min-width: 0;
    }

    .hero-title {
        font-size: clamp(1.95rem, 3.2vw, 2.6rem);
    }

    .hero-lead {
        margin-bottom: 12px;
    }

    .dh-home-trustchips {
        margin-top: 12px;
    }

    .hero-bottom-row .search-panel {
        padding: 16px 18px;
    }

    .search-form-layout {
        gap: 12px;
    }

    .form-field label {
        margin-bottom: 6px;
    }

    .search-footer-links {
        margin-top: 12px;
        padding-top: 10px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) and (max-height: 800px) {
    .hero-section {
        padding: 48px 0 56px;
    }

    .hero-top-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .hero-image-col {
        display: none;
    }

    .hero-title {
        font-size: clamp(1.95rem, 3.2vw, 2.6rem);
    }

    .hero-lead {
        margin-bottom: 12px;
    }

    .dh-home-trustchips {
        margin-top: 12px;
    }

    .hero-bottom-row .search-panel {
        padding: 16px 18px;
    }

    .search-form-layout {
        gap: 12px;
    }

    .form-field label {
        margin-bottom: 6px;
    }

    .search-footer-links {
        margin-top: 12px;
        padding-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 64px 0 72px;
    }

    .hero-top-row {
        margin-bottom: 18px;
        gap: 16px;
    }

    .hero-lead {
        max-width: 100%;
        margin-bottom: 14px;
    }

    .dh-home-cta-row {
        width: 100%;
        gap: 10px;
    }

    .dh-home-cta-row .btn {
        width: 100%;
        text-align: center;
    }

    .dh-home-trustchips {
        margin-top: 12px;
        row-gap: 6px;
        column-gap: 8px;
    }

    .hero-bottom-row .search-panel {
        padding: 14px;
    }

    .hero-bottom-row .search-panel > h2 {
        font-size: 1.35rem;
        margin-bottom: 10px;
    }

    .search-form-layout {
        gap: 10px;
    }
}

@media (max-width: 430px) {
    .hero-section {
        padding: 56px 0 64px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8.8vw, 2.25rem);
    }

    .dh-home-trustchips span {
        white-space: normal;
    }
}
