/* =========================================
   CSS Variables & Theme
   ========================================= */
:root {
    /* Main Brand Color: Vecino Coral */
    --primary: #FA5C59;
    --primary-hover: #e84c4a;
    --primary-light: rgba(250, 92, 89, 0.1);
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    
    /* Neutrals */
    --bg-main: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --border-color: #e5e7eb;
    
    /* Shapes & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px; /* Requested soft radius */
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

.text-center { text-align: center; }
.mt-xl { margin-top: 3rem; }
.hidden { display: none !important; }

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md); /* 12px requested */
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    gap: 0.5rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -5px rgba(250, 92, 89, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--text-dark);
}

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

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

.btn-outline-white:hover {
    background-color: white;
    color: var(--text-dark);
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: white;
}

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

.lang-switcher {
    display: flex;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 100px;
    padding: 3px;
}

.lang-opt {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.65);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.lang-opt.active {
    background: white;
    color: var(--primary);
}

.lang-opt:hover:not(.active) {
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    padding: 100px 0 32px;
    min-height: auto;
    display: flex;
    align-items: center;
    background-image: url('/hero.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.hero-title span {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 1.25rem;
    max-width: 600px;
}

/* Search Bar Component - Premium */
.search-bar {
    background-color: white;
    border-radius: 100px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 1.25rem;
}

.search-input-group {
    flex: 1;
    padding: 0.875rem 1.5rem;
    display: flex;
    flex-direction: column;
    border-radius: 80px;
    transition: background-color 0.2s ease;
    cursor: pointer;
    min-width: 0;
}

.search-input-group:hover {
    background-color: #f5f5f5;
}

.search-input-group:focus-within {
    background-color: #f0f0f0;
}

.search-input-group label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    pointer-events: none;
}

.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.select-display {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 1.25rem;
    pointer-events: none;
}

/* Invisible select covers the entire group so any click opens the dropdown */
.select-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.select-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    line-height: 0;
    z-index: 1;
}

.search-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
    flex-shrink: 0;
}

.btn-search {
    padding: 1rem 1.75rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #FA5C59 0%, #ff7b79 100%);
    color: white;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 15px rgba(250, 92, 89, 0.4);
    transition: all 0.2s ease;
    gap: 0.5rem;
}

.btn-search:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(250, 92, 89, 0.5);
    background: linear-gradient(135deg, #e84c4a 0%, #ff6b69 100%);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* =========================================
   Steps Section
   ========================================= */
.steps-section {
    padding: 3rem 0;
    background-color: var(--bg-secondary);
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md); /* 12px */
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-desc {
    color: var(--text-gray);
}

/* =========================================
   Properties Section
   ========================================= */
.properties-section {
    padding: 3rem 0;
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.filter-toggles {
    display: flex;
    background-color: var(--bg-secondary);
    padding: 0.25rem;
    border-radius: var(--radius-md);
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-gray);
    border-radius: calc(var(--radius-md) - 2px);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn.active {
    background-color: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.property-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* anchor reset */
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.property-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.property-image-container {
    position: relative;
    height: 220px;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.property-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.property-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.property-location {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.property-features {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.property-card .btn-primary {
    width: 100%;
    margin-top: auto;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    padding: 4rem 0;
}

.cta-box {
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    color: white;
    background-image: linear-gradient(135deg, var(--primary) 0%, #ff8a88 100%);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #a1a1aa;
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #a1a1aa;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: #a1a1aa;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
}

.subscribe-form input {
    flex: 1;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: none;
    outline: none;
    font-family: inherit;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #a1a1aa;
    font-size: 0.9rem;
}

/* =========================================
   Country Selector
   ========================================= */
.country-selector {
    position: relative;
}

.country-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.country-btn:hover {
    background: var(--bg-secondary);
}

.country-btn svg {
    color: var(--text-gray);
    transition: transform 0.2s ease;
}

.country-btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.country-flag {
    font-size: 1rem;
    line-height: 1;
}

.country-name {
    white-space: nowrap;
}

.country-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 180px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    z-index: 999;
}

.country-dropdown.open {
    display: block;
    animation: fadeDown 0.15s ease;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.country-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.15s ease;
}

.country-option:hover {
    background: var(--bg-secondary);
}

.country-option.active {
    color: var(--primary);
}

.country-check {
    margin-left: auto;
    color: var(--primary);
}

/* =========================================
   Propiedades — Listings Page Header
   ========================================= */
.listings-header {
    padding: 7rem 0 2.5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.listings-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.4rem;
}

.listings-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1.75rem;
}

.listings-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.listings-select {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.6rem 1rem;
    background: white;
    min-width: 200px;
}

@media (max-width: 768px) {
    .listings-filters { flex-direction: column; align-items: flex-start; }
    .listings-select { width: 100%; }
}

/* =========================================
   Auth — Login Overlay
   ========================================= */
.login-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.login-overlay.hidden {
    display: none;
}

.login-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.login-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-gray);
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease;
}

.login-close:hover {
    color: var(--text-dark);
}

.login-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.login-logo-mark {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.login-logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--text-dark);
}

.login-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    letter-spacing: -0.3px;
}

.login-sub {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.login-field input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s ease;
    margin-bottom: 0.75rem;
}

.login-field input:focus {
    border-color: var(--primary);
}

.login-error {
    font-size: 0.82rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.login-error.hidden {
    display: none;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-link {
    background: none;
    border: none;
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: var(--text-gray);
    cursor: pointer;
    margin-top: 0.75rem;
    display: block;
    text-align: center;
    width: 100%;
    padding: 0.25rem;
    transition: color 0.15s ease;
}

.btn-link:hover {
    color: var(--text-dark);
}

/* Navbar user menu */
.nav-user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-user-menu.hidden {
    display: none;
}

.nav-user-email {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* =========================================
   How It Works Section
   ========================================= */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.hiw-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.hiw-badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.hiw-header .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hiw-header .section-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.step-icon {
    width: 52px;
    height: 52px;
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.65;
}

.hiw-trust {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* =========================================
   Responsive Variables
   ========================================= */
@media (max-width: 992px) {
    .hero-title { font-size: 1.8rem; }
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: flex; }
    .flex-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    /* Search: 2-column grid on tablets */
    .search-bar { border-radius: var(--radius-lg); padding: 0.75rem; flex-wrap: wrap; gap: 0.5rem; }
    .search-input-group { flex: 1 1 calc(50% - 0.5rem); min-width: calc(50% - 0.5rem); border-radius: var(--radius-md); border: 1px solid var(--border-color); }
    .search-divider { display: none; }
    .btn-search { flex: 1 1 100%; border-radius: var(--radius-md); padding: 0.9rem; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .hiw-trust { gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 1.6rem; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
    .cta-actions { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    /* Search: single column on mobile */
    .search-input-group { flex: 1 1 100%; min-width: 100%; }
    .steps-grid { grid-template-columns: 1fr; }
    .hiw-trust { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
