Files
tenderpilot/public/styles.css

1272 lines
22 KiB
CSS
Raw Normal View History

/* Reset and Base Styles */
2026-02-14 07:43:48 +00:00
* {
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
margin: 0;
padding: 0;
box-sizing: border-box;
2026-02-14 07:43:48 +00:00
}
:root {
--primary: #1e40af;
--primary-dark: #1e3a8a;
--primary-light: #3b82f6;
--accent: #f59e0b;
--text-primary: #1f2937;
--text-secondary: #4b5563;
--text-light: #6b7280;
--bg-primary: #ffffff;
--bg-secondary: #f9fafb;
--bg-alt: #f3f4f6;
--border: #e5e7eb;
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
2026-02-14 07:43:48 +00:00
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
color: var(--text-primary);
line-height: 1.6;
background: var(--bg-primary);
font-size: 16px;
2026-02-14 07:43:48 +00:00
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
2026-02-14 07:43:48 +00:00
}
/* Header */
.header {
position: sticky;
top: 0;
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
z-index: 1000;
box-shadow: var(--shadow-sm);
2026-02-14 07:43:48 +00:00
}
.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.75rem 0;
min-height: 90px;
2026-02-14 07:43:48 +00:00
}
.nav-brand {
display: flex;
align-items: center;
gap: 0.75rem;
font-weight: 700;
font-size: 1.25rem;
color: var(--primary);
text-decoration: none;
2026-02-14 07:43:48 +00:00
}
.logo-icon {
width: auto !important;
height: 120px !important;
display: block;
2026-02-14 07:43:48 +00:00
}
.logo-text {
color: var(--text-primary);
2026-02-14 07:43:48 +00:00
}
.nav-menu {
display: flex;
list-style: none;
align-items: center;
gap: 2rem;
2026-02-14 07:43:48 +00:00
}
.nav-menu a {
color: var(--text-secondary);
text-decoration: none;
font-weight: 500;
transition: color 0.2s;
font-size: 1rem;
}
.nav-login { color: var(--primary) !important; font-weight: 600;}
.nav-menu a:hover {
color: var(--primary);
2026-02-14 07:43:48 +00:00
}
.mobile-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
2026-02-14 07:43:48 +00:00
}
.mobile-toggle span {
width: 24px;
height: 2px;
background: var(--text-primary);
transition: all 0.3s;
2026-02-14 07:43:48 +00:00
}
/* Buttons */
.btn {
display: inline-block;
padding: 0.625rem 1.5rem;
border-radius: 0.5rem;
font-weight: 600;
text-decoration: none;
text-align: center;
transition: all 0.2s;
border: none;
cursor: pointer;
font-size: 1rem;
line-height: 1.5;
2026-02-14 07:43:48 +00:00
}
.btn-primary {
background: var(--primary);
color: white;
padding: 16px 40px;
font-size: 1.125rem;
2026-02-14 07:43:48 +00:00
}
.btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-1px);
box-shadow: var(--shadow-md);
2026-02-14 07:43:48 +00:00
}
.btn-secondary {
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
padding: 14px 38px;
font-size: 1.125rem;
2026-02-14 07:43:48 +00:00
}
.btn-secondary:hover {
background: rgba(59, 130, 246, 0.1);
color: var(--primary-dark);
transform: translateY(-1px);
2026-02-14 07:43:48 +00:00
}
.btn-outline {
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
2026-02-14 07:43:48 +00:00
}
.btn-outline:hover {
background: var(--primary);
color: white;
transform: translateY(-1px);
2026-02-14 07:43:48 +00:00
}
.btn-lg {
padding: 16px 40px;
font-size: 1.125rem;
2026-02-14 07:43:48 +00:00
}
/* Hero Section */
.hero {
padding: 5rem 0 6rem;
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
2026-02-14 07:43:48 +00:00
}
.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
2026-02-14 07:43:48 +00:00
}
.hero-content {
max-width: 600px;
2026-02-14 07:43:48 +00:00
}
.hero-title {
font-size: 3rem;
font-weight: 800;
line-height: 1.15;
color: var(--text-primary);
margin-bottom: 1.5rem;
letter-spacing: -0.02em;
}
.hero-subtitle {
font-size: 1.125rem;
color: #374151;
margin-bottom: 2.5rem;
line-height: 1.7;
}
.hero-cta {
display: flex;
gap: 0.875rem;
margin-bottom: 3rem;
flex-wrap: wrap;
}
.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
padding: 2rem 0 0;
border-top: 1px solid rgba(30, 64, 175, 0.1);
}
.stat {
text-align: left;
}
.stat-number {
font-size: 2.5rem;
font-weight: 800;
color: #1e40af !important;
line-height: 1;
margin-bottom: 0.5rem;
}
.stat-label {
font-size: 13px;
font-weight: 600;
color: var(--text-secondary);
line-height: 1.4;
}
/* Hero Product Mockup - TASK 1: Enhanced Premium Feel */
.hero-mockup {
perspective: 1000px;
}
.browser-window {
background: white;
border-radius: 16px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
border: 1px solid rgba(0, 0, 0, 0.08);
overflow: hidden;
transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
transition: transform 0.3s ease;
}
.browser-window:hover {
transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}
.browser-header {
background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
padding: 12px 16px;
border-bottom: 1px solid #e5e7eb;
display: flex;
align-items: center;
gap: 12px;
position: relative;
}
.browser-header::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100%;
background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
pointer-events: none;
}
.browser-dots {
display: flex;
gap: 6px;
position: relative;
z-index: 1;
}
.browser-dots span {
width: 10px;
height: 10px;
border-radius: 50%;
background: #d1d5db;
}
.browser-dots span:nth-child(1) {
background: #ef4444;
}
.browser-dots span:nth-child(2) {
background: #f59e0b;
}
.browser-dots span:nth-child(3) {
background: #10b981;
}
.browser-title {
font-size: 12px;
color: #6b7280;
font-weight: 600;
position: relative;
z-index: 1;
}
.dashboard-content {
padding: 24px;
background: #fafbfc;
}
.dashboard-search {
background: white;
border: 2px solid #e5e7eb;
border-radius: 8px;
padding: 14px 16px;
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
2026-02-14 07:43:48 +00:00
}
.search-icon {
width: 20px;
height: 20px;
color: #9ca3af;
stroke-width: 2;
2026-02-14 07:43:48 +00:00
}
.search-text {
color: #9ca3af;
font-size: 14px;
2026-02-14 07:43:48 +00:00
}
.dashboard-filters {
display: flex;
gap: 8px;
margin-bottom: 20px;
}
.filter-chip {
background: #dbeafe;
color: #1e40af;
padding: 6px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}
.tender-cards {
display: flex;
flex-direction: column;
gap: 12px;
}
.tender-card {
background: white;
border: 1px solid #e5e7eb;
border-left: 4px solid #1e40af;
border-radius: 8px;
padding: 16px;
}
.tender-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.tender-badge {
background: #10b981;
color: white;
padding: 3px 8px;
border-radius: 4px;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.5px;
}
.tender-card:nth-child(2) .tender-badge {
background: #f59e0b;
}
.tender-source {
font-size: 11px;
color: #6b7280;
font-weight: 600;
}
.tender-title {
font-size: 14px;
font-weight: 700;
color: #1f2937;
margin-bottom: 8px;
}
.tender-meta {
display: flex;
gap: 16px;
font-size: 12px;
color: #6b7280;
margin-bottom: 10px;
}
.tender-match {
font-size: 12px;
font-weight: 700;
color: #10b981;
}
/* Section Styles */
.section {
padding: 5rem 0;
}
.section-alt {
background: var(--bg-secondary);
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-title {
font-size: 2.5rem;
font-weight: 800;
color: var(--text-primary);
margin-bottom: 1rem;
letter-spacing: -0.01em;
}
.section-subtitle {
font-size: 1.125rem;
color: var(--text-secondary);
line-height: 1.6;
}
/* Features Section */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
2026-02-14 07:43:48 +00:00
}
.feature-card {
background: white;
padding: 2rem;
border-radius: 1rem;
box-shadow: var(--shadow-sm);
transition: all 0.3s ease;
border: 1px solid var(--border);
border-left: 4px solid #1e40af;
2026-02-14 07:43:48 +00:00
}
.feature-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
border-color: var(--primary-light);
}
.feature-icon-wrapper {
width: 64px;
height: 64px;
background: rgba(59, 130, 246, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
}
.feature-icon {
width: 32px;
height: 32px;
color: var(--primary);
2026-02-14 07:43:48 +00:00
}
.feature-card h3 {
font-size: 1.375rem;
font-weight: 700;
margin-bottom: 0.875rem;
color: var(--text-primary);
2026-02-14 07:43:48 +00:00
}
.feature-card p {
color: var(--text-secondary);
line-height: 1.7;
font-size: 1rem;
2026-02-14 07:43:48 +00:00
}
/* How It Works Section */
.steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
max-width: 1100px;
margin: 0 auto;
position: relative;
2026-02-14 07:43:48 +00:00
}
.step {
text-align: center;
position: relative;
2026-02-14 07:43:48 +00:00
}
.step:not(:last-child)::after {
content: '';
position: absolute;
top: 36px;
left: calc(50% + 36px);
width: calc(100% - 36px);
height: 2px;
background: linear-gradient(to right, var(--primary) 0%, var(--primary) 50%, transparent 50%);
background-size: 12px 2px;
z-index: 0;
}
.step-number {
width: 72px;
height: 72px;
margin: 0 auto 1.5rem;
background: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
font-weight: 700;
box-shadow: var(--shadow-md);
position: relative;
z-index: 1;
}
.step h3 {
font-size: 1.375rem;
font-weight: 700;
margin-bottom: 0.875rem;
color: var(--text-primary);
}
.step p {
color: var(--text-secondary);
line-height: 1.7;
font-size: 1rem;
}
/* Pricing Section - TASK 3: Enhanced Growth Card */
2026-02-14 07:43:48 +00:00
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 1100px;
margin: 0 auto;
align-items: start;
2026-02-14 07:43:48 +00:00
}
.pricing-card {
background: white;
border: 2px solid var(--border);
border-radius: 1rem;
padding: 2.5rem;
text-align: center;
position: relative;
transition: all 0.3s ease;
2026-02-14 07:43:48 +00:00
}
.pricing-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-xl);
border-color: var(--primary-light);
2026-02-14 07:43:48 +00:00
}
.pricing-card-featured {
background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
border-color: var(--primary);
border-top: 4px solid #1e40af;
box-shadow: 0 20px 40px -10px rgba(30, 64, 175, 0.3);
transform: scale(1.05);
2026-02-14 07:43:48 +00:00
}
.pricing-card-featured:hover {
transform: scale(1.05) translateY(-4px);
box-shadow: 0 25px 50px -12px rgba(30, 64, 175, 0.4);
2026-02-14 07:43:48 +00:00
}
.pricing-badge {
position: absolute;
top: -16px;
left: 50%;
transform: translateX(-50%);
background: var(--primary);
color: white;
padding: 0.5rem 1.5rem;
border-radius: 2rem;
font-size: 0.8125rem;
font-weight: 700;
box-shadow: 0 4px 8px -2px rgba(30, 64, 175, 0.3);
letter-spacing: 0.05em;
text-transform: uppercase;
white-space: nowrap;
z-index: 1;
}
.pricing-header h3 {
font-size: 1.75rem;
font-weight: 700;
margin-bottom: 1.25rem;
color: var(--text-primary);
2026-02-14 07:43:48 +00:00
}
.price {
font-size: 3rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 2rem;
line-height: 1;
}
.pricing-card-featured .price {
transform: scale(1.2);
display: inline-block;
margin: 1rem 0 2.5rem;
}
.currency {
font-size: 1.75rem;
vertical-align: super;
font-weight: 600;
2026-02-14 07:43:48 +00:00
}
.period {
font-size: 1.125rem;
color: var(--text-secondary);
font-weight: 400;
2026-02-14 07:43:48 +00:00
}
.pricing-features {
list-style: none;
text-align: left;
margin-bottom: 2rem;
2026-02-14 07:43:48 +00:00
}
.pricing-features li {
padding: 0.875rem 0;
border-bottom: 1px solid var(--border);
color: var(--text-secondary);
position: relative;
padding-left: 2rem;
font-size: 1rem;
line-height: 1.7;
}
.pricing-card-featured .pricing-features li {
border-bottom-color: rgba(30, 64, 175, 0.15);
}
.pricing-features li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
font-size: 1.125rem;
}
.pricing-features li:last-child {
border-bottom: none;
2026-02-14 07:43:48 +00:00
}
.pricing-card-featured .btn-primary {
padding: 18px 48px;
font-size: 1.1875rem;
}
/* Testimonials Section - TASK 2: Added Avatars */
.company-logos {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 3rem;
margin-bottom: 4rem;
padding: 2rem 0;
}
.logo-item {
opacity: 0.5;
transition: opacity 0.3s ease;
}
.logo-item:hover {
opacity: 0.8;
}
.logo-item svg {
height: 40px;
width: auto;
color: #6b7280;
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
}
.testimonial-card {
background: white;
padding: 2.25rem;
border-radius: 1rem;
box-shadow: var(--shadow-sm);
border: 1px solid var(--border);
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.testimonial-quote {
font-size: 1.0625rem;
color: var(--text-primary);
margin-bottom: 1.5rem;
line-height: 1.7;
font-style: italic;
}
.testimonial-quote:before {
content: '"';
font-size: 4rem;
color: var(--primary);
opacity: 0.4;
line-height: 0;
display: block;
margin-bottom: 1rem;
font-style: normal;
font-weight: 800;
}
.testimonial-author {
margin-top: 1.5rem;
padding-top: 1.25rem;
border-top: 1px solid var(--border);
display: flex;
align-items: center;
gap: 1rem;
}
.testimonial-avatar {
width: 56px;
height: 56px;
min-width: 56px;
border-radius: 50%;
overflow: hidden;
}
.testimonial-info {
flex: 1;
}
.testimonial-name {
font-weight: 600;
color: var(--text-primary);
font-size: 1rem;
margin-bottom: 0.25rem;
}
.testimonial-company {
font-size: 0.875rem;
color: var(--text-secondary);
}
/* FAQ Section */
.faq-list {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
border-bottom: none;
}
.faq-question {
width: 100%;
padding: 1.5rem 0;
background: none;
border: none;
text-align: left;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1.5rem;
font-size: 1.0625rem;
font-weight: 700;
color: var(--text-primary);
transition: color 0.2s;
}
.faq-question:hover {
color: var(--primary);
}
.faq-icon {
width: 24px;
height: 24px;
min-width: 24px;
color: var(--primary);
transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
transform: rotate(180deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
max-height: 500px;
padding-bottom: 1.5rem;
}
.faq-answer p {
color: var(--text-secondary);
line-height: 1.7;
font-size: 1rem;
2026-02-14 07:43:48 +00:00
}
/* Signup Section */
.signup {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: white;
2026-02-14 07:43:48 +00:00
}
.signup-content {
max-width: 700px;
margin: 0 auto;
text-align: center;
2026-02-14 07:43:48 +00:00
}
.signup-title {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 1rem;
letter-spacing: -0.01em;
}
.signup-subtitle {
font-size: 1.25rem;
margin-bottom: 2.5rem;
opacity: 0.95;
line-height: 1.6;
2026-02-14 07:43:48 +00:00
}
.signup-form {
max-width: 600px;
margin: 0 auto;
}
.form-group {
display: flex;
gap: 0.875rem;
margin-bottom: 1rem;
}
.form-group input {
flex: 1;
padding: 1rem 1.5rem;
border: 2px solid transparent;
border-radius: 0.5rem;
font-size: 1rem;
outline: none;
transition: border-color 0.2s;
}
.form-group input:focus {
border-color: var(--accent);
2026-02-14 07:43:48 +00:00
}
.form-note {
font-size: 0.875rem;
opacity: 0.85;
margin-top: 1rem;
line-height: 1.5;
2026-02-14 07:43:48 +00:00
}
.form-note a {
color: white;
text-decoration: underline;
2026-02-14 07:43:48 +00:00
}
.form-message {
margin-top: 1rem;
padding: 1rem;
border-radius: 0.5rem;
display: none;
2026-02-14 07:43:48 +00:00
}
.form-message.success {
display: block;
background: rgba(34, 197, 94, 0.2);
border: 1px solid rgba(34, 197, 94, 0.4);
color: #dcfce7;
2026-02-14 07:43:48 +00:00
}
.form-message.error {
display: block;
background: rgba(239, 68, 68, 0.2);
border: 1px solid rgba(239, 68, 68, 0.4);
color: #fecaca;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
2026-02-14 07:43:48 +00:00
}
/* Footer */
.footer {
background: var(--text-primary);
color: white;
padding: 4rem 0 2rem;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 3rem;
margin-bottom: 3rem;
}
.footer-brand {
display: flex;
align-items: center;
gap: 0.75rem;
font-weight: 700;
font-size: 1.25rem;
margin-bottom: 1rem;
}
.footer-brand .logo-icon {
width: auto !important;
height: 52px !important;
2026-02-14 07:43:48 +00:00
}
.footer-desc {
color: var(--text-light);
line-height: 1.7;
font-size: 1rem;
}
.footer-col h4 {
margin-bottom: 1.125rem;
font-size: 1.0625rem;
font-weight: 700;
}
.footer-col ul {
list-style: none;
}
.footer-col ul li {
margin-bottom: 0.75rem;
}
.footer-col a {
color: var(--text-light);
text-decoration: none;
transition: color 0.2s;
font-size: 1rem;
}
.footer-col a:hover {
color: white;
}
.footer-bottom {
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
color: var(--text-light);
font-size: 0.875rem;
2026-02-14 07:43:48 +00:00
}
/* Responsive */
@media (max-width: 968px) {
.pricing-grid {
grid-template-columns: 1fr;
max-width: 420px;
}
.pricing-card-featured {
transform: scale(1);
}
.hero-grid {
grid-template-columns: 1fr;
gap: 3rem;
}
.hero-mockup {
order: -1;
}
.hero-content {
max-width: 100%;
text-align: center;
}
.hero-cta {
justify-content: center;
}
.hero-stats {
justify-content: center;
}
.steps {
grid-template-columns: 1fr 1fr;
}
.step:nth-child(2)::after {
display: none;
}
.step:nth-child(3)::after {
left: calc(50% + 36px);
}
.company-logos {
gap: 2rem;
}
}
2026-02-14 07:43:48 +00:00
@media (max-width: 768px) {
.mobile-toggle {
display: flex;
}
2026-02-14 07:43:48 +00:00
.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 1.5rem;
box-shadow: var(--shadow-lg);
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
gap: 0;
}
2026-02-14 07:43:48 +00:00
.nav-menu.active {
max-height: 500px;
border-bottom: 1px solid var(--border);
}
2026-02-14 07:43:48 +00:00
.nav-menu li {
width: 100%;
padding: 0.75rem 0;
border-bottom: 1px solid var(--border);
}
.nav-menu li:last-child {
border-bottom: none;
}
.nav-menu a {
display: block;
}
.hero {
padding: 4rem 0 5rem;
}
.hero-title {
font-size: 2.5rem;
}
2026-02-14 07:43:48 +00:00
.hero-subtitle {
font-size: 1.125rem;
}
.hero-cta {
flex-direction: column;
max-width: 300px;
margin-left: auto;
margin-right: auto;
}
.hero-cta .btn {
width: 100%;
}
.hero-stats {
grid-template-columns: 1fr;
gap: 2rem;
max-width: 300px;
margin: 0 auto;
padding-top: 2rem;
}
.stat {
text-align: center;
}
.section-title {
font-size: 2rem;
}
.section {
padding: 4rem 0;
}
.features-grid,
.testimonials-grid {
grid-template-columns: 1fr;
}
.steps {
grid-template-columns: 1fr;
}
.step::after {
display: none !important;
}
.form-group {
flex-direction: column;
}
.form-group .btn {
width: 100%;
}
.footer-grid {
grid-template-columns: 1fr;
gap: 2.5rem;
}
.browser-window {
transform: none;
}
.company-logos {
gap: 1.5rem;
}
.logo-item svg {
height: 32px;
}
}
@media (max-width: 480px) {
.hero {
padding: 3rem 0 4rem;
}
.hero-title {
font-size: 2rem;
line-height: 1.2;
}
.hero-subtitle {
font-size: 1rem;
}
.section {
padding: 3rem 0;
}
.section-title {
font-size: 1.75rem;
}
.btn-lg {
padding: 0.75rem 1.5rem;
font-size: 1rem;
}
.stat-number {
font-size: 2.75rem;
}
.stat-label {
font-size: 13px;
}
.dashboard-content {
padding: 16px;
}
.tender-card {
padding: 12px;
}
}
/* Fix: ensure btn-primary/btn-outline text colour wins over parent link styles */
a.btn-primary,
a.btn-primary:hover,
a.btn-primary:visited {
color: white !important;
}
a.btn-outline,
a.btn-outline:hover,
a.btn-outline:visited {
color: var(--primary) !important;
}
a.btn-outline:hover {
color: var(--primary-dark) !important;
}
2026-02-14 07:43:48 +00:00
/* Re-enable text selection and cursor on form inputs */
input, textarea, select, [contenteditable] {
-webkit-user-select: text;
-moz-user-select: text;
user-select: text;
cursor: text;
2026-02-14 07:43:48 +00:00
}