/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    --primary: #2e514c;
    --primary-hover: #1f3734;
    --primary-light: rgba(46, 81, 76, 0.08);
    --accent: #ffb136;
    --accent-hover: #e09b2e;
    --text-color: #2b2b2b;
    --text-muted: #666666;
    --bg-light: #f5f7f6;
    --bg-white: #ffffff;
    --bg-dark: #12211e;
    --border-color: #e2e8e6;
    --border-color-hover: #c4d1cd;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-stack: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ==========================================
   RESET & BASICS
   ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

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

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

h1 {
    font-size: 2.7rem;
    margin-bottom: 16px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.section-title {
    max-width: 700px;
    margin: 0 auto 48px auto;
    text-align: center;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 8px;
}

/* ==========================================
   BUTTONS & ACTIONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: #111111;
    border-color: var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 177, 54, 0.3);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-block {
    display: flex;
    width: 100%;
}

.whatsapp-icon, .phone-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* ==========================================
   HEADER SECTION
   ========================================== */
.site-header {
    background-color: var(--bg-white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

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

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
}

.phone-link:hover {
    color: var(--primary-hover);
}

.btn-whatsapp-header {
    padding: 8px 16px;
    font-size: 0.85rem;
    background-color: #25d366;
    color: #ffffff;
    border-radius: var(--radius-sm);
}

.btn-whatsapp-header:hover {
    background-color: #20ba5a;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e3531 100%);
    padding: 80px 0;
    color: #ffffff;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3.2rem;
    margin-top: 12px;
}

.badge-partner {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(255, 177, 54, 0.15);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtext {
    font-size: 1.15rem;
    color: #cdd6d4;
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #a3b8b4;
}

.trust-check {
    color: #25d366;
    margin-right: 6px;
    font-weight: bold;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    border: none;
}

.hero-card h3 {
    margin-bottom: 8px;
}

.hero-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Forms styling */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
    margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-stack);
    font-size: 0.95rem;
    color: var(--text-color);
    background-color: var(--bg-white);
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 81, 76, 0.1);
}

/* ==========================================
   TRUST BAR
   ========================================== */
.trust-bar {
    background-color: var(--bg-white);
    padding: 24px 0;
    box-shadow: var(--shadow-sm);
}

.trust-bar-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 220px;
}

.badge-icon {
    font-size: 2rem;
    background-color: var(--primary-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.badge-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.badge-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================
   PRODUCT CATALOG SECTION
   ========================================== */
.catalog-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.catalog-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-stack);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--border-color-hover);
    color: var(--primary);
}

.tab-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

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

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.prod-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-badge {
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.stock-badge.in-stock {
    background-color: #e6f9ed;
    color: #0c8c3a;
}

.stock-badge.lead-time {
    background-color: #fff8e6;
    color: #b58000;
}

.product-image-wrap {
    background-color: #f7f9f8;
    height: 180px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 16px;
    overflow: hidden;
}

.product-thumb {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-thumb {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-specs {
    list-style: none;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
}

.product-specs li {
    font-size: 0.85rem;
    color: var(--text-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.product-specs li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -0.5em;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* ==========================================
   PROCUREMENT PROCESS SECTION
   ========================================== */
.process-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 24px;
    position: relative;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 800;
    background-color: var(--primary-light);
    color: var(--primary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    border: 2px solid var(--primary);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.benefit-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-color-hover);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-light);
    border-left: 5px solid var(--primary);
    padding: 32px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.rating {
    color: #ffb136;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-details strong {
    font-size: 0.95rem;
    color: var(--primary);
}

.user-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   FAQ ACCORDION SECTION
   ========================================== */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-sm);
}

summary {
    padding: 16px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
    cursor: pointer;
    outline: none;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   RFQ FORM SECTION
   ========================================== */
.quote-form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-outer-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.form-info-pane {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e3531 100%);
    color: #ffffff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-info-pane h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.form-info-pane p {
    color: #cdd6d4;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-line {
    font-size: 0.95rem;
    color: #ffffff;
}

.form-trust-banner {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #a3b8b4;
}

.form-inputs-pane {
    padding: 48px;
}

.form-inputs-pane h3 {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ==========================================
   MODALS
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 33, 30, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-white);
    color: var(--text-color);
    max-width: 450px;
    width: 90%;
    text-align: center;
    padding: 40px;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-success-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 16px;
}

.modal-card h3 {
    margin-bottom: 12px;
}

.modal-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* ==========================================
   STICKY MOBILE CTA
   ========================================== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    padding: 12px 16px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 90;
    display: none;
}

.sticky-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.site-footer {
    background-color: var(--bg-dark);
    color: #cdd6d4;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: #a3b8b4;
    margin-top: 4px;
}

.footer-right {
    text-align: right;
    font-size: 0.9rem;
}

.footer-right a:hover {
    color: var(--accent);
}

/* ==========================================
   ANIMATIONS & RESPONSIVE
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Screen Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image-pane {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .form-outer-container {
        grid-template-columns: 1fr;
    }
    .form-info-pane {
        padding: 40px;
    }
}

/* Mobile Screen Styles */
@media (max-width: 767px) {
    html {
        font-size: 15px;
    }
    .container {
        padding: 0 16px;
    }
    .header-contact .phone-link {
        display: none;
    }
    .hero-section {
        padding: 40px 0;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    .trust-bar {
        padding: 16px 0;
    }
    .trust-badge {
        min-width: 100%;
    }
    .catalog-section, .process-section, .benefits-section, .testimonials-section, .faq-section, .quote-form-section {
        padding: 50px 0;
    }
    .tab-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        flex: 1 1 calc(33.3% - 12px);
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-inputs-pane {
        padding: 30px 16px;
    }
    .form-info-pane {
        padding: 30px 16px;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-right {
        text-align: center;
    }
    
    /* Show sticky mobile bar & adjust body padding */
    body {
        padding-bottom: 74px; 
    }
    .mobile-sticky-cta {
        display: block;
    }
}

/* ==========================================
   TRUST, LOGO CLOUD & CONVERSION STYLES
   ========================================== */

/* Hero rating elements */
.hero-header-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: #ffffff;
    transition: var(--transition);
}

.google-rating-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.rating-stars {
    color: var(--accent);
    letter-spacing: 1px;
}

.rating-val {
    font-weight: 700;
}

.rating-count {
    color: #a3b8b4;
}

/* Client Logo Cloud Section */
.logo-cloud-section {
    background-color: var(--bg-white);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.logo-cloud-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.logo-item {
    font-size: 1.1rem;
    font-weight: 800;
    color: #b0c2be;
    letter-spacing: 3px;
    user-select: none;
    transition: var(--transition);
    padding: 8px 16px;
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
}

.logo-item:hover {
    color: var(--primary);
    background-color: var(--primary-light);
    border-color: rgba(46, 81, 76, 0.15);
}

/* Pulsing Active Sales Team Indicator */
.form-live-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    border: 1px solid rgba(46, 81, 76, 0.12);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.pulse-dot::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: pulseGlow 1.8s infinite ease-in-out;
    opacity: 0.8;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}

.status-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
}

/* Security Notice inside Forms */
.form-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.form-title-wrap h3 {
    margin-bottom: 0;
}

.form-trust-bullets {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-trust-bullets li {
    font-size: 0.92rem;
    font-weight: 600;
    color: #cdd6d4;
}

/* Work Email validation Nudge */
.email-nudge {
    font-size: 0.82rem;
    font-weight: 600;
    color: #d97706; /* warm B2B warning orange */
    background-color: #fffbeb;
    border: 1px solid #fef3c7;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    margin-top: 6px;
    animation: fadeIn 0.3s ease;
}

/* Button Loading State & Spinner */
.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: btnSpin 0.8s linear infinite;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

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

/* Responsive updates for newly added components */
@media (max-width: 767px) {
    .hero-header-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .google-rating-badge {
        width: auto;
    }
    .logo-grid {
        gap: 20px;
    }
    .logo-item {
        font-size: 0.95rem;
        padding: 6px 12px;
        letter-spacing: 2px;
    }
    .form-title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Custom / Unlisted Model Card styling */
.custom-model-card {
    border: 2px dashed rgba(46, 81, 76, 0.25) !important;
    background: linear-gradient(to bottom, #ffffff, #fcfdfd) !important;
    transition: var(--transition);
}

.custom-model-card:hover {
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-md) !important;
    transform: translateY(-4px);
}

.custom-badge {
    background-color: var(--primary) !important;
    color: #ffffff !important;
}

.custom-req-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    height: 120px;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
}

.custom-req-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
