* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #ffffff;
    background-image: 
        linear-gradient(to right, rgba(37,99,235,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(37,99,235,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #1a1f2b;
    line-height: 1.6;
}


/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #ffffff;
    border-bottom: 1px solid #e5e9f2;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area img {
    width: 32px;
}

.logo-area span {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}

.navbar nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.navbar nav a.active {
    color: #2563eb;
    font-weight: 600;
}

/* HERO */
.hero {
    padding: 110px 8%;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.hero p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #6b7280;
}

.btn-primary {
    padding: 12px 30px;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* SECTION */
.section {
    padding: 100px 8%;
}


.section.gray {
    background: #f7f9fc;
}

.section h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

/* APP GRID */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.app-card {
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 16px;
    border: 1px solid #e5e9f2;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.app-card a {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.app-card a:hover {
    background: #1e4fd8;
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}
.app-card img {
    width: 95px;
    margin-bottom: 22px;
    transition: transform 0.25s ease;
}
.app-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.app-card p {
    font-size: 14px;
    color: #6b7280;
}
.app-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.app-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 18px;
}
.app-card:hover img {
    transform: scale(1.05);
}
.page-section {
    padding: 80px 10%;
    background: #f9fbff;
}

.container {
    max-width: 900px;
    margin: auto;
}

.page-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.page-section h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
}

.page-section p {
    line-height: 1.7;
    color: #555;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e5e9f2;
    text-align: center;
    transition: 0.25s ease;
}

.contact-card i {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 15px;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-card p a {
    color: #2563eb;
    text-decoration: none;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* FOOTER */
.footer {
    padding: 50px 8%;
    text-align: center;
    background: #f7f9fc;
    border-top: 1px solid #e5e9f2;
}

.store-badges img {
    height: 55px;
    margin: 15px 12px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 36px;
}

.brand-text {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    color: #111827;
}

