
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SUSE Mono', monospace;
    background-color: #000;
    background-image: 
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%),
        radial-gradient(circle at 80% 20%, rgba(117, 115, 114, 0.08) 0%, transparent 50%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.nav-bar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 32px;
    max-height: 32px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    display: block;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #009deb 0%, #04567e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-btn:hover {
    background: linear-gradient(135deg, #04567e 0%, #009deb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
        url('background.jpg') no-repeat center center/cover;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(117, 115, 114, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Teko', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, #ffffff, #009deb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.btn-hero {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #009deb 0%, #04567e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #04567e 0%, #009deb 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

main {
    padding: 120px 20px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    position: relative;
    overflow: hidden;
}

.logo-container {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.logo {
    max-width: 180px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.container h1 {
    font-family: 'Teko', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.container p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    z-index: 1;
}


.form-group {
    margin-bottom: 28px;
    text-align: left;
    position: relative;
    z-index: 1;
}

label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #e0e0e0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #444;
    border-radius: 15px;
    background-color: #1f1f1f;
    color: #fff;
    font-family: 'SUSE Mono', monospace;
    font-size: 1.05rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
    outline: none;
    border-color: #009deb;
    background-color: #2a2a2a;
    box-shadow: 
        0 0 0 3px rgba(255, 255, 255, 0.15),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

button[type="submit"] {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #009deb 0%, #04567e 100%);
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

button[type="submit"]:hover::before {
    left: 100%;
}

button[type="submit"]:hover {
    background: linear-gradient(135deg, #04567e 0%, #009deb 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.1);
}


.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

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

.footer {
    background-color: #0a0a0a;
    color: #999;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.95rem;
    border-top: 1px solid #222;
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
    
    .btn-hero {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    main {
        padding: 100px 15px 60px;
    }
    
    .container {
        padding: 50px 30px;
        margin: 0 15px;
    }
    
    .form-group {
        margin-bottom: 22px;
    }
    
    .logo {
        max-width: 160px;
        max-height: 110px;
    }
    
    .nav-logo-img {
        height: 28px;
        max-height: 28px;
        max-width: 85px;
    }
}

@media (max-width: 480px) {
    .nav-bar {
        padding: 10px 0;
    }

    .nav-logo {
        font-size: 1.5rem;
    }
    
    .nav-logo-img {
        height: 26px;
        max-height: 26px;
        max-width: 75px;
    }

    .home-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero {
        padding: 0 15px;
    }
    
    .container {
        padding: 40px 25px;
    }
    
    .logo {
        max-width: 150px;
        max-height: 100px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select {
        padding: 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    button[type="submit"] {
        padding: 18px;
        font-size: 1.1rem;
    }
}

/* Student Landing Page Styles */
.student-offer {
    padding: 0;
}

.student-offer .container {
    max-width: 1200px;
}

/* Pricing Section */
.pricing-section {
    margin: 60px 0;
    text-align: center;
}

.pricing-section h2 {
    font-family: 'Teko', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.price-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.price-card.student-price {
    border-color: #009deb;
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

.price-card.regular-price {
    opacity: 0.7;
}

.price-card h3 {
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.price {
    font-family: 'Teko', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #009deb;
    margin-bottom: 15px;
}

.price.crossed {
    text-decoration: line-through;
    color: #999;
}

.currency {
    font-size: 1.2rem;
    font-weight: 400;
}

.savings {
    color: #00ff88;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits-section {
    margin: 60px 0;
}

.benefits-section h2 {
    font-family: 'Teko', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #009deb;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    color: #009deb;
    margin-bottom: 20px;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* CEO Message Section */
.ceo-message {
    margin: 60px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.message-header:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin: -20px;
}

.message-header h2 {
    font-family: 'Teko', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dropdown-arrow {
    font-size: 1.5rem;
    color: #009deb;
    transition: transform 0.3s ease;
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.ceo-intro {
    font-size: 1.3rem;
    color: #009deb;
    font-weight: 600;
}

.message-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0;
}

.message-content.expanded {
    max-height: 1000px;
    padding: 30px 0 0;
}

.message-content p {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.ceo-signature {
    margin-top: 40px;
    text-align: right;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ceo-signature p {
    color: #009deb;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* How to Section */
.how-to-section {
    margin: 60px 0;
}

.how-to-section h2 {
    font-family: 'Teko', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 50px;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #009deb 0%, #04567e 100%);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    margin: 60px 0 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Teko', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-section > p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    background: linear-gradient(135deg, #009deb 0%, #04567e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #04567e 0%, #009deb 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.1);
}

.ps-note {
    color: #999;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .price-comparison {
        grid-template-columns: 1fr;
    }
    
    .price-card.student-price {
        transform: none;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .ceo-message {
        padding: 30px 25px;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .pricing-section,
    .benefits-section,
    .ceo-message,
    .how-to-section,
    .cta-section {
        margin: 40px 0;
    }
    
    .step {
        padding: 25px 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 0;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Teko', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.close-modal {
    color: #999;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: #009deb;
}

.modal-body {
    padding: 30px 40px 40px;
}

.modal-body .logo-container {
    text-align: center;
    margin-bottom: 25px;
}

.modal-body .logo {
    max-width: 120px;
    max-height: 80px;
}

.modal-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

/* Form styles for modal */
.modal-body .form-group {
    margin-bottom: 25px;
    text-align: left;
}

.modal-body label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.modal-body input[type="text"],
.modal-body input[type="email"],
.modal-body input[type="tel"],
.modal-body select {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    font-family: 'SUSE Mono', monospace;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal-body input[type="text"]:focus,
.modal-body input[type="email"]:focus,
.modal-body input[type="tel"]:focus,
.modal-body select:focus {
    outline: none;
    border-color: #009deb;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.modal-body select option {
    background: #1a1a1a;
    color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #009deb 0%, #04567e 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #04567e 0%, #009deb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

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

/* Success message styles */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message h3 {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.success-message p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 25px 30px;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .modal-header,
    .modal-body {
        padding: 20px 25px;
    }
    
    .modal-body input[type="text"],
    .modal-body input[type="email"],
    .modal-body input[type="tel"],
    .modal-body select {
        padding: 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
