/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

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

/* BASE */
body {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    background: #ffffff;
    color: #1f2933;
    line-height: 1.85;
}

/* HERO */
.hero-pro {
    background: #ffffff;
    padding: 100px 24px;
}

.hero-pro-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 90px;
    align-items: center;
}

.hero-pro-text h1 {
    font-size: 46px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.hero-pro-text h2 {
    font-size: 18px;
    font-weight: 400;
    color: #475569;
    margin: 16px 0 28px;
}

.hero-pro-text p {
    max-width: 620px;
    font-size: 16.5px;
    color: #334155;
}

/* HERO LINKS */
.hero-links {
    margin-top: 34px;
}

.hero-links a {
    font-size: 15px;
    font-weight: 500;
    margin-right: 26px;
    color: #2563eb;
    text-decoration: none;
    position: relative;
}

.hero-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.25s ease;
}

.hero-links a:hover::after {
    width: 100%;
}

/* PHOTO */
.hero-pro-photo img {
    width: 260px;
    height: 340px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

/* SECTIONS */
.section {
    max-width: 1200px;
    margin: auto;
    padding: 90px 24px;
}

.section h3 {
    font-size: 30px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 22px;
}

.section-text {
    max-width: 760px;
    font-size: 16.5px;
    color: #334155;
}

/* LIGHT SECTION */
.light {
    background: #f8fafc;
}

/* GRID */
.grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

/* CARDS */
.card {
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f172a;
}

.card p {
    font-size: 15.5px;
    color: #475569;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

/* ARTICLES */
.article-list {
    margin-top: 28px;
    padding-left: 18px;
}

.article-list li {
    font-size: 16px;
    margin-bottom: 14px;
    color: #334155;
}

/* CONTACT */
.contact {
    text-align: center;
}

.contact p {
    font-size: 16.5px;
    margin-bottom: 10px;
}

.contact-link {
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* FOOTER */
.footer {
    border-top: 1px solid #e5e7eb;
    padding: 36px 20px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
    background: #ffffff;
}

/* MOBILE */
@media (max-width: 900px) {
    .hero-pro-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-links a {
        display: inline-block;
        margin: 12px 16px;
    }

    .hero-pro-photo {
        margin-top: 36px;
    }
}

/* CLICKABLE CARD */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* SCREENSHOT GRID */
.screenshots {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.screenshots img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.screenshots img:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

/* PLAY STORE BUTTON */
.playstore-btn {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.playstore-btn:hover {
    background: #1558b0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ===============================
   ARTICLE PAGE
================================ */

/* Header */
.article-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 70px 20px 60px;
}

.article-header-inner {
    max-width: 760px;
    margin: auto;
}

.back-link {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 14px;
}

.article-meta {
    font-size: 14.5px;
    color: #64748b;
}

/* Content */
.article-content {
    max-width: 760px;
    margin: auto;
    padding: 60px 20px 80px;
    font-size: 17px;
    color: #1f2933;
}

.article-intro {
    font-size: 18px;
    color: #334155;
    margin-bottom: 28px;
}

.article-content h2 {
    font-size: 24px;
    margin: 40px 0 14px;
    color: #0f172a;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 18px;
    margin: 36px 0;
    color: #475569;
    font-style: italic;
}

/* Footer */
.article-footer {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    padding: 40px 20px;
}

.article-footer-inner {
    max-width: 760px;
    margin: auto;
    text-align: center;
    font-size: 14.5px;
    color: #475569;
}

.article-home-link {
    display: inline-block;
    margin-top: 12px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.article-home-link:hover {
    text-decoration: underline;
}

/* ===============================
   LOCAL PLANTS GALLERY
================================ */

.plant-grid {
    margin-top: 40px;
}

.plant-card {
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plant-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.plant-card h4 {
    font-size: 17px;
    padding: 16px;
    text-align: center;
    color: #0f172a;
    font-weight: 500;
}

.plant-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ===============================
   ARTICLE IMAGE
================================ */

.article-image {
    margin: 40px 0;
    text-align: center;
}

.article-image img {
    width: 100%;
    max-width: 760px;
    height: auto;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.article-image figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #64748b;
}