/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #94a3b8;
    --accent: #60a5fa;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --light: #f1f5f9;
    --white: #ffffff;
    --silver: #cbd5e1;
    --chrome: #e5e7eb;
    --gradient-1: linear-gradient(135deg, #3b82f6 0%, #cbd5e1 100%);
    --gradient-2: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    --gradient-3: linear-gradient(135deg, #94a3b8 0%, #e5e7eb 100%);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-brand .logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}

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

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown > .nav-link {
    cursor: pointer;
}

.nav-dropdown > .nav-link::after {
    content: ' ▼';
    font-size: 0.65rem;
    margin-left: 0.25rem;
    display: inline-block;
}

.nav-dropdown:hover > .nav-link::after {
    width: auto !important;
}

.dropdown-menu {
    position: absolute !important;
    top: calc(100% + 1rem) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-10px) !important;
    background: white;
    list-style: none;
    padding: 0.5rem 0;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    pointer-events: none;
    display: block !important;
    margin: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto;
}

.dropdown-menu li {
    padding: 0;
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 2rem;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-2);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-button:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(30, 41, 59, 0.5) 100%);
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
    z-index: 2;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-2);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-3);
    bottom: -150px;
    left: -100px;
    animation-delay: 7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(50px, -50px); }
    66% { transform: translate(-50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(96, 165, 250, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

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

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

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* ERP Announcement Section */
.erp-announcement {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    padding: 80px 0;
    text-align: center;
}

.erp-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.erp-announcement .section-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.erp-announcement .section-title {
    color: white !important;
    margin-bottom: 1.5rem;
}

.erp-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.erp-notify-btn {
    background: white !important;
    color: #6366f1 !important;
}

.erp-notify-btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--light);
}

.services .section-title {
    color: var(--dark);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-card.highlight {
    background: var(--gradient-2);
    color: white;
}

.service-card.highlight .service-title,
.service-card.highlight .service-description,
.service-card.highlight .service-features li {
    color: white;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card.highlight .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.service-card.highlight .service-icon svg {
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-card.highlight .service-features li::before {
    color: rgba(255, 255, 255, 0.8);
}

/* Technologies Section */
.technologies {
    background: var(--dark);
    color: white;
}

.technologies .section-title {
    color: white;
}

.technologies .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.tech-category {
    background: var(--dark-light);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.tech-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.tech-category:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.05);
}

.tech-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--gradient-2);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Why Choose Section */
.why-choose {
    background: var(--light);
}

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

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.feature-item p {
    color: var(--gray);
    font-size: 0.9375rem;
}

.why-choose-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 6s ease-in-out infinite;
}

.card-icon {
    font-size: 2rem;
}

.card-text {
    font-weight: 600;
    color: var(--dark);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Contact Section */
.contact {
    background: var(--dark);
    color: white;
}

.contact .section-title {
    color: white;
}

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

.contact-description {
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0 2.5rem;
    font-size: 1.125rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
    text-align: left;
}

.contact-value {
    font-weight: 600;
    color: white;
}

.contact-form-wrapper {
    background: var(--dark-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

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

/* Signup Landing */
body.signup-page {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.12), transparent 30%), radial-gradient(circle at 80% 0%, rgba(245, 158, 11, 0.12), transparent 26%), linear-gradient(135deg, #0b1020 0%, #0f172a 35%, #0b1628 100%);
    color: #e2e8f0;
}

.signup-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.signup-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(600px at 15% 20%, rgba(14, 165, 233, 0.15), transparent 40%), radial-gradient(500px at 85% 10%, rgba(245, 158, 11, 0.12), transparent 35%), linear-gradient(120deg, rgba(14, 165, 233, 0.14), rgba(12, 74, 110, 0.08));
    filter: blur(0px);
    z-index: 1;
}

.signup-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.signup-hero__content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #f8fafc;
}

.signup-hero__content .lead {
    color: rgba(226, 232, 240, 0.85);
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(226, 232, 240, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.14);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 700;
    color: #bae6fd;
    margin-bottom: 1.5rem;
}

.signup-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.signup-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 0.9rem;
    background: rgba(226, 232, 240, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 999px;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 0.95rem;
}

.signup-form-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.signup-form-card h2 {
    color: #f8fafc;
    margin-bottom: 0.4rem;
}

.signup-form-card p {
    color: rgba(226, 232, 240, 0.8);
    margin-bottom: 1rem;
}

.signup-form-card label {
    display: block;
    margin: 1rem 0 0.4rem;
    color: #cbd5e1;
    font-weight: 600;
}

.signup-form-card input {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.6);
    color: #e2e8f0;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.signup-form-card input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.signup-form-card .btn-primary {
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.9rem 1.2rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: none;
}

.signup-form-card .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.35);
}

.signup-form-card #form-status {
    min-height: 1.5rem;
}

.microcopy {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.9);
    margin-top: 0.75rem;
}

.signup-meta {
    position: relative;
    z-index: 2;
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.meta-card {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    color: #e2e8f0;
}

.meta-card h3 {
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.signup-section {
    padding: 100px 0;
    background: #f1f5f9;
}

.signup-section .section-header h2 {
    color: #1e293b;
}

.signup-section .section-lead {
    color: #64748b;
}

.signup-section .eyebrow {
    color: #6366f1;
}

.signup-section .feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    color: #475569;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.signup-section .feature-card h3 {
    color: #1e293b;
}

.signup-section .feature-card p {
    color: #64748b;
}

.signup-section .feature-card ul {
    color: #475569;
}

.signup-section .icon-badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #6366f1;
}

.signup-section.alt {
    background: #e2e8f0;
    border-top: 1px solid #cbd5e1;
    border-bottom: 1px solid #cbd5e1;
}

.signup-section.alt h2 {
    color: #1e293b;
}

.signup-section.alt .eyebrow {
    color: #6366f1;
}

.signup-section.alt .section-lead {
    color: #64748b;
}

.signup-section.alt .timeline {
    border-left: 2px solid rgba(99, 102, 241, 0.4);
}

.signup-section.alt .step-dot {
    background: #6366f1;
    border: 3px solid #e2e8f0;
    box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.2);
}

.signup-section.alt .timeline-step h4 {
    color: #1e293b;
}

.signup-section.alt .timeline-step p {
    color: #64748b;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem;
}

.signup-page .section-header h2 {
    color: #f8fafc;
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.section-lead {
    color: rgba(226, 232, 240, 0.78);
}

.eyebrow {
    color: #bae6fd;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.feature-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
    color: #e2e8f0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.icon-badge {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(14, 165, 233, 0.05));
    border: 1px solid rgba(14, 165, 233, 0.4);
    color: #e2e8f0;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: rgba(226, 232, 240, 0.78);
    margin-bottom: 0.9rem;
}

.feature-card ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    color: rgba(226, 232, 240, 0.85);
}

.feature-card li {
    position: relative;
    padding-left: 1.25rem;
}

.feature-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    background: #0ea5e9;
    border-radius: 50%;
    transform: translateY(-50%);
}

.signup-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
}

.timeline {
    display: grid;
    gap: 1.25rem;
    border-left: 2px solid rgba(14, 165, 233, 0.25);
    padding-left: 1.5rem;
}

.timeline-step {
    display: grid;
    gap: 0.35rem;
    position: relative;
}

.step-dot {
    position: absolute;
    left: -2rem;
    top: 0.4rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0ea5e9;
    border: 3px solid #0b1220;
    box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.2);
}

.timeline-step h4 {
    color: #f8fafc;
    margin: 0;
}

.timeline-step p {
    color: rgba(226, 232, 240, 0.8);
}

.signup-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(12, 74, 110, 0.4)), #0b1220;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.signup-cta__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.signup-cta h2 {
    color: #f8fafc;
    margin-bottom: 0.4rem;
}

.signup-cta .section-lead {
    margin: 0;
}

.cta-button.ghost {
    background: transparent;
    border: 1px solid rgba(226, 232, 240, 0.3);
    color: #e2e8f0;
    box-shadow: none;
}

.cta-button.ghost:hover {
    background: rgba(226, 232, 240, 0.08);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .why-choose-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-visual {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }

    .navbar .container {
        position: relative;
    }

    .why-choose-visual {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .floating-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 60%;
    }

    .card-2 {
        align-self: flex-end;
    }

    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: white !important;
        flex-direction: column !important;
        padding: 2rem !important;
        gap: 1rem !important;
        transition: left 0.3s ease !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
        z-index: 99999 !important;
        display: flex !important;
    }

    .nav-menu.active {
        left: 0 !important;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.125rem;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        box-shadow: none !important;
        border: none !important;
        margin-top: 0 !important;
        padding: 0 !important;
        background: var(--light) !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        pointer-events: auto !important;
    }

    .nav-dropdown.open .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        margin-top: 0.5rem !important;
        padding: 0.5rem !important;
    }

    .dropdown-menu li {
        display: block !important;
        width: 100% !important;
    }

    .dropdown-menu a {
        display: block !important;
        padding: 0.75rem 1rem !important;
        color: var(--dark) !important;
        font-size: 1rem !important;
    }

    .navbar .container > button.cta-button,
    .navbar .container > a[style*="text-decoration"],
    .navbar button.cta-button {
        display: none !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
    }
}
