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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #D1D5DB;
    background-color: #0A0F0F;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #0A0F0F;
    border-bottom: 1px solid #1F2A2A;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 170, 0.4);
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 30px rgba(0, 255, 170, 0.6);
    transform: translateY(-1px);
}

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

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00FFD1;
}

.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00FFAA, #00C2FF);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(0, 255, 170, 0.6);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    color: #0A0F0F;
    box-shadow: 0 4px 15px rgba(0, 255, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 170, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00FFD1;
    border: 2px solid #00FFD1;
    box-shadow: 0 0 15px rgba(0, 255, 209, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 255, 209, 0.1);
    box-shadow: 0 0 25px rgba(0, 255, 209, 0.4);
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    color: #0A0F0F;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 255, 170, 0.3);
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 255, 170, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-offer {
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    color: #0A0F0F;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 255, 170, 0.2);
}

.btn-offer:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 255, 170, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #0A0F0F;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 170, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(0, 255, 170, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Solutions Section */
.solutions {
    padding: 5rem 0;
    background: #0F1414;
}

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

.solution-card {
    background: rgba(15, 20, 20, 0.8);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #1F2A2A;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.05) 0%, rgba(0, 194, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #00FFD1;
    box-shadow: 0 20px 40px rgba(0, 255, 170, 0.15);
}

.solution-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    color: #0A0F0F;
    position: relative;
    z-index: 2;
}

.solution-title {
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.solution-description {
    color: #D1D5DB;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #0A0F0F;
}

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

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

.circuit-illustration {
    position: relative;
}

.circuit-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.circuit-path, .circuit-branch {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-in-out infinite;
}

.circuit-node {
    animation: pulse-node 2s ease-in-out infinite;
}

@keyframes drawPath {
    0%, 20% { stroke-dashoffset: 1000; }
    80%, 100% { stroke-dashoffset: 0; }
}

@keyframes pulse-node {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.about-content {
    padding-left: 2rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.about-text {
    color: #D1D5DB;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Offers Section */
.offers {
    padding: 5rem 0;
    background: #0F1414;
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-head h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: #9CA3AF;
    font-size: 1.1rem;
}

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

.offer-card {
    background: rgba(15, 20, 20, 0.8);
    border: 1px solid #1F2A2A;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.05) 0%, rgba(0, 194, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: #00FFD1;
    box-shadow: 0 15px 30px rgba(0, 255, 170, 0.15);
}

.offer-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    color: #0A0F0F;
    position: relative;
    z-index: 2;
}

.offer-card h3 {
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.offer-card p {
    color: #D1D5DB;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.offer-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.offer-card li {
    color: #9CA3AF;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.offer-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00FFD1;
    font-weight: bold;
}

.offers-note {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 20, 20, 0.5);
    border-radius: 12px;
    border: 1px solid #1F2A2A;
}

.offers-note p {
    color: #D1D5DB;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: #0A0F0F;
    text-align: center;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 255, 170, 0.3);
    letter-spacing: -0.01em;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #050808;
    border-top: 1px solid #1F2A2A;
    padding: 3rem 0 1rem 0;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(0, 255, 170, 0.3);
    letter-spacing: -0.01em;
}


.footer-info p {
    color: #9CA3AF;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-info a {
    color: #00FFD1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #00FFAA;
    text-shadow: 0 0 8px rgba(0, 255, 170, 0.5);
}

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

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #00FFD1;
    text-shadow: 0 0 8px rgba(0, 255, 209, 0.5);
}

.footer-bottom {
    border-top: 1px solid #1F2A2A;
    padding-top: 1.5rem;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* About Page Enhancements */
.about-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-main {
    max-width: none;
}

.content-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #1F2A2A;
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.section-intro {
    font-size: 1.1rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
    font-weight: 500;
}

.content-block p {
    color: #D1D5DB;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Specialties Grid */
.specialties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.specialty-card {
    background: rgba(15, 20, 20, 0.6);
    border: 1px solid #1F2A2A;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.05) 0%, rgba(0, 194, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.specialty-card:hover::before {
    opacity: 1;
}

.specialty-card:hover {
    border-color: #00FFD1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 170, 0.15);
}

.specialty-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    color: #0A0F0F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.specialty-card h3 {
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.specialty-card p {
    color: #D1D5DB;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(15, 20, 20, 0.4);
    border-radius: 12px;
    border: 1px solid #1F2A2A;
}

.stat-item {
    text-align: center;
}

.stat-number {
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9CA3AF;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.closing-text {
    font-weight: 500;
    color: #FFFFFF !important;
    font-size: 1.1rem;
}

/* Inquiry Form Sidebar */
.about-sidebar {
    position: sticky;
    top: 100px;
}

.inquiry-form-container {
    background: rgba(15, 20, 20, 0.8);
    border: 1px solid #1F2A2A;
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.inquiry-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.05) 0%, rgba(0, 194, 255, 0.05) 100%);
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.form-header h3 {
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.form-header p {
    color: #D1D5DB;
    font-size: 0.95rem;
    line-height: 1.5;
}

.inquiry-form {
    position: relative;
    z-index: 2;
}

.inquiry-form .form-group {
    margin-bottom: 1.5rem;
}

.inquiry-form label {
    display: block;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(10, 15, 15, 0.8);
    border: 1px solid #1F2A2A;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #00FFD1;
    box-shadow: 0 0 0 3px rgba(0, 255, 209, 0.1);
    background: rgba(10, 15, 15, 0.9);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: #9CA3AF;
}

.inquiry-form select {
    cursor: pointer;
}

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

.form-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.form-submit:hover {
    transform: translateY(-1px);
}

/* ===== JOIN PAGE ENHANCEMENTS ===== */

/* Join Hero Section */
.join-hero {
    background: linear-gradient(135deg, #0A0F0F 0%, #0F1414 100%);
    padding: 6rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.join-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 170, 0.08) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite alternate;
}

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

.join-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(0, 255, 170, 0.3);
}

.join-hero-subtitle {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(15, 20, 20, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #1F2A2A;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #00FFD1;
    box-shadow: 0 8px 25px rgba(0, 255, 170, 0.15);
    transform: translateY(-2px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    color: #0A0F0F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item span {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Enhanced Form Section */
.join-form-section {
    padding: 5rem 0;
    background: #0A0F0F;
}

.join-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 20, 20, 0.8);
    border: 1px solid #1F2A2A;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.join-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.05) 0%, rgba(0, 194, 255, 0.05) 100%);
    pointer-events: none;
}

.form-header-section {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.form-title {
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.form-description {
    color: #D1D5DB;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Form Styling */
.join-form {
    position: relative;
    z-index: 2;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

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

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

.form-group {
    position: relative;
}

.form-group-full {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
}

.required-indicator {
    color: #00FFD1;
    margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(10, 15, 15, 0.8);
    border: 2px solid #1F2A2A;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #00FFD1;
    box-shadow: 0 0 0 4px rgba(0, 255, 209, 0.1);
    background: rgba(10, 15, 15, 0.95);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: #2A3A3A;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9CA3AF;
    opacity: 1;
}

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

/* Custom Select Styling */
.select-wrapper {
    position: relative;
}

.form-select {
    appearance: none;
    cursor: pointer;
    padding-right: 3rem;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9CA3AF;
    transition: all 0.3s ease;
}

.form-select:focus + .select-arrow {
    color: #00FFD1;
}

/* Field Help and Error Messages */
.field-help {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.error-message {
    color: #FF6B6B;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.2rem;
    line-height: 1.4;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

/* Enhanced Submit Button */
.form-submit-section {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit {
    position: relative;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 200px;
    overflow: hidden;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: flex;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Process Information */
.process-info {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #1F2A2A;
    position: relative;
    z-index: 2;
}

.process-title {
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 20, 20, 0.6);
    border: 1px solid #1F2A2A;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #00FFD1;
    box-shadow: 0 8px 25px rgba(0, 255, 170, 0.15);
    transform: translateY(-2px);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    color: #0A0F0F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-content p {
    color: #D1D5DB;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .join-hero-title {
        font-size: 2.5rem;
    }
    
    .join-hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .join-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .btn-submit {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .join-hero {
        padding: 4rem 0 3rem 0;
    }
    
    .join-hero-title {
        font-size: 2rem;
    }
    
    .join-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 0.75rem 1rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .join-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.875rem 1rem;
    }
}

/* Webhook Message Styling */
.webhook-message {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid;
    position: relative;
    z-index: 10;
    animation: slideInFromTop 0.5s ease-out;
}

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

.success-message {
    background: rgba(0, 255, 170, 0.1);
    border-color: #00FFAA;
    box-shadow: 0 8px 25px rgba(0, 255, 170, 0.15);
}

.error-message {
    background: rgba(255, 107, 107, 0.1);
    border-color: #FF6B6B;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.15);
}

.message-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.message-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-message .message-icon {
    background: linear-gradient(135deg, #00FFAA 0%, #00C2FF 100%);
    color: #0A0F0F;
}

.error-message .message-icon {
    background: #FF6B6B;
    color: #FFFFFF;
}

.message-text h4 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.success-message .message-text h4 {
    color: #00FFAA;
}

.error-message .message-text h4 {
    color: #FF6B6B;
}

.message-text p {
    margin: 0 0 0.5rem 0;
    color: #D1D5DB;
    line-height: 1.5;
}

.message-text small {
    color: #9CA3AF;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-sidebar {
        position: static;
        order: -1;
    }
    
    .inquiry-form-container {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .solution-card,
    .offer-card {
        padding: 1.5rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}