@tailwind base;
@tailwind components;
@tailwind utilities;

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

:root {
    --green: #196642;
    --green-dark: #0d4f2c;
    --green-soft: #1f7a49;
    --text: #0f172a;
    --muted: #64748b;
    --white: #ffffff;
    --bg: #f5f7f6;
    --card: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* HEADER */
.site-header {
    background: var(--green);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}

.nav-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.download-btn {
    background: #f4f8f5;
    color: var(--green) !important;
    padding: 11px 18px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.menu-btn {
    display: none;
    border: none;
    background: rgba(255, 255, 255, 0.14);
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
}

/* TICKER */
.ticker-bar {
    background: #03552b;
    color: #fff;
    overflow: hidden;
}

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

.ticker-label {
    flex: 0 0 auto;
    background: #056634ff;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.ticker-track {
    position: relative;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-marquee {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    min-width: max-content;
    animation: tickerMove 18s linear infinite;
    /* speed barano hoyeche */
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    margin-right: 40px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* CONTENT */
.section {
    padding: 90px 0;
}

.section-soft {
    background: #f0f2f1;
}

.section-title {
    text-align: center;
    font-size: clamp(30px, 4vw, 46px);
    margin-bottom: 14px;
    color: #0f172a;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 42px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 18px;
}

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

.info-card {
    background: var(--card);
    border-radius: 22px;
    padding: 30px 26px;
    box-shadow: var(--shadow);
}

.feature-card {
    background: #135C35;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.step-card:hover {
    transform: translateY(-6px);
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card h3,
.step-card h3 {
    margin-bottom: 5px;
    /* font-size: 24px; */
    margin-top: -10px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.step-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.step-number {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    margin: 0 auto 25px;
    background: var(--green);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.step-card p {
    color: var(--muted);
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, #166b3d 0%, #125d34 100%);
    padding: 90px 0;
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: clamp(30px, 4vw, 50px);
    margin-bottom: 14px;
    font-weight: 800;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
}

/* FOOTER */
.site-footer {
    background: #e9f3ee;
    color: #111827;
    margin-top: 0;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-brand {
    margin-bottom: 14px;
    color: var(--green);
}

.site-footer h3 {
    margin-bottom: 14px;
    font-size: 18px;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: #374151;
}

.footer-bottom {
    border-top: 1px solid #d7dbe1;
    margin-top: 36px;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

/* ANIMATION */
.hero-fade-up {
    animation: fadeUp 0.9s ease both;
}

.hero-float {
    animation: phoneFloat 4.5s ease-in-out infinite;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

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

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }
}

@keyframes gridDrift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 40px);
    }
}

@keyframes floatOrb1 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, -22px);
    }
}

@keyframes floatOrb2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-16px, 22px);
    }
}

@keyframes floatOrb3 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, -12px);
    }
}

@keyframes floatOrb4 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-18px, 18px);
    }
}

@keyframes floatOrb5 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-26px, -18px);
    }
}

@keyframes floatOrb6 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(18px, -20px);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .hero-grid,
    .footer-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-grid {
        padding: 70px 0;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-license img {
        margin: 0 auto;
    }

    .nav-links {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--green);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        z-index: 90;
    }

    .nav-links.is-open {
        display: flex;
    }

    .menu-btn {
        display: inline-block;
    }

    .ticker-inner {
        gap: 10px;
    }

    .ticker-label {
        font-size: 12px;
        padding: 5px 10px;
    }

    .ticker-marquee {
        gap: 28px;
        animation-duration: 18s;
    }
}

@media (max-width: 640px) {
    .brand {
        font-size: 20px;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .hero-content h1 {
        font-size: 33px;
        margin-top: -40px;
    }

    .hero-content p {
        font-size: 16px;
        justify-content: center;

        text-align: center;
        margin-top: -8px;
    }

    .section {
        padding: 70px 0;
    }

    .info-card {
        padding: 24px 20px;
    }

    .ticker-item {
        font-size: 12px;
    }
}


/* ABOUT PAGE */
/* ABOUT PAGE HERO - DEEP ANIMATED NETWORK */
.about-hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    display: flex;
    align-items: center;
    isolation: isolate;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.05), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.04), transparent 16%),
        radial-gradient(circle at 76% 84%, rgba(255, 255, 255, 0.05), transparent 22%),
        radial-gradient(circle at 28% 74%, rgba(255, 255, 255, 0.04), transparent 18%),
        linear-gradient(135deg, #0e4e2c 0%, #15663a 42%, #0a3f22 100%);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 20%),
        radial-gradient(circle at 65% 35%, rgba(182, 255, 216, 0.05), transparent 18%),
        radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.04), transparent 18%),
        linear-gradient(180deg, rgba(2, 16, 8, 0.08), rgba(2, 16, 8, 0.3));
}

/* deep network lines */
.about-network-line {
    position: absolute;
    display: block;
    height: 1px;
    opacity: 0.7;
    background: linear-gradient(90deg,
            rgba(180, 255, 214, 0),
            rgba(180, 255, 214, 0.34),
            rgba(255, 255, 255, 0));
    transform-origin: left center;
    animation: aboutNetworkPulse 7s ease-in-out infinite;
}

.about-line-1 {
    width: 340px;
    top: 10%;
    left: 2%;
    transform: rotate(16deg);
    animation-delay: 0s;
}

.about-line-2 {
    width: 260px;
    top: 19%;
    left: 14%;
    transform: rotate(62deg);
    animation-delay: 1.4s;
}

.about-line-3 {
    width: 210px;
    top: 30%;
    left: 26%;
    transform: rotate(-12deg);
    animation-delay: 2.2s;
}

.about-line-4 {
    width: 360px;
    top: 14%;
    right: 5%;
    transform: rotate(-15deg);
    animation-delay: 0.7s;
}

.about-line-5 {
    width: 280px;
    top: 28%;
    right: 18%;
    transform: rotate(57deg);
    animation-delay: 1.8s;
}

.about-line-6 {
    width: 220px;
    top: 46%;
    right: 8%;
    transform: rotate(-28deg);
    animation-delay: 2.8s;
}

.about-line-7 {
    width: 400px;
    bottom: 20%;
    left: 5%;
    transform: rotate(-9deg);
    animation-delay: 1.2s;
}

.about-line-8 {
    width: 290px;
    bottom: 12%;
    left: 23%;
    transform: rotate(34deg);
    animation-delay: 2.6s;
}

.about-line-9 {
    width: 240px;
    bottom: 26%;
    left: 42%;
    transform: rotate(-41deg);
    animation-delay: 3.4s;
}

.about-line-10 {
    width: 300px;
    bottom: 16%;
    right: 18%;
    transform: rotate(18deg);
    animation-delay: 1s;
}

.about-line-11 {
    width: 200px;
    top: 38%;
    left: 48%;
    transform: rotate(10deg);
    animation-delay: 2s;
}

.about-line-12 {
    width: 230px;
    top: 54%;
    left: 58%;
    transform: rotate(-36deg);
    animation-delay: 2.4s;
}

.about-line-13 {
    width: 180px;
    top: 60%;
    left: 8%;
    transform: rotate(48deg);
    animation-delay: 3.1s;
}

.about-line-14 {
    width: 220px;
    top: 8%;
    left: 46%;
    transform: rotate(22deg);
    animation-delay: 1.1s;
}

/* nodes */
.about-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(208, 255, 227, 0.82);
    box-shadow:
        0 0 0 7px rgba(208, 255, 227, 0.04),
        0 0 18px rgba(208, 255, 227, 0.18);
    animation: aboutNodeBlink 5s ease-in-out infinite;
}

.about-node-1 {
    top: 9%;
    left: 8%;
    animation-delay: 0.2s;
}

.about-node-2 {
    top: 15%;
    left: 24%;
    animation-delay: 0.8s;
}

.about-node-3 {
    top: 22%;
    left: 31%;
    animation-delay: 1.4s;
}

.about-node-4 {
    top: 12%;
    left: 49%;
    animation-delay: 2s;
}

.about-node-5 {
    top: 10%;
    right: 18%;
    animation-delay: 0.5s;
}

.about-node-6 {
    top: 18%;
    right: 10%;
    animation-delay: 1.6s;
}

.about-node-7 {
    top: 30%;
    right: 23%;
    animation-delay: 2.7s;
}

.about-node-8 {
    top: 42%;
    right: 8%;
    animation-delay: 3s;
}

.about-node-9 {
    top: 36%;
    left: 18%;
    animation-delay: 1.9s;
}

.about-node-10 {
    top: 44%;
    left: 34%;
    animation-delay: 0.7s;
}

.about-node-11 {
    top: 40%;
    left: 53%;
    animation-delay: 2.3s;
}

.about-node-12 {
    top: 57%;
    left: 64%;
    animation-delay: 1.2s;
}

.about-node-13 {
    top: 63%;
    left: 10%;
    animation-delay: 2.9s;
}

.about-node-14 {
    top: 68%;
    left: 27%;
    animation-delay: 3.4s;
}

.about-node-15 {
    bottom: 18%;
    left: 20%;
    animation-delay: 1.1s;
}

.about-node-16 {
    bottom: 12%;
    left: 38%;
    animation-delay: 2.1s;
}

.about-node-17 {
    bottom: 24%;
    left: 56%;
    animation-delay: 0.9s;
}

.about-node-18 {
    bottom: 14%;
    right: 22%;
    animation-delay: 2.6s;
}

.about-node-19 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.about-node-20 {
    top: 52%;
    right: 26%;
    animation-delay: 3.2s;
}

/* glows */
.about-deep-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.24;
    animation: aboutGlowMove 11s ease-in-out infinite alternate;
}

.about-glow-1 {
    width: 250px;
    height: 250px;
    top: -30px;
    left: -20px;
    background: rgba(130, 255, 180, 0.2);
}

.about-glow-2 {
    width: 300px;
    height: 300px;
    top: 8%;
    right: -50px;
    background: rgba(178, 255, 220, 0.11);
    animation-delay: 1.4s;
}

.about-glow-3 {
    width: 280px;
    height: 280px;
    bottom: -80px;
    left: 34%;
    background: rgba(255, 255, 255, 0.08);
    animation-delay: 2.2s;
}

.about-glow-4 {
    width: 220px;
    height: 220px;
    bottom: 8%;
    right: 16%;
    background: rgba(120, 255, 173, 0.12);
    animation-delay: 3s;
}

.about-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 56px;
    align-items: center;
    padding: 90px 0 80px;
}

.about-hero-content {
    color: #ffffff;
    max-width: 640px;
}

.about-hero-content h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
}

.about-lead {
    font-size: 19px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin-bottom: 34px;
}

.about-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.about-stat-box {
    min-width: 150px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat-box strong {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.about-stat-box span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.about-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-phone-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    filter: blur(10px);
    animation: aboutPhoneAura 5s ease-in-out infinite;
}

.about-phone-ring {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 40px;
    border: 1px solid rgba(201, 255, 220, 0.12);
    transform: rotate(-10deg);
    animation: aboutRingFloat 8s ease-in-out infinite;
}

.about-phone-image {
    position: relative;
    z-index: 2;
    width: min(460px, 100%);
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.25));
    animation: aboutPhoneFloat 5s ease-in-out infinite;
}

/* animations */
@keyframes aboutNetworkPulse {

    0%,
    100% {
        opacity: 0.2;
        filter: brightness(1);
    }

    50% {
        opacity: 0.95;
        filter: brightness(1.45);
    }
}

@keyframes aboutNodeBlink {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.8);
        opacity: 1;
    }
}

@keyframes aboutGlowMove {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(22px, -16px, 0) scale(1.1);
    }
}

@keyframes aboutPhoneAura {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes aboutRingFloat {

    0%,
    100% {
        transform: rotate(-10deg) translateY(0px);
    }

    50% {
        transform: rotate(-6deg) translateY(-10px);
    }
}

@keyframes aboutPhoneFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* responsive */
@media (max-width: 991px) {
    .about-hero {
        min-height: auto;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 70px 0 60px;
    }

    .about-hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .about-stats {
        justify-content: center;
    }

    .about-phone-image {
        width: min(360px, 92%);
    }

    .about-phone-ring {
        width: 300px;
        height: 300px;
    }

    .about-network-line {
        opacity: 0.5;
    }
}

@media (max-width: 640px) {
    .about-hero-content h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .about-lead {
        font-size: 17px;
    }

    .about-stat-box {
        width: 100%;
    }

    .about-phone-glow {
        width: 320px;
        height: 320px;
    }

    .about-phone-ring {
        width: 240px;
        height: 240px;
    }

    .about-phone-image {
        width: min(310px, 90%);
    }

    .about-node {
        width: 6px;
        height: 6px;
    }
}

.about-content-section {
    position: relative;
    background: linear-gradient(180deg, #f3f7f4 0%, #eef4f0 100%);
    padding: 90px 0 80px;
}

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 30px;
}

.about-info-card,
.about-story-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(20, 92, 53, 0.08);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-info-card::before,
.about-story-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #135c35 0%, #1f7a49 55%, #58b77a 100%);
}

.about-info-card:hover,
.about-story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
    border-color: rgba(20, 92, 53, 0.14);
}

.about-info-card h2,
.about-story-card h2 {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-info-card p,
.about-story-card p {
    font-size: 17px;
    line-height: 1.9;
    color: #374151;
    margin: 0;
}

.about-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-values-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.85;
    color: #374151;
}

.about-values-list li:last-child {
    margin-bottom: 0;
}

.about-values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #135c35 0%, #2ca25f 100%);
    box-shadow: 0 0 0 5px rgba(19, 92, 53, 0.08);
}

.about-story-card {
    width: 100%;
}

@media (max-width: 991px) {
    .about-card-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .about-info-card,
    .about-story-card {
        padding: 26px 22px;
    }
}

@media (max-width: 640px) {
    .about-content-section {
        padding: 70px 0 60px;
    }

    .about-info-card h2,
    .about-story-card h2 {
        font-size: 26px;
    }

    .about-info-card p,
    .about-story-card p,
    .about-values-list li {
        font-size: 16px;
        line-height: 1.8;
    }
}

@media (max-width: 640px) {


    .site-footer {
        background: #e9f3ee;
        color: #111827;
        margin-top: 0;
        padding-top: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }
}






/* CONTACT PAGE */
.page-hero.white-section {
    background: linear-gradient(180deg, #f8faf8 0%, #f3f6f4 100%);
    padding: 90px 0 40px;
}

.container.narrow {
    width: min(920px, 92%);
    margin: 0 auto;
}

.center-text {
    text-align: center;
}

.page-hero.white-section h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.page-hero.white-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
    max-width: 720px;
    margin: 0 auto;
}

.section.gray-section {
    background: linear-gradient(180deg, #f3f6f4 0%, #eef3f0 100%);
    padding: 30px 0 90px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid rgba(19, 92, 53, 0.08);
    border-radius: 28px;
    padding: 46px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #135c35 0%, #1f7a49 50%, #58b77a 100%);
}

.contact-card>div {
    position: relative;
    padding-bottom: 6px;
}

.contact-card>div:not(:last-child) {
    border-bottom: 1px solid #edf2ef;
    padding-bottom: 24px;
}

.contact-card h3 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.contact-card p,
.contact-card a {
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
    margin: 0;
}

.contact-card a {
    color: #135c35;
    font-weight: 600;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.contact-card a:hover {
    color: #0d4f2c;
    opacity: 0.9;
}

.contact-card p br {
    line-height: 2;
}

/* optional info block style */
.contact-card>div::after {
    content: '';
    position: absolute;
    left: -14px;
    top: 8px;
    width: 4px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(180deg, #135c35 0%, #58b77a 100%);
    opacity: 0.9;
}

/* responsive */
@media (max-width: 768px) {
    .page-hero.white-section {
        padding: 70px 0 28px;
    }

    .page-hero.white-section h1 {
        font-size: 34px;
    }

    .page-hero.white-section p {
        font-size: 16px;
        line-height: 1.75;
    }

    .section.gray-section {
        padding: 22px 0 70px;
    }

    .contact-card {
        padding: 28px 22px;
        border-radius: 22px;
        gap: 26px;
    }

    .contact-card h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .contact-card p,
    .contact-card a {
        font-size: 16px;
        line-height: 1.8;
    }

    .contact-card>div::after {
        left: -10px;
        width: 3px;
        height: 22px;
    }
}



/* FAQ SECTION */
.faq-section {
    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(19, 92, 53, 0.04), transparent 22%),
        radial-gradient(circle at bottom right, rgba(31, 122, 73, 0.05), transparent 24%),
        linear-gradient(180deg, #f6faf7 0%, #eff5f1 100%);
}

.faq-wrap {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(19, 92, 53, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #135c35 0%, #1f7a49 55%, #58b77a 100%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border-color: rgba(19, 92, 53, 0.14);
}

.faq-item:hover::before,
.faq-item.is-open::before {
    opacity: 1;
}

.faq-item.is-open {
    border-color: rgba(19, 92, 53, 0.16);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.09);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    color: #0f172a;
    transition: background 0.25s ease, color 0.25s ease;
}

.faq-question:hover {
    background: rgba(19, 92, 53, 0.02);
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(19, 92, 53, 0.08);
    color: #135c35;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    transition:
        transform 0.35s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.faq-item.is-open .faq-icon {
    background: #135c35;
    color: #ffffff;
}

.faq-icon.rotate {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition:
        max-height 0.45s ease,
        opacity 0.28s ease;
}

.faq-answer-inner {
    padding: 0 28px 24px;
}

.faq-answer p {
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
}

/* responsive */
@media (max-width: 991px) {
    .faq-section {
        padding: 75px 0;
    }

    .faq-wrap {
        max-width: 100%;
    }

    .faq-question {
        font-size: 18px;
        padding: 22px 22px;
    }

    .faq-answer-inner {
        padding: 0 22px 22px;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 65px 0;
    }

    .faq-question {
        font-size: 16px;
        line-height: 1.45;
        padding: 18px 18px;
        gap: 12px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 24px;
    }

    .faq-answer-inner {
        padding: 0 18px 18px;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.8;
    }

    .faq-item {
        border-radius: 18px;
    }
}



.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d3b24 0%, #0f4d2f 45%, #0a2418 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.9;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(5, 20, 13, 0.78) 0%,
            rgba(7, 30, 18, 0.62) 40%,
            rgba(9, 39, 24, 0.28) 100%);
    z-index: 1;
}

.hero-soft-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-soft-glow-1 {
    width: 280px;
    height: 280px;
    background: rgba(34, 197, 94, 0.18);
    top: 10%;
    left: 8%;
}

.hero-soft-glow-2 {
    width: 340px;
    height: 340px;
    background: rgba(134, 239, 172, 0.12);
    right: 10%;
    bottom: 8%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hero-content h1 {
    margin: 0 0 20px;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    margin: 0 0 30px;
    max-width: 560px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(241, 245, 249, 0.88);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary {
    background: #f8fafc;
    color: #166534;
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-actions .btn-primary:hover {
    background: #dcfce7;
    color: #14532d;
    transform: translateY(-2px);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.42);
    transform: translateY(-2px);
}

.hero-license {
    margin-top: 10px;
}

.hero-license img {
    max-width: 140px;
    height: auto;
    display: block;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: min(100%, 420px);
    max-height: 78vh;
    object-fit: contain;
    filter:
        drop-shadow(0 25px 50px rgba(0, 0, 0, 0.35)) drop-shadow(0 8px 18px rgba(34, 197, 94, 0.18));
}

.hero-fade-up {
    animation: heroFadeUp 0.9s ease forwards;
}

.hero-float {
    animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

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

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 0px 10px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        padding-top: 70px;
        padding-bottom: 60px;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-license img {
        margin: 0 auto;
    }

    .hero-image img {
        width: min(100%, 340px);
        max-height: none;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(5, 20, 13, 0.68) 0%,
                rgba(7, 30, 18, 0.55) 45%,
                rgba(9, 39, 24, 0.4) 100%);
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .hero-soft-glow-1,
    .hero-soft-glow-2 {
        display: none;
    }
}
















* {
    box-sizing: border-box;
}

.ratings-reviews {
    width: 100%;
    max-width: 1200px;
    padding: 18px 35px 40px;
    background: #ffffff;
    color: #1f1f1f;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 auto;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
}

.section-title h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.arrow {
    font-size: 28px;
    color: #444;
    line-height: 1;
}

.ratings-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rate-button {
    height: 38px;
    padding: 0 18px;
    border: 1px solid #dadce0;
    background: #fff;
    border-radius: 999px;
    color: #374151;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    transition: 0.25s ease;
}

.rate-button:hover {
    background: #f8fafc;
}

.rate-button.active {
    background: #b8dfd8;
    border-color: #b8dfd8;
    color: #00856f;
    font-weight: 600;
}

.device-icon {
    font-size: 21px;
    line-height: 1;
    font-weight: 700;
}

.device-icon.desktop {
    font-size: 25px;
}

.ratings-summary {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 25px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.overall-rating {
    font-size: 100px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -5px;
    color: #202124;
}

.rating-stars {
    margin-top: 14px;
    color: #00856f;
    font-size: 23px;
    letter-spacing: 1px;
}

.total-reviews {
    margin-top: 12px;
    font-size: 14px;
    color: #4b5563;
}

.ratings-breakdown {
    width: 100%;
}

.rating-item {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
}

.rating-label {
    font-size: 13px;
    color: #374151;
}

.rating-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #00856f;
    border-radius: 999px;
}

.reviews-list {
    width: 100%;
}

.review {
    position: relative;
    padding: 16px 0 12px;
    border-bottom: 1px solid #e5e7eb;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.review-stars {
    margin-top: 8px;
    color: #00856f;
    font-size: 12px;
    letter-spacing: 1px;
}

.review-date {
    margin-left: 4px;
    color: #4b5563;
    font-size: 12px;
    letter-spacing: normal;
}

.review-text {
    margin: 8px 0 12px;
    font-size: 16px;
    line-height: 1.45;
    color: #374151;
}

.review-helpful {
    font-size: 12px;
    color: #4b5563;
    margin-bottom: 4px;
}

.helpful-action {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 12px;
    color: #4b5563;
}

.rate-confirm {
    min-width: 47px;
    height: 24px;
    padding: 0 14px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 999px;
    color: #374151;
    font-size: 12px;
    cursor: pointer;
    transition: 0.25s ease;
}

.rate-confirm:hover {
    background: #f3f4f6;
}

.review-response {
    margin: 12px 0 0 30px;
    padding: 15px 12px 24px;
    background: #f8f9fa;
    border-radius: 4px;
}

.review-response-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
}

.review-response-text {
    margin: 0;
    font-size: 12px;
    color: #374151;
}

.review-menu {
    position: absolute;
    top: 17px;
    right: -4px;
    border: none;
    background: transparent;
    color: #374151;
    font-size: 21px;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 768px) {
    .ratings-reviews {
        padding: 18px 18px 35px;
    }

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

    .overall-rating {
        font-size: 80px;
    }

    .ratings-overview {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 20px;
        align-items: center;
    }

    .rating-stars,
    .total-reviews {
        grid-column: 2;
        margin-top: 3px;
    }

    .review-text {
        font-size: 14px;
    }

    .helpful-action {
        gap: 12px;
        flex-wrap: wrap;
    }

    .review-response {
        margin-left: 0;
    }
}




.hero-image {
    position: relative;
}

.hero-phone-slide-image {
    width: 100%;
    height: auto;
    display: block;
    animation: heroPhoneFade 0.45s ease-in-out;
}

@keyframes heroPhoneFade {
    from {
        opacity: 0;
        transform: scale(0.985) translateY(6px);
    }

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

.hero-phone-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 5;
}

.hero-phone-dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transition: all 0.25s ease;
}

.hero-phone-dots span.active {
    width: 18px;
    background: #facc15;
}