:root {
    --saffron: #FF9933;
    --saffron-d: #e07a00;
    --green: #138808;
    --green-d: #0d6006;
    --navy: #002147;
    --navy2: #003580;
    --blue: #1a4a8a;
    --blue-mid: #1e5fa8;
    --olive: #33691e;
    --olive2: #558b2f;
    --olive3: #7cb342;
    --olive-lt: #f1f8e9;
    --amber: #f57f17;
    --amber2: #ff8f00;
    --gold: #c89b2a;
    --gold-lt: #f0c040;
    --ash: #f4f6f9;
    --border: #cdd3dc;
    --text: #1a1a1a;
    --muted: #5a6375;
    --white: #ffffff;
    --r: 6px;
    --sh: 0 2px 12px rgba(0, 33, 71, .10);
    --sh2: 0 6px 28px rgba(0, 33, 71, .14)
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Noto Sans', sans-serif;
    background: #f0f2f5;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Noto Serif', serif;
    line-height: 1.25
}

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

ul {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

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

/* ─── TICKER ─── */
.ticker-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, .82);
    font-size: .76rem;
    padding: 6px 0;
    overflow: hidden;
    border-bottom: 2px solid var(--saffron)
}

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

.ticker-label {
    background: var(--saffron);
    color: var(--navy);
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 3px;
    font-size: .7rem;
    letter-spacing: .05em;
    white-space: nowrap;
    flex-shrink: 0
}

.ticker-scroll {
    overflow: hidden;
    flex: 1
}

.ticker-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: ticker 34s linear infinite
}

.ticker-track span {
    display: flex;
    align-items: center;
    gap: 6px
}

.ticker-track span::before {
    content: '◆';
    color: var(--gold-lt);
    font-size: .5rem
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ─── TOP STRIP ─── */
.top-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: .78rem;
    color: var(--muted)
}

.top-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px
}

.top-contacts {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.top-contacts a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--muted);
    transition: color .2s
}

.top-contacts a:hover {
    color: var(--blue)
}

.top-contacts i {
    color: var(--saffron);
    font-size: .8rem
}

.top-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.top-links a {
    color: var(--muted);
    font-size: .76rem;
    transition: color .2s
}

.top-links a:hover {
    color: var(--blue)
}

/* ─── HEADER ─── */
header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, var(--blue) 100%);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 3px 16px rgba(0, 0, 0, .25)
}

.header-main {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 0
}

.gov-emblem {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    background: radial-gradient(circle, #fff8e1 60%, #f0c040 100%);
    border-radius: 50%;
    border: 3px solid var(--gold-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--navy);
    box-shadow: 0 0 0 4px rgba(240, 192, 64, .2)
}

.header-text {
    flex: 1
}

.header-text h1 {
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 2px
}

.header-text .subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-size: .74rem;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .04em
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.hbtn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--r);
    font-size: .8rem;
    font-weight: 600;
    font-family: 'Noto Sans', sans-serif;
    cursor: pointer;
    border: none;
    transition: all .2s;
    white-space: nowrap
}

.hbtn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .4)
}

.hbtn-outline:hover {
    background: rgba(255, 255, 255, .1)
}

.hbtn-saffron {
    background: var(--saffron);
    color: var(--navy);
    font-weight: 700
}

.hbtn-saffron:hover {
    background: var(--saffron-d)
}

/* ─── NAVBAR ─── */
.navbar {
    background: var(--blue);
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.nav-list {
    display: flex;
    align-items: stretch
}

.nav-list>li {
    position: relative
}

.nav-list>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .88);
    font-size: .83rem;
    font-weight: 500;
    padding: 12px 14px;
    transition: all .2s;
    white-space: nowrap
}

.nav-list>li>a:hover,
.nav-list>li>a.active {
    background: rgba(255, 255, 255, .12);
    color: #fff
}

.nav-list>li>a i.ch {
    font-size: .6rem
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    background: #fff;
    min-width: 235px;
    border-radius: 0 0 var(--r) var(--r);
    box-shadow: var(--sh2);
    border: 1px solid var(--border);
    border-top: 3px solid var(--saffron);
    padding: 6px 0
}

.nav-list>li:hover .dropdown {
    display: block
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    font-size: .81rem;
    color: var(--text);
    transition: all .2s;
    border-left: 3px solid transparent
}

.dropdown a:hover {
    background: var(--ash);
    color: var(--blue);
    border-left-color: var(--saffron)
}

.dropdown a i {
    color: var(--saffron);
    width: 15px;
    text-align: center;
    font-size: .76rem
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    display: block;
    transition: all .3s
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--navy);
    padding: 0 0 10px
}

.mobile-nav.open {
    display: flex
}

.mobile-nav a {
    color: rgba(255, 255, 255, .82);
    font-size: .86rem;
    padding: 10px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    gap: 7px
}

.mobile-nav a i {
    color: var(--saffron);
    width: 16px
}

.mobile-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .07)
}

.tricolor {
    display: flex;
    height: 5px;
}

.tricolor span:nth-child(1) {
    flex: 1;
    background: var(--blue-mid);
}

.tricolor span:nth-child(2) {
    flex: 1;
    background: #fff;
}

.tricolor span:nth-child(3) {
    flex: 1;
    background: var(--blue-mid);
}

/* ─── BREADCRUMB ─── */
.breadcrumb-bar {
    background: var(--ash);
    border-bottom: 1px solid var(--border);
    padding: 10px 0
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--muted);
    flex-wrap: wrap
}

.breadcrumb a {
    color: var(--blue);
    transition: color .2s
}

.breadcrumb a:hover {
    color: var(--saffron-d)
}

.breadcrumb i.sep {
    font-size: .6rem;
    color: var(--border)
}

/* ─── PAGE HERO ─── */
.page-hero {
    background: linear-gradient(135deg, #1b2e05 0%, var(--olive) 55%, var(--olive2) 100%);
    padding: 50px 0 44px;
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 85% 40%, rgba(124, 179, 66, .18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 5% 70%, rgba(255, 153, 51, .1) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M40 0C17.9 0 0 17.9 0 40s17.9 40 40 40 40-17.9 40-40S62.1 0 40 0zm0 70C23.4 70 10 56.6 10 40S23.4 10 40 10s30 13.4 30 30-13.4 30-30 30z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none
}

/* leaf animation */
.hero-leaves {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: .12;
    font-size: 3rem;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.hero-leaves span {
    animation: leafFloat 3s ease-in-out infinite
}

.hero-leaves span:nth-child(2) {
    animation-delay: .5s;
    margin-left: 20px
}

.hero-leaves span:nth-child(3) {
    animation-delay: 1s;
    margin-left: 10px
}

@keyframes leafFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-8px) rotate(5deg)
    }
}

.page-hero-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap
}

.page-hero-icon {
    width: 78px;
    height: 78px;
    border-radius: 16px;
    background: rgba(124, 179, 66, .2);
    border: 2px solid rgba(124, 179, 66, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    color: #c5e1a5;
    flex-shrink: 0;
    position: relative
}

.page-hero-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 20px;
    border: 1px dashed rgba(124, 179, 66, .3);
    animation: rotateBorder 12s linear infinite
}

@keyframes rotateBorder {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.page-hero-text h2 {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    color: #fff;
    margin-bottom: 8px
}

.page-hero-text p {
    color: rgba(255, 255, 255, .68);
    font-size: .9rem;
    max-width: 680px;
    line-height: 1.75
}

.page-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px
}

.ph-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .73rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 3px
}

.ph-badge.mandatory {
    background: rgba(200, 0, 0, .15);
    color: #ff8080;
    border: 1px solid rgba(200, 0, 0, .28)
}

.ph-badge.authority {
    background: rgba(124, 179, 66, .15);
    color: #c5e1a5;
    border: 1px solid rgba(124, 179, 66, .3)
}

.ph-badge.time {
    background: rgba(255, 153, 51, .12);
    color: var(--saffron);
    border: 1px solid rgba(255, 153, 51, .28)
}

.ph-badge.benefit {
    background: rgba(240, 192, 64, .12);
    color: var(--gold-lt);
    border: 1px solid rgba(240, 192, 64, .28)
}

/* ─── STATS STRIP ─── */
.stats-strip {
    background: linear-gradient(135deg, #1b2e05, var(--olive));
    padding: 0
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 0
}

.s-item {
    text-align: center;
    padding: 24px 14px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    position: relative;
    overflow: hidden
}

.s-item:last-child {
    border-right: none
}

.s-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--saffron), transparent);
    opacity: 0;
    transition: opacity .3s
}

.s-item:hover::before {
    opacity: 1
}

.s-n {
    font-family: 'Noto Serif', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--gold-lt);
    line-height: 1
}

.s-l {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 5px;
    line-height: 1.4
}

/* ─── HIGHLIGHTS BAR ─── */
.highlights-bar {
    background: #fff;
    border-bottom: 2px solid var(--olive-lt);
    padding: 16px 0;
    overflow: hidden
}

.hl-track {
    display: flex;
    gap: 0;
    white-space: nowrap
}

.hl-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    border-right: 1px solid var(--border);
    font-size: .82rem;
    color: var(--muted);
    flex-shrink: 0
}

.hl-item i {
    color: var(--olive2);
    font-size: .9rem
}

.hl-item strong {
    color: var(--navy);
    font-weight: 600
}

/* ─── MAIN LAYOUT ─── */
.main-wrap {
    padding: 56px 0 68px
}

.page-grid {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 52px;
    align-items: start
}

.left-col {
    display: flex;
    flex-direction: column;
    gap: 36px
}

/* ─── SECTION TAG / RULE ─── */
.stag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(51, 105, 30, .1);
    color: var(--olive);
    border: 1px solid rgba(51, 105, 30, .22);
    font-size: .71rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 12px
}

.gov-rule {
    display: flex;
    height: 4px;
    max-width: 80px;
    margin: 10px 0 20px
}

.gov-rule span:nth-child(1) {
    flex: 1;
    background: var(--saffron)
}

.gov-rule span:nth-child(2) {
    flex: 1;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.gov-rule span:nth-child(3) {
    flex: 1;
    background: var(--green)
}

/* ─── CONTENT BLOCK ─── */
.cb h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px
}

.cb h3 i {
    color: var(--olive2);
    font-size: 1rem
}

.cb p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.82;
    margin-bottom: 12px
}

.cb p:last-child {
    margin-bottom: 0
}

/* ─── INFO CARDS ROW ─── */
.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

.ic {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px 12px;
    text-align: center;
    transition: all .28s;
    cursor: default;
    position: relative;
    overflow: hidden
}

.ic::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--olive3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.ic:hover {
    box-shadow: var(--sh2);
    transform: translateY(-3px)
}

.ic:hover::after {
    transform: scaleX(1)
}

.ic i {
    font-size: 1.5rem;
    color: var(--olive2);
    margin-bottom: 8px;
    display: block
}

.ic .v {
    font-family: 'Noto Serif', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy)
}

.ic .l {
    font-size: .7rem;
    color: var(--muted);
    margin-top: 3px;
    line-height: 1.4
}

/* ─── NOTICE BOXES ─── */
.nbox {
    border-radius: 0 var(--r) var(--r) 0;
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.nbox-green {
    background: #e8f5e9;
    border-left: 4px solid var(--olive2)
}

.nbox-green i {
    color: var(--olive2);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0
}

.nbox-green p {
    font-size: .84rem;
    color: #1b4200;
    line-height: 1.65
}

.nbox-saffron {
    background: #fff8e1;
    border-left: 4px solid var(--saffron)
}

.nbox-saffron i {
    color: var(--saffron-d);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0
}

.nbox-saffron p {
    font-size: .84rem;
    color: #5a3e00;
    line-height: 1.65
}

.nbox-amber {
    background: #fff3e0;
    border-left: 4px solid var(--amber2)
}

.nbox-amber i {
    color: var(--amber);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0
}

.nbox-amber p {
    font-size: .84rem;
    color: #4a2400;
    line-height: 1.65
}

/* ─── STYLED LIST ─── */
.slist {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.slist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65
}

.slist li i {
    color: var(--olive2);
    font-size: .82rem;
    margin-top: 4px;
    flex-shrink: 0
}

.slist li strong {
    color: var(--navy)
}

/* ─── BENEFITS GRID ─── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.benefit-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    transition: all .28s;
    cursor: default;
    position: relative;
    overflow: hidden
}

.benefit-card:hover {
    box-shadow: var(--sh2);
    transform: translateY(-4px)
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--olive3))
}

.bc-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 12px
}

.bci-1 {
    background: rgba(51, 105, 30, .1);
    color: var(--olive)
}

.bci-2 {
    background: rgba(85, 139, 47, .1);
    color: var(--olive2)
}

.bci-3 {
    background: rgba(124, 179, 66, .1);
    color: var(--olive3)
}

.bci-4 {
    background: rgba(255, 143, 0, .1);
    color: var(--amber2)
}

.bci-5 {
    background: rgba(200, 155, 42, .1);
    color: var(--gold)
}

.bci-6 {
    background: rgba(19, 136, 8, .1);
    color: var(--green)
}

.benefit-card h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px
}

.benefit-card p {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.55
}

/* ─── PRODUCT CATEGORIES ─── */
.prod-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px
}

.ptab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: var(--r);
    border: 1.5px solid var(--border);
    background: #fff;
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s
}

.ptab:hover,
.ptab.active {
    background: var(--olive);
    color: #fff;
    border-color: var(--olive)
}

.ptab i {
    font-size: .8rem
}

.prod-panel {
    display: none;
    animation: fadeIn .3s ease
}

.prod-panel.active {
    display: block
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.prod-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
}

.prod-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-size: .82rem;
    color: var(--muted);
    transition: all .2s
}

.prod-item:hover {
    border-color: var(--olive2);
    color: var(--olive);
    background: var(--olive-lt)
}

.prod-item i {
    color: var(--olive2);
    font-size: .78rem;
    flex-shrink: 0
}

/* ─── EXPORT MARKET ─── */
.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.market-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px;
    transition: all .25s
}

.market-card:hover {
    box-shadow: var(--sh);
    border-color: var(--olive2);
    transform: translateY(-2px)
}

.mc-flag {
    font-size: 1.6rem;
    margin-bottom: 8px
}

.mc-country {
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px
}

.mc-value {
    font-size: .78rem;
    color: var(--olive2);
    font-weight: 600;
    margin-bottom: 4px
}

.mc-products {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.5
}

/* ─── DOC TABLE ─── */
.doc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem
}

.doc-table thead tr {
    background: linear-gradient(135deg, #1b2e05, var(--olive))
}

.doc-table thead th {
    color: #fff;
    padding: 11px 14px;
    text-align: left;
    font-family: 'Noto Serif', serif;
    font-weight: 600;
    font-size: .82rem
}

.doc-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background .2s
}

.doc-table tbody tr:hover {
    background: var(--olive-lt)
}

.doc-table tbody td {
    padding: 10px 14px;
    color: var(--muted);
    vertical-align: top
}

.doc-table tbody td:first-child {
    color: var(--navy);
    font-weight: 600;
    min-width: 30px
}

.req-m {
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 2px;
    background: rgba(200, 0, 0, .08);
    color: #c00
}

.req-o {
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 2px;
    background: rgba(51, 105, 30, .1);
    color: var(--olive)
}

/* ─── PROCESS TIMELINE ─── */
.timeline {
    position: relative;
    padding-left: 32px
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--saffron), var(--olive2), var(--green))
}

.tl-step {
    position: relative;
    margin-bottom: 24px
}

.tl-step:last-child {
    margin-bottom: 0
}

.tl-dot {
    position: absolute;
    left: -31px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--olive), var(--olive2));
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--olive2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    color: #fff;
    font-weight: 700
}

.tl-content {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px 18px;
    transition: all .25s
}

.tl-content:hover {
    box-shadow: var(--sh);
    border-color: var(--olive2)
}

.tl-content h4 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px
}

.tl-content h4 .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--olive2);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    flex-shrink: 0
}

.tl-content p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65
}

.tl-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
    margin-top: 6px
}

.tt-days {
    background: rgba(51, 105, 30, .1);
    color: var(--olive)
}

.tt-online {
    background: rgba(26, 74, 138, .08);
    color: var(--blue)
}

.tt-free {
    background: rgba(19, 136, 8, .1);
    color: var(--green)
}

/* ─── FAQ ─── */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 8px;
    background: #fff
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
    transition: background .2s;
    font-weight: 600;
    font-size: .88rem;
    color: var(--navy);
    gap: 10px
}

.faq-q:hover {
    background: var(--olive-lt)
}

.faq-q i {
    color: var(--olive2);
    font-size: .75rem;
    transition: transform .3s;
    flex-shrink: 0
}

.faq-q.open {
    background: var(--olive-lt)
}

.faq-q.open i {
    transform: rotate(180deg)
}

.faq-a {
    display: none;
    padding: 12px 18px 16px;
    background: #fafdf7;
    border-top: 1px solid var(--border);
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.72
}

.faq-a.open {
    display: block
}

/* ─── RIGHT FORM ─── */
.right-sticky {
    position: sticky;
    top: 120px
}

.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--sh2);
    overflow: hidden
}

/* Form header with decorative leaf pattern */
.form-head {
    background: linear-gradient(135deg, #1b2e05, var(--olive2));
    padding: 24px;
    position: relative;
    overflow: hidden
}

.form-head::before {
    content: '🌿';
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 5rem;
    opacity: .08;
    transform: rotate(20deg)
}

.form-head::after {
    content: '🌾';
    position: absolute;
    right: 20px;
    bottom: -15px;
    font-size: 4rem;
    opacity: .07;
    transform: rotate(-10deg)
}

.fh-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px
}

.fh-top i {
    color: #c5e1a5;
    font-size: 1.4rem
}

.fh-top h3 {
    color: #fff;
    font-size: 1.08rem
}

.form-head p {
    color: rgba(255, 255, 255, .62);
    font-size: .78rem;
    margin-bottom: 14px;
    position: relative;
    z-index: 1
}

.fh-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: relative;
    z-index: 1
}

.fhc {
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .15)
}

.fhc.free {
    background: rgba(124, 179, 66, .25);
    color: #c5e1a5;
    border-color: rgba(124, 179, 66, .4)
}

.form-body {
    padding: 26px
}

/* Progress indicator */
.form-progress {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 22px;
    background: var(--ash);
    border-radius: 30px;
    padding: 4px;
    overflow: hidden
}

.fp-step {
    flex: 1;
    text-align: center;
    padding: 6px 4px;
    border-radius: 26px;
    font-size: .7rem;
    font-weight: 700;
    color: var(--muted);
    transition: all .3s;
    cursor: default
}

.fp-step.active {
    background: var(--olive2);
    color: #fff
}

.fg {
    margin-bottom: 16px
}

.fg label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .76rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 7px
}

.fg label i {
    color: var(--olive2);
    font-size: .76rem
}

.fg .req {
    color: #c00;
    margin-left: 2px
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 11px 14px;
    border-radius: var(--r);
    background: var(--ash);
    border: 1.5px solid var(--border);
    color: var(--text);
    font-size: .9rem;
    font-family: 'Noto Sans', sans-serif;
    outline: none;
    transition: all .22s
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--olive2);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(85, 139, 47, .1)
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: #aab0bc;
    font-size: .86rem
}

.fg textarea {
    resize: vertical;
    min-height: 95px
}

.iw {
    position: relative
}

.iw i.ico {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--border);
    font-size: .88rem;
    pointer-events: none;
    transition: color .2s
}

.iw input {
    padding-left: 38px
}

.iw:focus-within i.ico {
    color: var(--olive2)
}

/* Character counter for textarea */
.char-count {
    font-size: .7rem;
    color: var(--muted);
    text-align: right;
    margin-top: 4px
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--olive), var(--olive2));
    color: #fff;
    font-family: 'Noto Serif', serif;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .25s;
    letter-spacing: .01em;
    position: relative;
    overflow: hidden
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--olive2), var(--olive3));
    opacity: 0;
    transition: opacity .25s
}

.submit-btn:hover::before {
    opacity: 1
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(51, 105, 30, .3)
}

.submit-btn span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px
}

.form-trust {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(51, 105, 30, .05);
    border: 1px solid rgba(51, 105, 30, .15);
    border-radius: var(--r)
}

.form-trust i {
    color: var(--olive2);
    font-size: .9rem;
    margin-top: 2px;
    flex-shrink: 0
}

.form-trust p {
    font-size: .73rem;
    color: var(--muted);
    line-height: 1.55
}

/* Quick actions row */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px
}

.qa-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: var(--r);
    border: 1.5px solid var(--border);
    background: #fff;
    transition: all .22s;
    cursor: pointer
}

.qa-btn:hover {
    border-color: var(--olive2);
    background: var(--olive-lt)
}

.qa-btn i {
    font-size: .9rem;
    flex-shrink: 0
}

.qa-btn.call i {
    color: var(--olive2)
}

.qa-btn.wa i {
    color: #25d366
}

.qa-btn .ql {
    font-size: .67rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .04em;
    display: block
}

.qa-btn .qv {
    font-size: .77rem;
    color: var(--muted)
}

/* Success state */
.success-state {
    display: none;
    padding: 32px 24px;
    text-align: center
}

.success-state.show {
    display: block
}

.suc-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(51, 105, 30, .08);
    color: var(--olive2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 18px;
    border: 3px solid rgba(51, 105, 30, .15);
    animation: scaleIn .4s ease
}

@keyframes scaleIn {
    from {
        transform: scale(.5);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.success-state h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 10px
}

.success-state p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px
}

.success-ref {
    background: var(--olive-lt);
    border: 1px solid rgba(51, 105, 30, .2);
    border-radius: var(--r);
    padding: 10px 16px;
    font-size: .8rem;
    color: var(--olive);
    font-weight: 600;
    margin-bottom: 18px
}

/* ─── FOOTER ─── */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .7)
}

.footer-top {
    padding: 44px 0 36px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 40px
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px
}

.f-emblem {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #fff8e1 60%, #f0c040 100%);
    border-radius: 50%;
    border: 2px solid var(--gold-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--navy)
}

.f-org-name {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff
}

.f-org-sub {
    font-size: .7rem;
    color: rgba(255, 255, 255, .4)
}

.footer-brand-text {
    font-size: .82rem;
    line-height: 1.7;
    max-width: 270px;
    margin-bottom: 16px
}

.f-socials {
    display: flex;
    gap: 7px
}

.fsoc {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .55);
    font-size: .82rem;
    transition: all .2s
}

.fsoc:hover {
    background: var(--saffron);
    color: var(--navy);
    border-color: var(--saffron)
}

.f-col h4 {
    color: #fff;
    font-size: .88rem;
    font-family: 'Noto Serif', serif;
    margin-bottom: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.f-links {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.f-links a {
    font-size: .8rem;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 5px
}

.f-links a::before {
    content: '›';
    color: var(--saffron);
    font-size: .95rem
}

.f-links a:hover {
    color: var(--gold-lt)
}

.f-citem {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 9px
}

.f-citem i {
    color: var(--saffron);
    font-size: .8rem;
    margin-top: 3px;
    flex-shrink: 0
}

.f-citem span {
    font-size: .8rem;
    line-height: 1.5
}

.footer-mid {
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: rgba(0, 0, 0, .15);
    padding: 13px 0
}

.footer-mid-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.fplinks {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.fplinks a {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    transition: color .2s
}

.fplinks a:hover {
    color: var(--gold-lt)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 10px 0;
    text-align: center;
    font-size: .73rem;
    color: rgba(255, 255, 255, .3)
}

.ftricolor {
    height: 4px;
    display: flex
}

.ftricolor span:nth-child(1) {
    flex: 1;
    background: var(--saffron)
}

.ftricolor span:nth-child(2) {
    flex: 1;
    background: #fff
}

.ftricolor span:nth-child(3) {
    flex: 1;
    background: var(--green)
}

/* ─── WHATSAPP ─── */
.wa-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 18px rgba(37, 211, 102, .4);
    transition: all .3s
}

.wa-float:hover {
    transform: scale(1.1)
}

/* ─── REVEAL ─── */
.rev {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease
}

.rev.in {
    opacity: 1;
    transform: translateY(0)
}

.d1 {
    transition-delay: .06s
}

.d2 {
    transition-delay: .12s
}

.d3 {
    transition-delay: .18s
}

.d4 {
    transition-delay: .24s
}

/* ─── RESPONSIVE ─── */
@media(max-width:1100px) {
    .page-grid {
        grid-template-columns: 1fr
    }

    .right-sticky {
        position: static
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }

    .stats-inner {
        grid-template-columns: repeat(3, 1fr)
    }

    .s-item:nth-child(4),
    .s-item:nth-child(5) {
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .s-item:nth-child(3) {
        border-right: none
    }
}

@media(max-width:768px) {
    .top-strip-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .header-right {
        display: none
    }

    .gov-emblem {
        width: 48px;
        height: 48px;
        font-size: 1.4rem
    }

    .header-text h1 {
        font-size: .94rem
    }

    .nav-list {
        display: none
    }

    .nav-hamburger {
        display: flex
    }

    .navbar {
        display: flex;
        align-items: center;
        padding: 0 14px;
        min-height: 44px
    }

    .navbar .container {
        width: 100%;
        display: flex;
        justify-content: flex-end
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .market-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .prod-list {
        grid-template-columns: 1fr
    }

    .quick-actions {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-mid-inner {
        flex-direction: column;
        text-align: center
    }

    .fplinks {
        justify-content: center
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .s-item:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, .1)
    }

    .s-item:nth-child(2) {
        border-right: none
    }

    .s-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .s-item:nth-child(5) {
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .hero-leaves {
        display: none
    }

    .hl-track {
        overflow: hidden
    }
}

@media(max-width:520px) {
    .container {
        padding: 0 14px
    }

    .main-wrap {
        padding: 36px 0 52px
    }

    .page-hero {
        padding: 32px 0 28px
    }

    .info-cards {
        grid-template-columns: 1fr 1fr
    }

    .benefits-grid {
        grid-template-columns: 1fr
    }

    .market-grid {
        grid-template-columns: 1fr
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr
    }

    .prod-tabs {
        gap: 6px
    }

    .ptab {
        padding: 7px 10px;
        font-size: .76rem
    }

    .doc-table {
        font-size: .76rem
    }

    .compare-hd,
    .doc-table thead th {
        font-size: .76rem;
        padding: 8px 10px
    }

    .doc-table tbody td {
        padding: 8px 10px
    }
}

.logo-emblem img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}