/* ===================================================
   SYNAPSID.FR - CSS HOME v5.1
   Graines de cannabis / semences botaniques
   =================================================== */

/* ===== HERO ===== */
.hero {
    background-color: #1a3a2a;
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-leaf {
    position: absolute;
}

.hero-leaf--1 {
    top: 20px;
    right: 5%;
    transform: rotate(15deg);
}

.hero-leaf--2 {
    bottom: 30px;
    left: 3%;
    transform: rotate(-20deg);
}

.hero-leaf--3 {
    top: 40%;
    right: 18%;
    transform: rotate(5deg);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: #2d5c3f;
    color: #a8d5a2;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid #4caf7d;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.hero-title-accent {
    color: #4caf7d;
}

.hero-desc {
    font-size: 17px;
    color: #a8d5a2;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-disclaimer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6a9a6a;
    margin: 0;
}

.hero-disclaimer svg {
    color: #4caf7d;
    flex-shrink: 0;
}

/* HERO VISUAL */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.hero-seed-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #2d5c3f;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.hero-seed-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.hero-seed-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: #1a3a2a;
    border: 1px solid #4caf7d;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    color: #a8d5a2;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
}

.hero-seed-badge svg {
    color: #4caf7d;
}

.hero-stats-row {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 520px;
}

.hero-stat {
    flex: 1;
    background-color: #2d5c3f;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    border: 1px solid #3d7a55;
}

.hero-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #4caf7d;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    display: block;
    font-size: 11px;
    color: #a8d5a2;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== CATEGORIES ===== */
.categories-section {
    padding: 80px 0;
    background-color: #f7faf8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cat-card {
    background-color: #fff;
    border: 1.5px solid #c8e0c8;
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: default;
}

.cat-card:hover {
    border-color: #4caf7d;
    box-shadow: 0 8px 28px rgba(76,175,125,0.18);
    transform: translateY(-3px);
}

.cat-card-icon {
    width: 52px;
    height: 52px;
    background-color: #edf5ef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #4caf7d;
    transition: background-color 0.2s, color 0.2s;
}

.cat-card:hover .cat-card-icon {
    background-color: #4caf7d;
    color: #fff;
}

.cat-card-body {
    flex: 1;
    min-width: 0;
}

.cat-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a3a2a;
    margin: 0 0 6px;
    line-height: 1.3;
}

.cat-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.cat-card-title a:hover {
    color: #4caf7d;
}

.cat-card-desc {
    font-size: 13px;
    color: #5a8a5a;
    margin: 0 0 10px;
    line-height: 1.5;
}

.cat-card-count {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #2d7a4f;
    background-color: #edf5ef;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== ARTICLES ===== */
.articles-section {
    padding: 80px 0;
    background-color: #edf5ef;
}

.articles-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.article-featured-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #c8e0c8;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.article-featured-card:hover {
    border-color: #4caf7d;
    box-shadow: 0 10px 36px rgba(76,175,125,0.18);
    transform: translateY(-3px);
}

.article-featured-img {
    position: relative;
    overflow: hidden;
}

.article-featured-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.article-featured-card:hover .article-featured-img img {
    transform: scale(1.03);
}

.article-featured-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: #1a3a2a;
    color: #4caf7d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid #4caf7d;
}

.article-featured-content {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.article-date,
.article-readtime {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #5a8a5a;
}

.article-date svg,
.article-readtime svg {
    color: #4caf7d;
    flex-shrink: 0;
}

.article-featured-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a2a;
    margin: 0 0 12px;
    line-height: 1.35;
}

.article-featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.article-featured-title a:hover {
    color: #4caf7d;
}

.article-featured-excerpt {
    font-size: 14px;
    color: #4a7a5a;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* ARTICLES GRID */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.article-card {
    background-color: #fff;
    border: 1.5px solid #c8e0c8;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    border-color: #4caf7d;
    box-shadow: 0 8px 28px rgba(76,175,125,0.16);
    transform: translateY(-3px);
}

.article-card-img {
    position: relative;
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.article-card:hover .article-card-img img {
    transform: scale(1.04);
}

.article-card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #1a3a2a;
    color: #4caf7d;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid #4caf7d;
}

.article-card-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a3a2a;
    margin: 0 0 10px;
    line-height: 1.4;
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.article-card-title a:hover {
    color: #4caf7d;
}

.article-card-excerpt {
    font-size: 13px;
    color: #4a7a5a;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: 80px 0;
    background-color: #fff;
}

.timeline {
    position: relative;
    padding: 16px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #c8e0c8;
    transform: translateX(-50%);
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    padding-bottom: 40px;
    position: relative;
}

.timeline-item--right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 14px;
    height: 14px;
    background-color: #4caf7d;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #4caf7d;
    z-index: 2;
}

.timeline-content {
    background-color: #f7faf8;
    border: 1.5px solid #c8e0c8;
    border-radius: 12px;
    padding: 20px 22px;
    max-width: 420px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.timeline-content:hover {
    border-color: #4caf7d;
    box-shadow: 0 6px 20px rgba(76,175,125,0.15);
}

.timeline-date {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4caf7d;
    background-color: #edf5ef;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a3a2a;
    margin: 0 0 8px;
    line-height: 1.35;
}

.timeline-text {
    font-size: 13px;
    color: #4a7a5a;
    line-height: 1.6;
    margin: 0;
}

/* ===== CALCULATOR ===== */
.calculator-section {
    padding: 80px 0;
    background-color: #1a3a2a;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.calculator-info .section-tag {
    background-color: #2d5c3f;
    color: #a8d5a2;
    border-color: #3d7a55;
}

.calculator-title {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.calculator-desc {
    font-size: 15px;
    color: #a8d5a2;
    line-height: 1.7;
    margin-bottom: 16px;
}

.calculator-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #6a9a6a;
    background-color: #0f2218;
    border: 1px solid #2d5c3f;
    border-radius: 8px;
    padding: 12px 14px;
    line-height: 1.5;
}

.calculator-note svg {
    color: #4caf7d;
    flex-shrink: 0;
    margin-top: 1px;
}

.calc-form {
    background-color: #2d5c3f;
    border-radius: 16px;
    padding: 30px 28px;
    border: 1px solid #3d7a55;
}

.calc-field {
    margin-bottom: 20px;
}

.calc-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #a8d5a2;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calc-select {
    width: 100%;
    padding: 11px 14px;
    background-color: #1a3a2a;
    color: #fff;
    border: 1.5px solid #3d7a55;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.calc-select:focus {
    outline: none;
    border-color: #4caf7d;
}

.calc-help {
    display: block;
    font-size: 11px;
    color: #6a9a6a;
    margin-top: 5px;
    line-height: 1.4;
}

.calc-btn {
    width: 100%;
    padding: 13px 20px;
    background-color: #4caf7d;
    color: #1a3a2a;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s, transform 0.15s;
    margin-top: 8px;
}

.calc-btn:hover,
.calc-btn:focus {
    background-color: #3d9a6a;
    color: #fff;
    transform: translateY(-1px);
    outline: none;
}

.calc-btn:focus-visible {
    outline: 2px solid #a8d5a2;
    outline-offset: 3px;
}

.calc-result {
    margin-top: 18px;
    border-radius: 10px;
    overflow: hidden;
}

.calc-result-inner {
    padding: 18px 20px;
    border-radius: 10px;
    border: 1.5px solid #3d7a55;
    background-color: #1a3a2a;
}

.calc-result-duration {
    font-size: 32px;
    font-weight: 900;
    color: #4caf7d;
    line-height: 1;
    margin-bottom: 6px;
}

.calc-result-label {
    font-size: 13px;
    color: #a8d5a2;
    margin-bottom: 10px;
}

.calc-result-tips {
    font-size: 12px;
    color: #6a9a6a;
    border-top: 1px solid #2d5c3f;
    padding-top: 10px;
    margin: 0;
    line-height: 1.5;
}

/* ===== TABLEAU BOTANIQUE ===== */
.table-section {
    padding: 80px 0;
    background-color: #f7faf8;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1.5px solid #c8e0c8;
    box-shadow: 0 4px 16px rgba(26,58,42,0.07);
}

.botanical-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 640px;
}

.botanical-table thead {
    background-color: #1a3a2a;
}

.botanical-table thead th {
    padding: 16px 18px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #a8d5a2;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
    border-bottom: 2px solid #4caf7d;
}

.botanical-table tbody tr {
    border-bottom: 1px solid #e0ede0;
    transition: background-color 0.15s;
}

.botanical-table tbody tr:last-child {
    border-bottom: none;
}

.botanical-table tbody tr:hover {
    background-color: #edf5ef;
}

.botanical-table tbody td {
    padding: 14px 18px;
    color: #2a4a35;
    vertical-align: middle;
}

.botanical-table tbody tr:nth-child(even) td {
    background-color: #f7faf8;
}

.botanical-table tbody tr:nth-child(even):hover td {
    background-color: #edf5ef;
}

.species-name {
    font-weight: 600;
    color: #1a3a2a;
    white-space: nowrap;
}

.table-note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #6a9a6a;
    margin-top: 14px;
    padding: 0 4px;
}

.table-note svg {
    color: #4caf7d;
    flex-shrink: 0;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 80px 0;
    background-color: #edf5ef;
}

.newsletter-inner {
    background-color: #fff;
    border: 1.5px solid #c8e0c8;
    border-radius: 20px;
    padding: 48px 52px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(26,58,42,0.08);
}

.newsletter-icon {
    flex-shrink: 0;
    padding-top: 6px;
}

.newsletter-text {
    min-width: 0;
}

.newsletter-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a3a2a;
    margin: 0 0 10px;
    letter-spacing: -0.015em;
}

.newsletter-desc {
    font-size: 14px;
    color: #4a7a5a;
    line-height: 1.65;
    margin: 0;
}

.newsletter-form {
    flex-shrink: 0;
    min-width: 280px;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    border: 1.5px solid #c8e0c8;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-size: 14px;
    font-family: inherit;
    color: #1a3a2a;
    background-color: #fff;
    min-width: 0;
}

.newsletter-input:focus {
    outline: none;
    background-color: #f7faf8;
}

.newsletter-input::placeholder {
    color: #9ab9a8;
}

.newsletter-btn {
    padding: 12px 18px;
    background-color: #4caf7d;
    color: #1a3a2a;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.newsletter-btn:hover,
.newsletter-btn:focus {
    background-color: #3d9a6a;
    color: #fff;
    outline: none;
}

.newsletter-btn:focus-visible {
    outline: 2px solid #1a3a2a;
    outline-offset: -2px;
}

.newsletter-privacy {
    font-size: 11px;
    color: #8aaa8a;
    margin: 0;
    line-height: 1.4;
}

.newsletter-message {
    font-size: 13px;
    margin-top: 8px;
    min-height: 0;
}

.newsletter-message.success {
    color: #1a6a3a;
    background-color: #dcf5e6;
    border-radius: 6px;
    padding: 8px 12px;
}

.newsletter-message.error {
    color: #7a2020;
    background-color: #fde8e8;
    border-radius: 6px;
    padding: 8px 12px;
}

/* ===== DISCLAIMER ===== */
.disclaimer-section {
    padding: 32px 0 48px;
    background-color: #f7faf8;
}

.disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: #fffbf0;
    border: 1.5px solid #e0c860;
    border-radius: 12px;
    padding: 20px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-icon {
    color: #c0a000;
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer-text {
    flex: 1;
    min-width: 0;
}

.disclaimer-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #7a5a00;
    margin-bottom: 6px;
}

.disclaimer-text p {
    font-size: 13px;
    color: #6a5000;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE (auto-repair) ===== */
@media (max-width: 1024px) {
    .hero {
        padding: 60px 0 52px;
    }

    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .hero-seed-card img {
        height: 240px;
    }

    .hero-stats-row {
        gap: 12px;
    }

    .hero-stat {
        padding: 14px 10px;
    }

    .hero-stat-number {
        font-size: 24px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .articles-featured {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .article-featured-img img {
        height: 190px;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .newsletter-inner {
        padding: 36px 36px;
        gap: 24px;
    }

    .newsletter-form {
        min-width: 240px;
    }

    .timeline-item {
        padding-right: calc(50% + 28px);
    }

    .timeline-item--right {
        padding-left: calc(50% + 28px);
    }

    .timeline-content {
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 48px 0 40px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-leaf--1,
    .hero-leaf--2,
    .hero-leaf--3 {
        display: none;
    }

    .hero-desc {
        font-size: 15px;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .hero-cta-row {
        gap: 12px;
    }

    .hero-visual {
        gap: 14px;
    }

    .hero-seed-card {
        max-width: 100%;
    }

    .hero-seed-card img {
        height: 220px;
    }

    .hero-stats-row {
        max-width: 100%;
        gap: 10px;
    }

    .hero-stat {
        padding: 12px 8px;
    }

    .hero-stat-number {
        font-size: 22px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .categories-section {
        padding: 52px 0;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cat-card {
        padding: 18px 16px;
        gap: 14px;
    }

    .cat-card-icon {
        width: 44px;
        height: 44px;
    }

    .articles-section {
        padding: 52px 0;
    }

    .articles-featured {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 20px;
    }

    .article-featured-img img {
        height: 200px;
    }

    .article-featured-content {
        padding: 18px 18px 20px;
    }

    .article-featured-title {
        font-size: 16px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-card-img img {
        height: 180px;
    }

    .article-card-body {
        padding: 14px 16px 16px;
    }

    .timeline-section {
        padding: 52px 0;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 52px;
        padding-bottom: 28px;
    }

    .timeline-item--right {
        justify-content: flex-start;
        padding-left: 52px;
        padding-right: 0;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        max-width: 100%;
    }

    .calculator-section {
        padding: 52px 0;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .calc-form {
        padding: 24px 20px;
    }

    .table-section {
        padding: 52px 0;
    }

    .newsletter-section {
        padding: 52px 0;
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 20px;
    }

    .newsletter-icon {
        padding-top: 0;
    }

    .newsletter-form {
        min-width: 0;
        width: 100%;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 10px;
        border: none;
        gap: 8px;
        overflow: visible;
    }

    .newsletter-input {
        padding: 12px 14px;
        border: 1.5px solid #c8e0c8;
        border-radius: 8px;
        font-size: 14px;
    }

    .newsletter-btn {
        padding: 12px 16px;
        border-radius: 8px;
        justify-content: center;
        width: 100%;
    }

    .disclaimer-section {
        padding: 24px 0 36px;
    }

    .disclaimer-box {
        padding: 16px 18px;
        gap: 12px;
    }

    .disclaimer-text p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 36px 0 32px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 4px 12px;
        margin-bottom: 14px;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-seed-card img {
        height: 180px;
    }

    .hero-seed-badge {
        font-size: 11px;
        padding: 5px 10px;
        gap: 6px;
        bottom: 10px;
        left: 10px;
    }

    .hero-stats-row {
        gap: 8px;
    }

    .hero-stat {
        padding: 10px 6px;
    }

    .hero-stat-number {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 9px;
    }

    .categories-section {
        padding: 40px 0;
    }

    .cat-card {
        padding: 14px 14px;
        gap: 12px;
    }

    .cat-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .cat-card-title {
        font-size: 15px;
    }

    .cat-card-desc {
        font-size: 12px;
    }

    .articles-section {
        padding: 40px 0;
    }

    .article-featured-img img {
        height: 170px;
    }

    .article-featured-content {
        padding: 14px 14px 16px;
    }

    .article-featured-title {
        font-size: 15px;
    }

    .article-featured-excerpt {
        font-size: 13px;
    }

    .article-card-img img {
        height: 150px;
    }

    .article-card-body {
        padding: 12px 14px 14px;
    }

    .article-card-title {
        font-size: 14px;
    }

    .article-card-excerpt {
        font-size: 12px;
    }

    .timeline-section {
        padding: 40px 0;
    }

    .timeline-line {
        left: 14px;
    }

    .timeline-item,
    .timeline-item--right {
        padding-left: 40px;
        padding-bottom: 22px;
    }

    .timeline-dot {
        left: 14px;
        width: 12px;
        height: 12px;
    }

    .timeline-content {
        padding: 14px 16px;
    }

    .timeline-title {
        font-size: 14px;
    }

    .timeline-text {
        font-size: 12px;
    }

    .calculator-section {
        padding: 40px 0;
    }

    .calculator-title {
        font-size: 20px;
    }

    .calculator-desc {
        font-size: 14px;
    }

    .calc-form {
        padding: 18px 16px;
    }

    .calc-label {
        font-size: 12px;
    }

    .calc-select {
        font-size: 13px;
        padding: 10px 12px;
    }

    .calc-btn {
        font-size: 14px;
        padding: 12px 16px;
    }

    .calc-result-duration {
        font-size: 26px;
    }

    .table-section {
        padding: 40px 0;
    }

    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-inner {
        padding: 22px 16px;
        gap: 16px;
        border-radius: 14px;
    }

    .newsletter-title {
        font-size: 18px;
    }

    .newsletter-desc {
        font-size: 13px;
    }

    .newsletter-input {
        padding: 11px 12px;
        font-size: 13px;
    }

    .newsletter-btn {
        font-size: 13px;
        padding: 11px 14px;
    }

    .newsletter-privacy {
        font-size: 10px;
    }

    .disclaimer-section {
        padding: 20px 0 28px;
    }

    .disclaimer-box {
        flex-direction: column;
        gap: 10px;
        padding: 14px 14px;
    }

    .disclaimer-icon {
        margin-top: 0;
    }

    .disclaimer-title {
        font-size: 13px;
    }

    .disclaimer-text p {
        font-size: 12px;
    }
}