body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #141414;
    color: #f2f2f2;
    line-height: 1.6;
    scroll-behavior: smooth;
}

nav {
    background-color: #000;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

nav a {
    color: #bbb;
    margin: 0 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #fff;
}

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.hero-banner {
    background-image: url('/static/images/logo.png');
    background-color: #141414;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 40vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #141414;
    position: relative;
    overflow: hidden;
    clip-path: inset(0);
}

.hero-banner::before {
    content: none;
}

.hero-banner > * {
    position: relative;
    z-index: 1;
}

.intro-text {
    text-align: center;
    margin: 2rem auto;
    max-width: 700px;
    padding: 1rem;
    animation: fadeInUp 1s ease;
}

.tagline {
    font-size: 1.75rem;
    color: #dcdcdc;
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-button {
    background: #016764;
    color: white;
    padding: 0.85rem 1.75rem;
    border: none;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #014848;
    transform: translateY(-2px);
}

.offer-banner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 4rem 0;
    background-color: #141414;
    gap: 0;
    flex-wrap: nowrap;
    min-height: 400px;
    flex-direction: row;
}

.offer-banner.alt {
    flex-direction: row-reverse;
}

.offer-banner-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.offer-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, black 90%, transparent 100%);
    aspect-ratio: 16 / 9;
}

.offer-banner.alt .offer-banner-image img {
    -webkit-mask-image: linear-gradient(to left, black 90%, transparent 100%);
    mask-image: linear-gradient(to left, black 90%, transparent 100%);
    object-position: right;
}

.offer-banner-text {
    flex: 1;
    max-width: 50%;
    color: #f2f2f2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.offer-banner-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.offer-banner-text p {
    font-size: 1.1rem;
    color: #ccc;
}

.pricing-tiers {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #ccc;
}

.pricing-tiers .tier {
    margin-bottom: 0.5rem;
}

.tech-stack, .faq-section {
    padding: 4rem 2rem;
    background-color: #141414;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-stack h2, .faq-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.tech-stack ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.tech-stack li {
    background: #1f1f1f;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    color: #dcdcdc;
}

.faq-section details {
    margin-bottom: 1rem;
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
}

.faq-section summary {
    font-weight: bold;
    cursor: pointer;
    color: #08f;
}

.faq-section p {
    margin-top: 0.5rem;
    color: #ccc;
}

.about-preview, .footer-cta {
    text-align: center;
    padding: 4rem 2rem;
}

.about-preview p, .footer-cta p {
    font-size: 1.05rem;
    color: #ccc;
}
.about-image img {
    width: 100%;
    height: auto;
    max-width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba (0, 0, 0, 0.5);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
.about-wrapper {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    color: #014848;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-arrow:hover {
    color: #016764;
}

.terms-note {
    background: #1f1f1f;
    color: #bbb;
    border-left: 4px solid #016764;
    padding: 1.25rem 1.5rem;
    margin: 3rem auto;
    max-width: 800px;
    font-size: 0.95rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    line-height: 1.5;
}

.terms-note strong {
    color: #f2f2f2;
}

.contact-protection-note {
    text-align: center;
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 0.9rem;
}

.contact-page-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 700px;
    background-color: #1e1e1e;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

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

/* Overhaul the checkbox layout */
.contact-form-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-wrapper li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #f2f2f2;
    line-height: 1.5;
}

/* Fix checkbox itself */
.contact-form-wrapper input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #555;
    border-radius: 3px;
    background-color: #2a2a2a;
    display: inline-block;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

.contact-form-wrapper input[type="checkbox"]:checked {
    background-color: #016764;
    border-color: #016764;
}

.contact-form-wrapper input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.contact-form-wrapper select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #f2f2f2;
    font-size: 1rem;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border: 1px solid #555;
    background-color: #2a2a2a;
    color: #f2f2f2;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: #016764;
    box-shadow: 0 0 6px #01676480;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: #999;
}

.contact-form-wrapper .cta-button {
    align-self: start;
    margin-top: 1rem;
}

.contact-form-wrapper * {
    box-sizing: border-box;
}

.contact-form-wrapper p {
    margin: 0;
    padding: 0;
}

/* Plan Cards Grid */
.plan-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Plan Card */
.plan-card {
    background: #1a1a1a;
    border: 1px solid #222;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.plan-card img {
    max-width: 80px;
    margin: 0 auto 1.5rem auto;
}

.plan-card h3 {
    font-size: 1.6rem;
    color: #f2f2f2;
    margin-bottom: 0.5rem;
}

.plan-card .price {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.plan-card ul li {
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #ccc;
}

.plan-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #016764;
}

.plan-card .addons {
    font-size: 0.95rem;
    color: #999;
    margin-top: 1rem;
}

.plan-card .note {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 0.75rem;
}
.about-text {
    flex: 2 1 600px;
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.75;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    html {
        font-size: 90%; /* Base down from 100% to ~14.4px */
    }

    body {
        font-size: 1rem;
    }

    h1, h2, h3 {
        font-size: 1.5rem;
    }

    .tagline,
    .plan-card .price,
    .plan-card ul li {
        font-size: 1rem;
    }

    .plan-card {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }

    .plan-cards-grid {
        grid-template-columns: 1fr !important;
    }

    .offer-banner {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .offer-banner.alt {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .offer-banner-image,
    .offer-banner-text {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 1rem 0;
    }

    .offer-banner-image img {
        -webkit-mask-image: none;
        mask-image: none;
        object-position: center;
        aspect-ratio: auto;
    }

    .plan-cards-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .plan-card {
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .plan-card h3 {
        font-size: 1.75rem;
    }

    .plan-card .price {
        font-size: 1.25rem;
    }

    .plan-card ul li {
        font-size: 1.1rem;
    }

    .tech-stack ul {
        flex-direction: column;
        align-items: center;
    }

    .terms-note {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .about-wrapper {
        display: flex;
        flex-direction: row;
        gap: 3rem;
        padding: 4rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
        align-items: flex-start;
        flex-wrap: wrap;
    }
        
    .about-image img {
        width: 100%;
        height: auto;
        max-width: 250px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }
        
    .about-text {
        flex: 2 1 600px;
        font-size: 1.05rem;
        color: #ccc;
        line-height: 1.75;
    }
        
    .about-text h1 {
        color: #f2f2f2;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
        
    .about-text p {
        margin-bottom: 1.5rem;
    }
    
    .about-image {
        flex: 1 1 250px;
        max-width: 250px;
        text-align: center;
    }
      
}

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