/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a365d;
    --navy-dark: #0f2440;
    --navy-light: #2b6cb0;
    --white: #ffffff;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --gray-200: #e2e8f0;
    --gray-400: #a0aec0;
    --gray-600: #718096;
    --gray-800: #2d3748;
    --text: #1a202c;
    --text-light: #4a5568;
    --green: #38a169;
    --green-bg: #f0fff4;
    --red: #e53e3e;
    --red-bg: #fff5f5;
    --orange: #dd6b20;
    --orange-bg: #fffaf0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.02em;
}

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

.btn-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(43, 108, 176, 0.4);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 16px 0;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

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

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

.logo-icon {
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .logo-icon {
    color: var(--navy);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    transition: var(--transition);
}

.navbar.scrolled .logo-name {
    color: var(--navy);
}

.logo-tagline {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: var(--transition);
}

.navbar.scrolled .logo-tagline {
    color: var(--gray-600);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--navy-light);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: var(--gray-800);
}

.navbar.scrolled .nav-link:hover {
    color: var(--navy-light);
}

.btn-nav {
    padding: 10px 24px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
}

.btn-nav:hover {
    background: var(--white);
    color: var(--navy) !important;
    border-color: var(--white);
}

.btn-nav::after {
    display: none;
}

.navbar.scrolled .btn-nav {
    border-color: var(--navy-light);
    color: var(--navy-light);
}

.navbar.scrolled .btn-nav:hover {
    background: var(--navy-light);
    color: var(--white) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--navy);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    inset: 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.02'%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");
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--navy-light);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.7;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.value-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== SERVICES ===== */
.services {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--navy-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 24px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Service Expand Button */
.service-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--gray-200);
    color: var(--navy-light);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.service-expand-btn:hover {
    background: var(--navy-light);
    color: var(--white);
    border-color: var(--navy-light);
}

.service-expand-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.service-expand-btn.active i {
    transform: rotate(180deg);
}

/* Service Details (expandable) */
.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    text-align: left;
}

.service-details.open {
    max-height: 600px;
    padding-top: 20px;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    font-size: 0.83rem;
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    line-height: 1.5;
}

.service-details li:last-child {
    border-bottom: none;
}

.service-details li strong {
    color: var(--navy);
}

/* ===== INDUSTRIES ===== */
.industries {
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.industry-item {
    text-align: center;
    padding: 30px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
}

.industry-item:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.industry-icon {
    font-size: 2rem;
    color: var(--navy-light);
    margin-bottom: 14px;
    transition: var(--transition);
}

.industry-item:hover .industry-icon {
    color: var(--white);
}

.industry-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

/* ===== WHY US ===== */
.why-us {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
}

.why-us .section-header h2 {
    color: var(--white);
}

.why-us .section-line {
    background: rgba(255, 255, 255, 0.5);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    padding: 36px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.why-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 12px;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-item a {
    color: var(--navy-light);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--navy);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== MAP ===== */
.map-section {
    line-height: 0;
}

.map-section iframe {
    filter: grayscale(30%);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    color: var(--white);
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-tagline {
    color: rgba(255, 255, 255, 0.6);
}

.footer-about p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer ul a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== VERIFY PAGE ===== */
.verify-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--gray-50);
}

.verify-header {
    text-align: center;
    margin-bottom: 40px;
}

.verify-header .verify-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.verify-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.verify-header p {
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.verify-search-box {
    max-width: 600px;
    margin: 0 auto 40px;
}

.verify-input-group {
    display: flex;
    gap: 12px;
}

.verify-input-group input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}

.verify-input-group input:focus {
    outline: none;
    border-color: var(--navy-light);
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

.verify-input-group .btn {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Verify Results */
.verify-result {
    max-width: 700px;
    margin: 0 auto 50px;
}

.verify-loading {
    text-align: center;
    padding: 30px;
    color: var(--text-light);
    font-size: 1rem;
}

.verify-loading i {
    margin-right: 8px;
}

.verify-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 24px;
}

.verify-badge i {
    font-size: 1.3rem;
}

.status-pass {
    color: var(--green);
}

.verify-badge.status-pass {
    background: var(--green-bg);
    border: 1px solid var(--green);
}

.status-fail {
    color: var(--red);
}

.verify-badge.status-fail {
    background: var(--red-bg);
    border: 1px solid var(--red);
}

.status-notfound {
    color: var(--orange);
}

.verify-badge.status-notfound {
    background: var(--orange-bg);
    border: 1px solid var(--orange);
}

.report-details {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.report-row {
    display: flex;
    padding: 14px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.report-row:last-child {
    border-bottom: none;
}

.report-label {
    width: 140px;
    min-width: 140px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.report-value {
    font-size: 0.92rem;
    color: var(--text);
}

.report-summary {
    background: var(--gray-50);
}

.verify-not-found {
    text-align: center;
}

.verify-not-found .verify-badge {
    justify-content: center;
}

.verify-not-found p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.verify-not-found a {
    color: var(--navy-light);
    font-weight: 500;
}

/* Report Tests Table */
.report-tests {
    margin-top: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.report-tests h4 {
    padding: 16px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    margin: 0;
}

.test-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.test-row:last-child {
    border-bottom: none;
}

.test-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
}

.test-method {
    font-size: 0.78rem;
    color: var(--gray-600);
}

.test-result {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.test-result.status-pass {
    color: var(--green);
}

.test-result.status-fail {
    color: var(--red);
}

/* How Verification Works */
.verify-how {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.verify-how h3 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 36px;
}

.verify-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.verify-step {
    text-align: center;
    padding: 24px 16px;
}

.step-num {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 16px;
}

.verify-step h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.verify-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== SCROLL ANIMATIONS ===== */
.js-ready .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-ready .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .verify-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: rgba(255, 255, 255, 0.9);
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: block;
        font-size: 1rem;
    }

    .nav-menu .btn-nav {
        margin-top: 16px;
        text-align: center;
        border-color: rgba(255, 255, 255, 0.3);
    }

    .section {
        padding: 70px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 220px;
        text-align: center;
    }

    .verify-input-group {
        flex-direction: column;
    }

    .report-row {
        flex-direction: column;
        gap: 4px;
    }

    .report-label {
        width: auto;
        min-width: auto;
    }

    .test-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .test-result {
        justify-self: start;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .industry-item {
        padding: 20px 10px;
    }

    .industry-icon {
        font-size: 1.5rem;
    }
}
