/**
 * Hiccups Foods Landing Theme - Main Stylesheet
 * High-converting B2B wholesale lead generation landing pages
 */

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

:root {
    --primary: #1a365d;
    --primary-dark: #0f2442;
    --accent: #c53030;
    --accent-hover: #9b2c2c;
    --success: #276749;
    --success-light: #38a169;
    --warning: #c05621;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #f0f4f8 0%, #e2e8f0 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   SOCIAL PROOF TOAST
   ======================================== */
.social-proof-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1000;
    transform: translateX(-150%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 340px;
    border-left: 4px solid var(--success);
}

.social-proof-toast.show {
    transform: translateX(0);
}

.social-proof-toast .icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-proof-toast .icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.social-proof-toast .content {
    flex: 1;
    min-width: 0;
}

.social-proof-toast .name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-proof-toast .action {
    font-size: 0.8125rem;
    color: var(--text-medium);
}

.social-proof-toast .time {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.125rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 48, 48, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-title .highlight {
    color: #fbd38d;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.trust-indicators {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
}

.trust-item {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}

.trust-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #68d391;
    flex-shrink: 0;
}

.stats-row {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fbd38d;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   FORM CARD
   ======================================== */
.form-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
}

.form-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1.25rem 1.5rem;
    text-align: center;
    color: white;
}

.form-header-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.form-header-subtitle {
    font-size: 0.8125rem;
    opacity: 0.9;
}

.form-body {
    padding: 1.5rem;
}

.progress-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.progress-step {
    flex: 1;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.progress-step.active {
    background: var(--primary);
}

.progress-step.completed {
    background: var(--success);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.option-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
}

.option-btn:hover {
    border-color: var(--primary);
    background: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.option-btn.selected {
    border-color: var(--primary);
    background: rgba(26, 54, 93, 0.05);
}

.option-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.option-text {
    flex: 1;
    min-width: 0;
}

.option-text strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.option-text span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 0.375rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--bg-white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input.error {
    border-color: var(--accent);
}

.error-message {
    font-size: 0.75rem;
    color: var(--accent);
    margin-top: 0.25rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(197, 48, 48, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 48, 48, 0.4);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.btn-secondary:hover:not(:disabled) {
    background: var(--border);
}

.form-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}

.form-footer-text {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.form-footer-text svg {
    width: 1rem;
    height: 1rem;
    color: var(--success);
}

/* ========================================
   CONSENT CHECKBOX
   ======================================== */
.consent-box {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1rem;
}

.consent-box p {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

.consent-box a {
    color: var(--primary);
    text-decoration: none;
}

.consent-box a:hover {
    text-decoration: underline;
}

/* ========================================
   ADVERTORIAL SECTION
   ======================================== */
.advertorial {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.advertorial-container {
    max-width: 800px;
    margin: 0 auto;
}

.advertorial-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.advertorial h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advertorial p {
    font-size: 1.0625rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.advertorial-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid var(--warning);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 2rem 0;
}

.highlight-box p {
    margin: 0;
    font-weight: 500;
    color: var(--text-dark);
}

.checklist {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-medium);
}

.checklist li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-box .btn {
    max-width: 300px;
    margin: 0 auto;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.testimonial blockquote {
    font-size: 1rem;
    color: var(--text-medium);
    font-style: italic;
    margin: 0 0 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.testimonial-location {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 3rem 1.5rem 2rem;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.disclaimer {
    font-size: 0.75rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.lightbox-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--bg-white);
    z-index: 1;
}

.lightbox-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.lightbox-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-medium);
    transition: color 0.2s ease;
}

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

.lightbox-body {
    padding: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.lightbox-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem;
}

.lightbox-body h4:first-child {
    margin-top: 0;
}

.lightbox-body p {
    margin-bottom: 1rem;
}

.lightbox-body ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.lightbox-body li {
    margin-bottom: 0.5rem;
}

/* ========================================
   THANK YOU STATE
   ======================================== */
.thank-you {
    text-align: center;
    padding: 2rem 1rem;
}

.thank-you-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.thank-you-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.thank-you h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.thank-you p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* ========================================
   LOADING STATE
   ======================================== */
.loading {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
    .hero {
        padding: 1rem;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-content {
        text-align: center;
        order: 1;
        padding: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .urgency-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
    }
    
    .trust-indicators {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .trust-item {
        font-size: 0.8125rem;
        display: inline-flex !important;
    }
    
    .stats-row {
        display: none;
    }

    .form-card {
        order: 2;
    }

    .social-proof-toast {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-body {
        padding: 1.25rem;
    }

    .hero {
        padding: 0.75rem;
    }

    .advertorial {
        padding: 2rem 1rem;
    }

    .footer {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-links {
        gap: 1rem;
    }
}

/* ========================================
   DID PHONE CALL CTA
   ======================================== */
.did-call-cta {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--success);
    text-align: center;
}

.did-intro {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.did-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, var(--success) 0%, #166534 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(22, 101, 52, 0.4);
    transition: all 0.3s ease;
    animation: did-pulse 2s ease-in-out infinite;
}

.did-phone-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.did-trust-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.did-trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-medium);
}

.did-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

.next-steps-title {
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.9375rem;
    margin: 0;
}

.next-steps-subtitle {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 0.375rem;
}

@keyframes did-pulse {
    0%, 100% {
        box-shadow: var(--shadow-md), 0 0 0 0 rgba(56, 161, 105, 0.4);
    }
    50% {
        box-shadow: var(--shadow-lg), 0 0 0 10px rgba(56, 161, 105, 0);
    }
}

.did-call-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.did-call-btn:active {
    transform: scale(0.98);
}

.did-icon {
    font-size: 1.5rem;
    animation: did-ring 1s ease-in-out infinite;
}

@keyframes did-ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.did-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.did-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.did-number {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.did-subtext {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-top: 0.75rem;
}

.thank-you-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
}

.thank-you-divider::before,
.thank-you-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Mobile adjustments for DID */
@media (max-width: 640px) {
    .did-call-btn {
        width: 100%;
        justify-content: center;
        padding: 1.25rem;
    }
    
    .did-text {
        align-items: center;
    }
    
    .did-number {
        font-size: 1.125rem;
    }
}

/* ========================================
   ADVERTORIAL TRUST SECTION
   ======================================== */
.trust-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.trust-badge-icon {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.trust-badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 640px) {
    .trust-grid {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .trust-badge-item {
        padding: 0.625rem 1rem;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .trust-badge-text {
        font-size: 0.8125rem;
    }
}
