﻿:root {
    --bg: #f6f5f2;
    --bg-accent: #eef3f6;
    --text: #0f172a;
    --muted: #475569;
    --brand: #0e7490;
    --brand-dark: #0b5568;
    --card: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", "Segoe UI", "Helvetica Neue", sans-serif;
    background: radial-gradient(1200px 800px at 10% -10%, #ffffff 0%, var(--bg) 55%, var(--bg-accent) 100%);
    color: var(--text);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    padding: 12px 0 6px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(246, 245, 242, 0.92);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, padding 0.2s ease;
    border-bottom: 1px solid transparent;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    height: clamp(130px, 16vw, 230px);
    width: auto;
    transition: height 0.2s ease;
}

header.is-sticky {
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    border-color: var(--border);
    padding: 8px 0 4px 0;
}

header.is-sticky .logo {
    height: clamp(60px, 7vw, 95px);
}

.nav-links {
    display: flex;
    gap: 26px;
    font-size: 1.2rem;
    color: var(--muted);
}

.nav-links a {
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--text);
    border-color: var(--brand);
}

.nav-links a.active {
    color: var(--text);
    border-color: var(--brand);
    font-weight: 600;
}

.nav-links .qty-link,
.footer .qty-link {
    font-style: italic;
}

.hero {
    padding: 8px 0 32px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: center;
}

.hero h1 {
    font-family: "Fraunces", "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    margin-bottom: 18px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 26px;
    max-width: 520px;
}

.hero-card {
    background: var(--card);
    padding: 28px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.section {
    padding: 26px 0;
}

.section-title {
    font-family: "Fraunces", "Times New Roman", serif;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.section-lead {
    color: var(--muted);
    max-width: 620px;
    margin-bottom: 22px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.stat-card {
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    padding: 18px 20px;
}

.stat-card strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    align-items: center;
}

.credentials img {
    height: 70px;
    width: 100%;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.faq-grid {
    display: grid;
    gap: 18px;
}

.faq-item {
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    padding: 18px 22px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.about-copy p {
    color: var(--muted);
    max-width: 760px;
    margin-bottom: 22px;
}

.about-copy p:last-of-type {
    margin-bottom: 26px;
}

.about-media {
    display: grid;
    gap: 18px;
    align-content: start;
}

.about-media img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    background: var(--card);
}

.about-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 14px;
}

.about-logos img {
    padding: 12px;
    background: #fff;
    object-fit: contain;
    height: 90px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.media-card {
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.media-card img {
    width: 100%;
    height: auto;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    align-items: stretch;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.8);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
}

.carousel-btn.prev {
    left: 16px;
}

.carousel-btn.next {
    right: 16px;
}

.carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(203, 213, 245, 0.9);
    cursor: pointer;
}

.carousel-dot.is-active {
    background: var(--brand);
}

@media (max-width: 720px) {
    .carousel-btn {
        width: 38px;
        height: 38px;
    }
}

.card {
    background: var(--card);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card p {
    color: var(--muted);
}

.list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.list li {
    padding-left: 22px;
    position: relative;
}

.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 12px;
    height: 2px;
    background: var(--brand);
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(14, 116, 144, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card .cta {
    margin-top: 12px;
}

.cta:hover,
.cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(14, 116, 144, 0.3);
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    align-items: start;
}

.footer {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.footer a {
    color: var(--text);
}

@media (max-width: 720px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px;
    }
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-dark);
    font-weight: 600;
    margin: 6px 0;
}

.social-link::before {
    content: "in";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--brand);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

