body, html {
    height: 100%; /* Make the body take full height */
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Orbitron', sans-serif;
    background: #1e1e1e;
    color: #cfd8dc;
    margin: 0;
    padding: 0;
}
header {
    background: linear-gradient(135deg, #004d80, #007acc);
    color: #ffffff;
    position: relative;
    text-align: center;
    padding: 50px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
header h1 {
    font-weight: 700;
    font-size: 2.8em;
}
.highlight {
    color: #76ff03;
    text-shadow: 0 0 3px #76ff03;
}
header h1 .highlight {
    font-style: italic;
}
a.highlight {
    text-decoration: none;
}
a.highlight:hover {
    text-decoration: underline;
    color: #ffffff;
    text-shadow: 0 0 8px #ffffff;
}
header p {
    margin-top: 10px;
    font-size: 1.3em;
}
header .company-name {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2em;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    text-shadow: -4px 4px 3px #000000;
}
nav {
    position: absolute;
    top: 26px;
    right: 20px;
}
nav a {
    color: #cfd8dc;
    text-decoration: none;
    font-weight: 700;
    margin-left: 20px;
    font-size: 1em;
}
nav a:hover,
nav a.active {
    color: #76ff03;
    text-shadow: 0 0 8px #76ff03;
}
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}
main .content {
    padding: 4%;
    background: #1b1b1b;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
    margin: 40px auto;
    width: 95%;
    box-sizing: border-box;
}
main p {
    font-size: 1.2em;
    text-align: justify;
}
main a {
    color: #76ff03;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px #76ff03;
    animation: glow-green 3.5s infinite alternate;
}
main a:hover {
    color: #ffffff;
    text-decoration: underline;
    animation: glow-white 3.5s infinite alternate-reverse;
}
main h2 {
    color: #ffffff;
    font-size: 1.8em;
    margin-top: 0;
}
main h3 {
    color: #ffffff;
    font-size: 1.3em;
}
.badge-free {
    display: inline-block;
    background: rgba(118, 255, 3, 0.12);
    color: #76ff03;
    border: 1px solid #76ff03;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.9em;
    font-weight: 700;
    text-shadow: 0 0 6px #76ff03;
    margin-top: 0;
}
.form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.form-note {
    font-size: 0.9em;
    color: #8a939a;
    text-align: left;
    margin-top: 14px;
}
.review-form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 480px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 0.95em;
    color: #cfd8dc;
}
.form-group input,
.form-group textarea {
    background: #121212;
    border: 1px solid #3a3a3a;
    color: #cfd8dc;
    border-radius: 6px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 1em;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #76ff03;
    box-shadow: 0 0 8px rgba(118, 255, 3, 0.5);
}
.btn {
    align-self: flex-start;
    background: #76ff03;
    color: #000000;
    border: none;
    border-radius: 6px;
    padding: 14px 28px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}
.btn:hover {
    box-shadow: 0 0 16px #76ff03;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.pricing-card {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 24px;
}
.pricing-card h3 {
    margin-top: 0;
}
.pricing-card .price {
    font-size: 1.6em;
    font-weight: 700;
    color: #76ff03;
    text-shadow: 0 0 6px #76ff03;
    margin: 10px 0;
    text-align: left;
}
.pricing-card .price span {
    font-size: 0.55em;
    color: #cfd8dc;
    font-weight: 400;
    text-shadow: none;
}
.pricing-card--urgent {
    border-color: #ff5722;
}
.pricing-card--urgent h3 {
    color: #ff5722;
}
.pricing-card--urgent .price {
    color: #ff5722;
    text-shadow: 0 0 6px #ff5722;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95em;
}
.pricing-card ul li {
    padding: 6px 0;
    border-top: 1px solid #2a2a2a;
}
.pricing-card ul li:first-child {
    border-top: none;
}
footer {
    background: #121212;
    color: #cfd8dc;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    position: relative;
}
footer a {
    color: #cfd8dc;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
@keyframes glow-green {
    from {
        text-shadow: 0 0px 5px #76ff03;
    }
    to {
        text-shadow: 0 5px 20px #76ff03;
    }
}
@keyframes glow-white {
    from {
        text-shadow: 0 0px 5px #ffffff;
    }
    to {
        text-shadow: 0 -5px 20px #ffffff;
    }
}
