@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
:root {--default-font: "Inter",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--heading-font: "Raleway",  sans-serif;--nav-font: "Poppins",  sans-serif;}


body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f5f6f8;
    color: #1c1c1c;
    line-height: 1.6;
}
header {
    background: linear-gradient(135deg, #111, #2a2a2a);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.logo {width: 200px;aspect-ratio: 3/1;background-repeat: no-repeat;background-image: url(/img/200.png);background-size: 100%;background-position: center;}

nav {
    position: sticky;
    top: 0;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1em;
    /* backdrop-filter: blur(10px); */
    background-color: #ffffff;
}

.owl {
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #ed143d;
}

.moon {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    /* color: #d3d3d3; */
    font-size: .8em;
}

header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}
header p {
    font-size: 20px;
    max-width: 800px;
    margin: auto;
    opacity: 0.9;
}
section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: auto;
}
section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
section p {
    font-size: 18px;
    margin-bottom: 20px;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.feature {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.feature h3 {
    margin-top: 0;
    font-size: 22px;
}
.cta {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}
.cta h2 {
    font-size: 34px;
    margin-bottom: 20px;
}
.cta p {
    font-size: 20px;
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
}
.cta a {
    display: inline-block;
    background: #ff2d55;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}
footer {
    background: #0b0b0b;
    color: #aaa;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
}