/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ethosgridBody {
    background-color: #020617;
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
.ethosgridHead {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

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

.ethosgridLogo {
    font-size: 24px;
    font-weight: 800;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ethosgridInp {
    display: none;
}

.ethosgridBtnM {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.ethosgridBtnM span {
    width: 25px;
    height: 3px;
    background: #38bdf8;
    transition: 0.3s;
}

.ethosgridNavi .ethosgridList {
    display: flex;
    list-style: none;
    gap: 30px;
}

.ethosgridLink {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.ethosgridLink:hover {
    color: #38bdf8;
}

.ethosgridNeon {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
    box-shadow: 0 0 10px #38bdf8;
    margin-top: 15px;
}

/* Disclaimer */
.ethosgridWarn {
    background: #0f172a;
    padding: 10px 0;
    border-bottom: 1px solid #1e293b;
}

.ethosgridWarn .ethosgridText {
    font-size: 13px;
    text-align: center;
    color: #94a3b8;
}

/* Hero Section */
.ethosgridHero {
    padding: 100px 0;
    position: relative;
}

.ethosgridGrid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ethosgridColL {
    flex: 1;
}

.ethosgridColR {
    flex: 1;
}

.ethosgridTit1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #f8fafc;
}

.ethosgridIcon {
    color: #38bdf8;
    margin-right: 10px;
}

.ethosgridDesc {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.ethosgridCtaB {
    display: inline-block;
    padding: 15px 40px;
    background: #020617;
    color: #38bdf8;
    border: 2px solid #38bdf8;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
    transition: all 0.3s;
    text-transform: uppercase;
}

.ethosgridCtaB:hover {
    background: #38bdf8;
    color: #020617;
    box-shadow: 0 0 25px #38bdf8;
}

.ethosgridHeroI {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.1);
}

/* Sections */
.ethosgridSec1, .ethosgridSec2, .ethosgridSec3, .ethosgridRegu, .ethosgridTarg, .ethosgridFaqs {
    padding: 80px 0;
}

.ethosgridTit2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #38bdf8;
}

.ethosgridTit2.center {
    text-align: center;
}

.ethosgridPara {
    margin-bottom: 20px;
    font-size: 17px;
    color: #cbd5e1;
}

.ethosgridUlst {
    list-style: none;
    margin: 20px 0;
}

.ethosgridLits {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.ethosgridLits::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.ethosgridTit3 {
    font-size: 24px;
    margin: 25px 0 15px;
    color: #22c55e;
}

/* Expert Section */
.ethosgridExpt {
    background: #111827;
    padding: 100px 0;
}

.ethosgridQuot {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ethosgridQTxt {
    font-size: 28px;
    font-style: italic;
    color: #f8fafc;
    margin-bottom: 30px;
}

.ethosgridQAut {
    font-size: 22px;
    font-weight: 700;
    color: #38bdf8;
}

.ethosgridQSub {
    color: #94a3b8;
    font-size: 14px;
}

/* Highlight Block */
.ethosgridHigh {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    padding: 20px;
    margin-top: 30px;
}

.ethosgridHTxt {
    font-size: 16px;
    color: #e2e8f0;
}

/* Packages */
.ethosgridFlxp {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.ethosgridCard {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.ethosgridCard:hover {
    transform: translateY(-10px);
}

.ethosgridCard.featured {
    border-color: #38bdf8;
    scale: 1.05;
}

.ethosgridCBar {
    height: 5px;
    width: 60px;
    margin-bottom: 20px;
}

.ethosgridCBar.green { background: #22c55e; }
.ethosgridCBar.cyan { background: #38bdf8; }
.ethosgridCBar.slate { background: #e2e8f0; }

.ethosgridCTit {
    font-size: 24px;
    margin-bottom: 10px;
}

.ethosgridCPrc {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #f8fafc;
}

.ethosgridCUls {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.ethosgridCUls li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #94a3b8;
}

.ethosgridCBtn {
    text-align: center;
    padding: 12px;
    background: #1e293b;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.ethosgridCBtn:hover {
    background: #334155;
}

/* Avatars */
.ethosgridAvas {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.ethosgridAvaC {
    text-align: center;
    width: 250px;
}

.ethosgridAImg {
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid #1e293b;
}

.ethosgridATit {
    color: #38bdf8;
    margin-bottom: 10px;
}

.ethosgridATxt {
    font-size: 14px;
    color: #94a3b8;
}

.ethosgridUlst.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 40px;
}

/* FAQ */
.ethosgridFaqG {
    max-width: 800px;
    margin: 0 auto;
}

.ethosgridFdet {
    background: #0f172a;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #1e293b;
    transition: box-shadow 0.3s;
}

.ethosgridFdet:hover {
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
    border-color: #38bdf8;
}

.ethosgridFsum {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    outline: none;
}

.ethosgridFcon {
    padding: 0 20px 20px;
    color: #94a3b8;
}

/* Form */
.ethosgridForm {
    background: #111827;
    padding: 100px 0;
}

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

.ethosgridFrms {
    margin-top: 40px;
}

.ethosgridFgrp {
    margin-bottom: 20px;
}

.ethosgridFlab {
    display: block;
    margin-bottom: 8px;
    color: #94a3b8;
}

.ethosgridFinp, .ethosgridFtxt {
    width: 100%;
    padding: 12px;
    background: #020617;
    border: 1px solid #1e293b;
    color: #fff;
    border-radius: 5px;
}

.ethosgridFtxt {
    height: 120px;
    resize: vertical;
}

.ethosgridFchk {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.ethosgridClab {
    font-size: 14px;
    color: #94a3b8;
}

.ethosgridClab a {
    color: #38bdf8;
}

.ethosgridSubm {
    width: 100%;
    padding: 15px;
    background: #38bdf8;
    color: #020617;
    border: none;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
    transition: box-shadow 0.3s;
}

.ethosgridSubm:hover {
    box-shadow: 0 0 20px #38bdf8;
}

/* Footer */
.ethosgridFoot {
    padding: 60px 0;
    border-top: 1px solid #1e293b;
}

.ethosgridFcen {
    text-align: center;
}

.ethosgridCopy {
    margin-bottom: 10px;
}

.ethosgridMail {
    margin-bottom: 20px;
}

.ethosgridMail a {
    color: #38bdf8;
    text-decoration: none;
}

.ethosgridLinks {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ethosgridFLnk {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
}

.ethosgridFLnk:hover {
    color: #38bdf8;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .ethosgridGrid {
        flex-direction: column;
        text-align: center;
    }
    .ethosgridFlxp {
        flex-direction: column;
        align-items: center;
    }
    .ethosgridTit1 {
        font-size: 36px;
    }
    .ethosgridColR {
        order: -1;
    }
}

@media (max-width: 768px) {
    .ethosgridBtnM {
        display: flex;
    }
    .ethosgridNavi {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: #020617;
        transition: 0.3s;
    }
    .ethosgridNavi .ethosgridList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .ethosgridInp:checked ~ .ethosgridNavi {
        left: 0;
    }
    .ethosgridAvas {
        flex-direction: column;
        align-items: center;
    }
    .ethosgridUlst.grid2 {
        grid-template-columns: 1fr;
    }
}