:root {
    --bg-color: #ffffff;
    --text-main: #1B4150;
    --text-light: #ffffff;
    --accent-cyan: #00B2D4;
    --accent-orange: #F86401;
    --btn-mint: #7bdcb5;
    --header-height: 80px;
    --text-muted: #6b7280;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    margin: 0;
    padding-top: var(--header-height);
    background-color: var(--bg-color);
    font-size: 17px;
}

a {
    text-decoration: none;
    color: var(--accent-cyan);
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-orange);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-sizing: border-box;
    transition: background-color 1s;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    /* text-transform: uppercase; */
}

.menu {
    display: flex;
    gap: 30px;
    align-items: flex-end;
}

.menu a {
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.menu a:hover {
    text-decoration: underline;
    color: var(--accent-orange);
}

.menu a.active {
    color: var(--accent-orange);
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--accent-orange);
    margin-bottom: 36px;
    line-height: 1.2;
}

.smallHeader {
    font-size: 2rem;
    font-weight: 400;
    color: var(--accent-orange);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #29dbfd 100%);
    color: #fff;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    /* box-shadow: 0 4px 15px rgba(0, 178, 212, 0.4); */
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 178, 212, 0.5);
    text-decoration: none;
    color: #fff;
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    /* border-bottom: 1px solid #eee; */
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
}

/* Features List */
/* .features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-left: 3px solid #00b2d4;
    background-color: rgba(0, 178, 212, 0.1);
    border-radius: 10px;
    padding: 12px;
    padding-left: 20px;
}

.features-list li strong {
    color: var(--text-main);
    font-weight: 600;
    color: var(--accent-orange);
} */

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}
.features-list li {
    padding: 2rem;
    border-radius: 12px;
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.features-list li strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}
.features-list li:nth-child(1) { background-color: #e3f2fd; }
.features-list li:nth-child(2) { background-color: #f3e5f5; }
.features-list li:nth-child(3) { background-color: #e8f5e9; }
.features-list li:nth-child(4) { background-color: #fff3e0; }

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.card {
    background-color: rgba(0, 178, 212, 0.1); /* Light cyan tint */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 178, 212, 0.2);
}

.card h3 {
    margin-top: 0;
    color: var(--text-main);
    font-weight: 600;
}

.tag {
    background-color: var(--accent-orange);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    vertical-align: middle;
    float: right;
}

.tag.free {
    background-color: var(--btn-mint);
    color: #000;
}

/* Technical Box */
.technical-box {
    background-color: #f9fafb;
    border-left: 5px solid var(--text-main);
    padding: 30px;
    margin-top: 40px;
}

.security-badge {
    color: green;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    /* padding: 40px 0; */
    color: var(--accent-cyan);
    font-size: 0.9rem;
    /* border-top: 1px solid #eee; */
    margin-top: 40px;
}

footer > a{
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .menu.active {
        display: flex;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* Pricing Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background-color: var(--accent-cyan);
    color: #fff;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-text {
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 1.1rem;
}

@media (max-width: 600px) {
    table { display: block; overflow-x: auto; }
}

.menu .appMenuBtn{
    background-color: var(--accent-cyan);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 7px;
    color: white;
    padding-top: 3px;
    margin-left: 27px;
}

.menu.active .appMenuBtn{
    margin-left: 0;
}

.page{
    width: 90%;
    margin: auto;
}