/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary: #c2410c;        /* Rich Orange */
    --primary-light: #d97706;  /* Burnt Orange */
    --primary-dark: #9a3412;   /* Dark Orange */
    --secondary: #2563eb;      /* Vibrant Blue */
    --accent: #8b5cf6;         /* Purple */
    --success: #059669;        /* Emerald */
    --warning: #d97706;        /* Burnt Orange (reused) */
    --danger: #dc2626;         /* Red */
    --bg: #ffffff;             /* White */
    --bg-light: #fef7f0;       /* Warm Off-White */
    --bg-dark: #fdf2f8;        /* Lighter Warm Off-White */
    --text: #1e293b;           /* Dark Slate */
    --text-light: #64748b;     /* Slate */
    --text-lighter: #94a3b8;   /* Lighter Slate */
    --border: #e5e7eb;         /* Light Gray */
    --border-dark: #d1d5db;    /* Slightly Darker Gray */

    /* Spacing */
    --radius: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(194, 65, 12, 0.1);
    --shadow: 0 1px 3px 0 rgba(194, 65, 12, 0.1), 0 1px 2px -1px rgba(194, 65, 12, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(194, 65, 12, 0.15), 0 2px 4px -2px rgba(194, 65, 12, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(194, 65, 12, 0.2), 0 4px 6px -4px rgba(194, 65, 12, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(194, 65, 12, 0.25), 0 8px 10px -6px rgba(194, 65, 12, 0.1);
    --shadow-primary: 0 4px 14px 0 rgba(194, 65, 12, 0.3);

    /* Transitions */
    --transition: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
    color: var(--primary);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== Typography ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: var(--radius);
    color: white;
    font-size: 0.875rem;
}

/* ===== Buttons ===== */
.btn,
.btn-solid,
.btn-outline,
.btn-secondary,
.btn-accent,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
}

.btn-solid {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(194, 65, 12, 0.25);
}

.btn-solid:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(194, 65, 12, 0.35);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 65, 12, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-secondary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.4);
}

.btn-accent {
    background: var(--accent);
    color: white;
    border: none;
}

.btn-accent:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border: none;
}

.btn-ghost:hover {
    color: var(--primary);
    background: var(--bg-dark);
}

.btn-full {
    width: 100%;
}

.btn-cta {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

.btn-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--text-light);
    background: transparent;
    border: 1px solid var(--border);
}

.btn-icon:hover {
    background: var(--bg-dark);
    color: var(--primary);
    border-color: var(--primary);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

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

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--bg-light);
    color: var(--text);
    font-size: 1.25rem;
    transition: var(--transition);
}

.hamburger:hover {
    background: var(--bg-dark);
}

/* ===== Hero Section ===== */
.hero {
    padding: 8rem 0 4rem;
    background: var(--bg);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-lighter);
    font-size: 0.875rem;
}

.hero-trust i {
    color: var(--success);
    font-size: 0.75rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dashboard Preview */
.dashboard-preview {
    width: 100%;
    max-width: 600px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.dashboard-tabs {
    display: flex;
    gap: 1rem;
}

.dashboard-tabs .tab {
    padding: 0.5rem 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
    border-radius: var(--radius);
    cursor: pointer;
}

.dashboard-tabs .tab.active {
    background: var(--primary);
    color: white;
}

.dashboard-actions {
    display: flex;
    gap: 0.5rem;
}

.dashboard-table {
    width: 100%;
    overflow-x: auto;
}

.dashboard-table table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.dashboard-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-table tbody tr:hover {
    background: var(--bg-light);
}

.table-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.table-cell i {
    color: var(--primary-light);
    font-size: 1rem;
}

.table-cell span {
    font-weight: 500;
    color: var(--text);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-badge.open {
    background: rgba(5, 150, 105, 0.15);
    color: var(--success);
}

.status-badge.closed {
    background: rgba(220, 38, 38, 0.15);
    color: var(--danger);
}

.status-badge.draft {
    background: rgba(217, 119, 6, 0.15);
    color: var(--warning);
}

/* ===== Stats Bar ===== */
.stats-bar {
    padding: 2rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ===== Features Section ===== */
.features {
    padding: 5rem 0;
    background: var(--bg);
}

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

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 65, 12, 0.1);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.feature-link:hover {
    gap: 0.75rem;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.step-visual {
    margin-top: 2rem;
}

/* Step Mockups */
.step-mockup {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.mockup-header span {
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
}

.mockup-body {
    padding: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.1);
}

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

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

/* Bid List */
.bid-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.bid-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bid-company {
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
}

.bid-date {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* Scoring Table */
.scoring-table {
    width: 100%;
    overflow-x: auto;
}

.scoring-table table {
    width: 100%;
    border-collapse: collapse;
}

.scoring-table th,
.scoring-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.scoring-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scoring-table tbody tr:hover {
    background: var(--bg-light);
}

.scoring-table td {
    color: var(--text);
    font-size: 0.875rem;
}

.scoring-table td:last-child {
    font-weight: 600;
    color: var(--primary);
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 5rem 0;
    background: var(--bg);
}

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

.why-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.why-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 65, 12, 0.1);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.why-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.why-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.why-card li i {
    color: var(--success);
    font-size: 0.75rem;
}

/* ===== AI Credits Section ===== */
.credit-info {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
}

.credit-note {
    max-width: 760px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.credit-note p {
    color: var(--text);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.7;
}

.credit-note i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0;
}

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

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

.author-info h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.75rem;
    margin: 0;
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 5rem 0;
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.pricing-card.popular {
    border-color: var(--secondary);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.pricing-header p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-price .currency {
    font-size: 1.25rem;
    vertical-align: top;
    color: var(--text-light);
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-price .period {
    color: var(--text-light);
    font-size: 0.875rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.pricing-features li i {
    color: var(--success);
    font-size: 0.75rem;
}

.pricing-card a {
    display: block;
    text-align: center;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 5rem 0;
    background: #1e293b; /* Dark Slate Blue (distinct from footer) */
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.cta-feature i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%); /* Modern dark slate */
    color: white;
    padding: 4rem 0 2rem;
}

.footer .logo {
    color: white;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ===== Contact Page ===== */
.contact-hero {
    padding: 8rem 0 4rem;
    background: var(--bg);
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-hero p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.contact-section {
    padding: 4rem 0;
    background: var(--bg);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1rem;
}

.info-content p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* ===== Forms ===== */
.contact-form,
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.1);
}

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

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    animation: slideIn 0.3s ease;
    position: relative;
}

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

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.modal-header p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--danger);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .dashboard-preview {
        max-width: 100%;
    }

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

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

    .process-step {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .stats-bar .container {
        gap: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

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

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .features-grid,
    .why-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .dashboard-table th,
    .dashboard-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }

    .scoring-table th,
    .scoring-table td {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
}
