
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
:root {
    /* THEME */
    --gs-primary: #e55b7c;       /* Pinkish Coral */
    --gs-secondary: #44a89f;     /* Teal */
    --gs-text: #656565;
    --gs-white: #ffffff;
    --gs-bg: rgba(229, 91, 124, 0.05);

    /* Accents / derived */
    --gs-primary-10: rgba(229, 91, 124, 0.1);
    --gs-secondary-10: rgba(68, 168, 159, 0.12);
    --gs-card-shadow: 0 6px 24px -12px rgba(68, 168, 159, 0.15);
    --gs-soft-shadow: 0 9px 32px -16px rgba(229, 91, 124, 0.18);
    --ion-default-font:'DM Sans',serif, sans-serif!important;
    /* Buttons */
    --gs-button-gradient: linear-gradient(1deg, #44a89f, #44a89f); /* solid teal */

    /* Typography scale */
    --h1: clamp(2rem, 1.6rem + 1.6vw, 2.7rem);
    --h2: clamp(1.3rem, 1.1rem + 0.9vw, 2rem);
    --lead: clamp(1rem, 0.95rem + 0.3vw, 1.25rem);
}

html,body{
    font-family: var(--ion-default-font) !important;
}
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    margin: 0;
    color: var(--gs-text);
    background:
            radial-gradient(1200px 600px at 100% -10%, var(--gs-secondary-10), transparent 55%),
            radial-gradient(1200px 600px at -10% 110%, var(--gs-primary-10), transparent 55%),
            var(--gs-white);
}

/* Navbar */
.navbar-gs {
    background: var(--gs-white);
    border-bottom: 1px solid #f2e8e6;
    box-shadow: 0 2px 14px -7px rgba(68, 168, 159, 0.08);
    z-index: 1000;
}
.navbar-gs .navbar-brand {
    color: var(--gs-secondary);
    font-weight: 700;
    letter-spacing: 0.5px;
}
.navbar-gs .nav-link {
    color: #6f7f7a;
    font-weight: 600;
    margin: 0 .25rem;
    border-radius: 20px;
    transition: color .2s, background .2s, transform .15s;
    padding: .45rem .85rem;
}
.navbar-gs .nav-link:hover,
.navbar-gs .nav-link:focus {
    color: var(--gs-white);
    background: var(--gs-primary);
    transform: translateY(-1px);
}
.navbar-gs .nav-link.active {
    color: var(--gs-white);
    background: var(--gs-secondary);
}

/* Hero */
.hero-section {
    background: var(--gs-bg);
    text-align: center;
    padding: 64px 16px 40px;
    border-radius: 0 0 32px 32px;
    box-shadow: var(--gs-soft-shadow);
    margin-bottom: 32px;
}
.hero-logo {
    max-width: 160px;
    width: 38vw;
    height: auto;
    margin-bottom: 12px;
}
.hero-title {
    font-size: var(--h1);
    color: #3b5c57;
    font-weight: 700;
    line-height: 1.1;
}
.hero-subtitle { font-size: var(--lead); color: #5f7e79; }

.get-app-btn {
    padding: 14px 28px;
    background: var(--gs-button-gradient);
    color: var(--gs-white);
    border: none;
    border-radius: 28px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 18px;
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 8px 20px -10px rgba(68, 168, 159, 0.55);
    text-decoration: none;
    display: inline-block;
}
.get-app-btn:hover {
    color: var(--gs-white);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -10px rgba(68, 168, 159, 0.7);
    text-decoration: none;
}

.section-title {
    color: #3b5c57;
    font-weight: 700;
    font-size: var(--h2);
    margin-bottom: 14px;
}

/* Cards / info sections */
.info-section {
    background: var(--gs-white);
    border-radius: 20px;
    box-shadow: var(--gs-card-shadow);
    padding: 26px 22px;
    margin-bottom: 28px;
}
.info-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    background: #faebe9;
    box-shadow: 0 2px 6px rgba(255, 170, 143, 0.14);
}
/*.dashboard-image { max-width: 400px; }*/

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    font-size: 1.05rem;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.feature-list li::before {
    content: "●";
    color: var(--gs-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    transform: translateY(6px);
}

.vision-card {
    background: var(--gs-bg);
    border-radius: 20px;
    box-shadow: var(--gs-card-shadow);
    padding: 28px 22px;
    margin: 30px auto 16px;
    max-width: 780px;
}

/* Pricing */
.pricing-section {
    padding: 32px 12px;
    background: var(--gs-white);
    border-radius: 22px;
    box-shadow: 0 2px 24px -7px rgba(229, 91, 124, 0.12);
    margin-bottom: 36px;
}
.pricing-title {
    color: #3b5c57;
    font-size: var(--h2);
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
}
.pricing-card {
    background: var(--gs-bg);
    border-radius: 20px;
    box-shadow: var(--gs-card-shadow);
    padding: 24px 20px;
    text-align: center;
    transition: transform .15s ease, box-shadow .2s ease;
    height: 100%;
}
.pricing-card:hover { transform: translateY(-2px); }
.pricing-card.best {
    border: 2px solid var(--gs-primary);
    box-shadow: 0 10px 28px -10px rgba(229, 91, 124, 0.25);
    position: relative;
}
.plan-best-badge {
    background: var(--gs-primary);
    color: var(--gs-white);
    border-radius: 10px;
    padding: 3px 12px;
    font-size: .9rem;
    font-weight: 700;
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 1.5px 7px -2px rgba(229, 91, 124, 0.35);
}
.price-value {
    font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem);
    font-weight: 800;
    color: #b8646f;
    margin-bottom: 6px;
}
.plan-label {
    font-weight: 800;
    color: var(--gs-secondary);
    letter-spacing: .03em;
    margin-bottom: 5px;
    font-size: 1.05rem;
    text-transform: uppercase;
}
.plan-desc {
    color: #6b8178;
    font-size: 1rem;
    margin-bottom: 10px;
}
.pricing-features {
    text-align: left;
    font-size: .98rem;
    margin: 0 auto 16px;
    min-height: 84px;
    padding-left: 14px;
    max-width: 260px;
}
.pricing-features li { margin-bottom: 8px; }

/* Download */
.download-section {
    background: var(--gs-bg);
    border-radius: 18px;
    box-shadow: var(--gs-card-shadow);
    max-width: 820px;
    margin: 0 auto 60px;
    padding: 28px 16px 24px;
    text-align: center;
}
.qr-img {
    width: 128px;
    height: 128px;
    background: var(--gs-white);
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(195, 185, 180, 0.08);
}

/* Footer */
.footer {
    text-align: center;
    color: #7a8d88;
    padding: 28px 10px 36px;
    font-size: .95rem;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .hero-section { border-radius: 0 0 24px 24px; }
    .info-section { padding: 22px 16px; }
    .pricing-section { border-radius: 16px; }
}
@media (max-width: 576px) {
    .navbar-gs .nav-link { margin: 2px 0; }
    .hero-logo { max-width: 132px; }
    .download-section { border-radius: 14px; }
}
