/* =Hero Block Styles
-------------------------------------------------------------- */
.hero-section {
	background-image: url(/wp-content/uploads/2025/06/product-wallpaper-scaled.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #006633;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-bg-container {
	box-shadow: rgba(0, 0, 0, .35) 0px 5px 15px;
    background-image: linear-gradient(45deg, rgba(0, 23, 82, 0.7), rgb(0, 69, 71, 0.85));
}

.hero-content {
	padding: 80px 0;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-text h1 {
    font-size: 2.0rem;
    margin-bottom: 20px;
    color: #ffffff;
	text-align: center;
    line-height: 1.0;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 0 0 35%;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.button-white {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
	line-height: 1.0;
}

.button-white:hover {
    background-color: #f0f0f0;
    color: var(--secondary-color);
}


/* HERO 2 */

@keyframes ih-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}


.ih-hero {
    position: relative;
    padding-top: 7rem;       
    padding-bottom: 6rem;    
    overflow: hidden;
    /*background: linear-gradient(to bottom, #000, #000, #0B0F12);*/
    display: grid;
    grid-template-columns: 1fr;   
    gap: 3rem;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .ih-hero:has(.ih-hero__right) {
        grid-template-columns: 1fr 1fr;
        padding-top: 12rem;   /* ~pt-48 */
    }
}

.ih-hero::before {
    content: '';
    position: absolute;
    top: -6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 780px;
    height: 780px;
    background: rgba(16, 185, 129, 0.08);
    filter: blur(140px);
    border-radius: 9999px;
    pointer-events: none;
    z-index: 0;
}

.ih-hero > * {
    position: relative;
    z-index: 1;
}

.ih-hero__left {
    text-align: left;
}

.ih-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(110, 231, 183, 0.8);
    background: rgba(52, 211, 153, 0.10);
    border: 1px solid rgba(52, 211, 153, 0.20);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin: 0;
}

.ih-hero__heading {
    margin: 1rem 0 0;
    font-size: 2.75rem;     
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.05;
    animation: ih-float 4s ease-in-out infinite;
}

@media (min-width: 768px) {
    .ih-hero__heading {
        font-size: 4.5rem;  
    }
}


.ih-hero__desc {
    margin: 1.5rem 0 0;
    font-size: 1.125rem;
    color: #D1D5DB;
    max-width: 36rem;
    line-height: 1.7;
}


.ih-hero__buttons {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.ih-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
    cursor: pointer;
    line-height: 1;
}

.ih-hero__btn--primary {
    background: #10B981;
    color: #000;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}
.ih-hero__btn--primary:hover {
    background: #34D399;
    transform: scale(1.05);
    color: #000;
}

.ih-hero__btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #fff;
    font-weight: 500;
    background: transparent;
    padding: 1rem 1.75rem;
}
.ih-hero__btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.40);
    color: #fff;
}

.ih-hero__btn svg {
    flex-shrink: 0;
}


.ih-hero__stats {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    max-width: 32rem;
}

.ih-hero__stats--1col { grid-template-columns: 1fr; }
.ih-hero__stats--2col { grid-template-columns: repeat(2, 1fr); }
.ih-hero__stats--3col { grid-template-columns: repeat(3, 1fr); }

.ih-hero__stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    padding: 0.75rem;
    backdrop-filter: blur(8px);
}

.ih-hero__stat-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
}

.ih-hero__stat-label {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-top: 0.15rem;
}


.ih-hero__right {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .ih-hero__right {
        justify-content: flex-end;
    }
}

.ih-hero__image {
    width: 420px;
    max-width: 100%;
    filter: drop-shadow(0 0 40px rgba(16, 185, 129, 0.3));
    animation: ih-float 4s ease-in-out infinite;
}

@media (min-width: 768px) {
    .ih-hero__image {
        width: 520px;
    }
}

/* =============================================================================
   Content Block
   ============================================================================= */

.cb {
    padding-top: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.cb__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cb__inner {
        grid-template-columns: 1fr 1fr;
    }
}

.cb--image-right .cb__text  { order: 1; }
.cb--image-right .cb__media { order: 2; }

.cb--image-left .cb__media { order: 1; }
.cb--image-left .cb__text  { order: 2; }

@media (max-width: 767px) {
    .cb--image-left .cb__media,
    .cb--image-right .cb__media {
        order: 2;
    }
    .cb--image-left .cb__text,
    .cb--image-right .cb__text {
        order: 1;
    }
}

.cb__eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #9CA3AF;
    margin: 0 0 0.5rem;
}

.cb__heading {
    margin: 0 0 1.25rem;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .cb__heading {
        font-size: 3rem;
    }
}

p.cb__heading {
    font-size: 2.5rem;
}

.cb__desc {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    color: #D1D5DB;
    line-height: 1.75;
    max-width: 36rem;
}

.cb__features {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem 1.5rem;
}

@media (min-width: 480px) {
    .cb__features {
        grid-template-columns: 1fr 1fr;
    }
}

.cb__features li {
    font-size: 0.875rem;
    color: #9CA3AF;
    padding-left: 0;
}

.cb__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.cb__btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.cb__btn--primary {
    background: #6EE7B7;
    color: #000;
    border: none;
}
.cb__btn--primary:hover {
    background: #34D399;
    color: #000;
    transform: translateY(-1px);
}

.cb__btn--outline {
    background: transparent;
    border: 1px solid #6EE7B7;
    color: #6EE7B7;
}
.cb__btn--outline:hover {
    background: rgba(110, 231, 183, 0.10);
    color: #6EE7B7;
    border-color: #34D399;
}

.cb__media {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .cb--image-right .cb__media {
        justify-content: flex-end;
    }
    .cb--image-left .cb__media {
        justify-content: flex-start;
    }
}

.cb__media-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
}

.cb__media-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cb__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =============================================================================
   Cards Grid Block  —  .cg
   ============================================================================= */
.cg {
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.cg__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cg__heading {
    margin: 0 0 2rem;
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .cg__heading {
        font-size: 2.75rem;
    }
}

.cg__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 480px) {
    .cg__grid                { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .cg--cols-1 .cg__grid   { grid-template-columns: 1fr; }
    .cg--cols-2 .cg__grid   { grid-template-columns: repeat(2, 1fr); }
    .cg--cols-3 .cg__grid   { grid-template-columns: repeat(3, 1fr); }
    .cg--cols-4 .cg__grid   { grid-template-columns: repeat(4, 1fr); }
    .cg--cols-5 .cg__grid   { grid-template-columns: repeat(5, 1fr); }
    .cg--cols-6 .cg__grid   { grid-template-columns: repeat(6, 1fr); }
}

.cg__card {
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cg__card--solid {
    background: radial-gradient(1200px 240px at 10% 0%, rgba(16, 185, 129, .06), transparent 60%), rgba(255, 255, 255, .03);
    transition: background 0.2s, border-color 0.2s;
}

.cg__card--solid:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
}

.cg__card--glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.2s, border-color 0.2s;
}

.cg__card--glass:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.20);
}

.cg__eyebrow {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #34D399;
    font-weight: 600;
    margin: 0;
}

.cg__card-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.cg__card-desc {
    margin: 0;
    font-size: 0.825rem;
    color: #9CA3AF;
    line-height: 1.55;
}

.cg__card-btn {
    display: inline-block;
    margin-top: 0.5rem;
    align-self: flex-start;
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #10B981;
    color: #000;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.cg__card-btn:hover {
    background: #34D399;
    color: #000;
    transform: translateY(-1px);
}

/* =============================================================================
   Advanced Cards Block  —  .ac
   ============================================================================= */

.ac {
    padding-top: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.ac__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ac__header {
    margin-bottom: 2.5rem;
}

.ac__heading {
    margin: 0 0 0.5rem;
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .ac__heading { font-size: 2.5rem; }
}

.ac__subheading {
    margin: 0;
    font-size: 1rem;
    color: #9CA3AF;
    max-width: 48rem;
    line-height: 1.65;
}

.ac__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 540px) {
    .ac--cols-2 .ac__grid,
    .ac--cols-3 .ac__grid,
    .ac--cols-4 .ac__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .ac--cols-1 .ac__grid { grid-template-columns: 1fr; }
    .ac--cols-2 .ac__grid { grid-template-columns: repeat(2, 1fr); }
    .ac--cols-3 .ac__grid { grid-template-columns: repeat(3, 1fr); }
    .ac--cols-4 .ac__grid { grid-template-columns: repeat(4, 1fr); }
}

.ac__card {
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color 0.2s;
}

.ac__card--glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.ac__card--glass:hover {
    border-color: rgba(52, 211, 153, 0.40);
}

.ac__card--solid {
    background: rgba(16, 185, 129, 0.05);
}
.ac__card--solid:hover {
    border-color: rgba(52, 211, 153, 0.30);
    background: rgba(16, 185, 129, 0.08);
}

.ac__eyebrow {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #34D399;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.ac__card-title {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.ac__card-desc {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.ac__list {
    margin: 0 0 0.75rem;
    padding-left: 1.1rem;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ac__list li {
    font-size: 0.825rem;
    color: #9CA3AF;
    line-height: 1.5;
}

.ac__btn {
    display: inline-block;
    margin-top: auto;
    padding-top: 0.75rem;  
    align-self: flex-start;
    padding: 0.95rem 1.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
    margin-top: 1rem;
}

.ac__btn--primary {
    background: #10B981;
    color: #000;
    border: none;
}
.ac__btn--primary:hover {
    background: #34D399;
    color: #000;
    transform: translateY(-1px);
}

.ac__btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}
.ac__btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.ac__section-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem;
    align-items: center;
}


/* =============================================================================
   Comparison Table Block  —  .cmp
   ============================================================================= */

.cmp {
    padding-top: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.cmp__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cmp__header {
    margin-bottom: 2rem;
}

.cmp__heading {
    margin: 0 0 0.4rem;
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .cmp__heading { font-size: 2.5rem; }
}

.cmp__subheading {
    margin: 0;
    font-size: 0.95rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.cmp__table-wrap {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.cmp__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    min-width: 480px;
}

.cmp__th {
    padding: 0.75rem 1rem;
    text-align: left;
    background: #0B0F12;
    color: #D1D5DB;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.cmp__row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.15s;
}

.cmp__row:last-child {
    border-bottom: none;
}

.cmp__row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.cmp__row--highlighted {
    background: rgba(255, 255, 255, 0.05);
}

.cmp__row--highlighted:hover {
    background: rgba(255, 255, 255, 0.07);
}

.cmp__td {
    padding: 0.75rem 1rem;
    color: #9CA3AF;
    vertical-align: middle;
    line-height: 1.5;
}

.cmp__td--bold {
    color: #fff;
    font-weight: 600;
}

.cmp__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    align-items: center;
}

.cmp__btn {
    display: inline-block;
    padding: 0.65rem 1.6rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
}

.cmp__btn--primary {
    background: #10B981;
    color: #000;
    border: none;
}
.cmp__btn--primary:hover {
    background: #34D399;
    color: #000;
    transform: translateY(-1px);
}

.cmp__btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}
.cmp__btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

/* =============================================================================
   FAQ Block  —  .faq
   ============================================================================= */

.faq {
    padding-top: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.faq__inner {
    max-width: 52rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq__header {
    margin-bottom: 2rem;
}

.faq__heading {
    margin: 0 0 0.4rem;
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .faq__heading { font-size: 2.5rem; }
}

.faq__subheading {
    margin: 0;
    font-size: 0.95rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq__item {
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq__item[open] {
    border-color: rgba(255, 255, 255, 0.18);
}

.faq__item:hover {
    border-color: rgba(255, 255, 255, 0.20);
}

.faq__question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.975rem;
    color: #fff;
    list-style: none;
    user-select: none;
    -webkit-user-select: none;
    transition: background 0.15s;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::marker {
    display: none;
}

.faq__question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq__icon {
    display: inline-block;
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #fff;
    transition: transform 0.25s ease;
}

.faq__item[open] .faq__icon {
    transform: rotate(90deg);
}

.faq__answer {
    padding: 0 1.25rem 1.1rem 3rem;
    animation: faq-slide-down 0.2s ease;
}

.faq__answer p {
    margin: 0;
    font-size: 0.875rem;
    color: #9CA3AF;
    line-height: 1.7;
}

@keyframes faq-slide-down {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem;
    align-items: center;
}

.faq__btn {
    display: inline-block;
    padding: 0.65rem 1.6rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
}

.faq__btn--primary {
    background: #10B981;
    color: #000;
    border: none;
}
.faq__btn--primary:hover {
    background: #34D399;
    color: #000;
    transform: translateY(-1px);
}

.faq__btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}
.faq__btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

/* =============================================================================
   Contact Block  —  .contact
   ============================================================================= */

.contact {
    padding-top: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
}

.contact__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact__header {
    margin-bottom: 2.5rem;
}

.contact__heading {
    margin: 0 0 1rem;
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .contact__heading {
        font-size: 3rem;
    }
}

.contact__subheading {
    margin: 0;
    font-size: 1rem;
    color: #9CA3AF;
    line-height: 1.65;
}

.contact__form {
    margin: 0 auto;
    max-width: 48rem;
}

.contact__form .wpcf7-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .contact__form .wpcf7-form {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form input[type="tel"],
.contact__form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #0B0F12;
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #fff;
    font-size: 0.95rem;
    border-radius: 0;
    transition: border-color 0.2s;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: #6B7280;
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.30);
}

.contact__form textarea {
    grid-column: 1 / -1;
    min-height: 120px;
    resize: vertical;
}

.contact__form input[type="submit"],
.contact__form button[type="submit"] {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #10B981;
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.contact__form input[type="submit"]:hover,
.contact__form button[type="submit"]:hover {
    background: #34D399;
    transform: translateY(-1px);
}

.contact__form .wpcf7-not-valid-tip {
    font-size: 0.75rem;
    color: #EF4444;
    margin-top: 0.25rem;
}

.contact__form .wpcf7-response-output {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.contact__form .wpcf7-mail-sent-ok {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10B981;
    color: #34D399;
}

.contact__form .wpcf7-validation-errors,
.contact__form .wpcf7-mail-sent-ng {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #EF4444;
    color: #F87171;
}

.contact__privacy {
    margin: 1.5rem 0 0;
    font-size: 0.75rem;
    color: #6B7280;
    line-height: 1.5;
}

/* =Features Section
-------------------------------------------------------------- */
.features-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.features-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: #666666;
    line-height: 1.6;
}

/* =Products Section
-------------------------------------------------------------- */
.products-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
	font-weight: 700
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
	justify-content: center;
    text-align: center;
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
	padding-top: 25px;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #00a652;
    color: #ffffff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.product-add-to-cart {
    width: 100%;
}

/* =Question Block
-------------------------------------------------------------- */
.question-block {
    padding: 40px;
    margin: 20px 0;
	border: 1px solid #e0e0e0;
}

.question-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.question-text {
    flex: 1;
}

.question-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
	line-height: 1.5;
}

.question-text p {
    margin-bottom: 20px;
    color: #666666;
}

.question-image {
    flex: 0 0 390px;
}

.question-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* =Wiki Articles Section
-------------------------------------------------------------- */
.wiki-articles-section {
    padding: 60px 0;
}

.wiki-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.wiki-article-item {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
    transition: background-color 0.3s ease;
	border: 1px solid #e5e5e5;
}

.wiki-article-item:hover {
    background-color: #e8e8e8;
}

.wiki-article-link {
    color: #333333;
    font-weight: 500;
    display: block;
}

.wiki-article-link:hover {
    color: var(--primary-color);
	text-decoration: underline;
}

/* =Responsive Styles for Blocks
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .question-content {
        flex-direction: column;
        text-align: center;
    }
    
    .question-image {
        order: -1;
    }
    
    .wiki-articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* =Blog Posts Block
-------------------------------------------------------------- */
.blog-posts-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.blog-posts-section .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

/* Grid Layout */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-posts-grid.centered-posts {
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.blog-posts-grid.centered-posts[data-posts-count="1"] {
    grid-template-columns: minmax(300px, 400px);
}

.blog-posts-grid.centered-posts[data-posts-count="2"] {
    grid-template-columns: repeat(2, minmax(300px, 400px));
}

.blog-posts-grid.centered-posts[data-posts-count="3"] {
    grid-template-columns: repeat(3, minmax(300px, 350px));
}

/* Blog Post Item */
.blog-post-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.blog-post-item .post-thumbnail {
    position: relative;
    overflow: hidden;

}

.blog-post-item .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.blog-post-item .post-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-item .post-meta {
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.blog-post-item .meta-separator {
    margin: 0 8px;
}

.blog-post-item .post-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 0;
}

.blog-post-item .post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-item .post-title a:hover {
    color: var(--primary-color);
}

.blog-post-item .post-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-post-item .read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: center;
    width: 100%;
    text-align: center;
}

.blog-post-item .read-more-btn:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

/* Slider Styles */

.blog-posts-inner {
	position: relative;
}


.blog-posts-slider-container {
    position: relative;
    overflow: hidden;
}

.blog-posts-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.blog-posts-slider .blog-post-item {
    flex: 0 0 calc(25% - 22.5px);
    margin-right: 30px;
}

.blog-posts-inner .slider-prev,
.blog-posts-inner .slider-next {
    position: absolute;
    top: 3%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    width: 2.2em;
    height: 2.2em;
	padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.blog-posts-inner .slider-prev {
    left: unset;
	right: 45px;
}

.blog-posts-inner .slider-next {
    right: 0px;
}

.blog-posts-inner .slider-prev:hover,
.blog-posts-inner .slider-next:hover {
    background: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-posts-slider .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.blog-posts-slider .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-posts-slider .slider-dot.active {
    background: #4169E1;
    width: 30px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-posts-slider .blog-post-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blog-posts-slider .blog-post-item {
        flex: 0 0 calc(50% - 15px);
        margin-right: 20px;
    }
	
	.header-nav__list {
		gap: 10px
	}
	
	.cb__heading, .cg__heading {
		font-size: 2.0rem;
	}
	
	.ih-hero__badge {
		font-size: 0.5rem;
	}
}

@media (max-width: 768px) {
	
	.ih-hero, .cb, .cg, .ac, .cmp, .faq, .contact {
		padding-top: 3rem;
    	padding-bottom: 3rem;
	}
	
	.ih-hero__buttons {
		padding-top: 1rem;
	}
	
	.ih-hero__stats {
		padding-top: 1rem;
	}
	
	.ih-hero {
		gap: 1rem
	}
	
	.ih-hero__desc {
		font-size: 1.0rem;
	}
	
	.ih-hero__btn, .cb__btn, .ac__btn {
		font-size: 0.8rem;
	}
	
	.ih-hero__btn--outline {
		padding: 15px 15px;
	}
	
	.ac__btn {
		padding: 0.8rem 1.0rem;
	}
	
	
    .blog-posts-section {
        padding: 40px 0;
    }
    
    .blog-posts-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-posts-grid.centered-posts[data-posts-count="1"],
    .blog-posts-grid.centered-posts[data-posts-count="2"],
    .blog-posts-grid.centered-posts[data-posts-count="3"] {
        grid-template-columns: 1fr;
    }
    
    .blog-posts-slider .blog-post-item {
        flex: 0 0 100%;
        margin-right: 0;
    }
    
    .blog-posts-inner .slider-prev,
    .blog-posts-inner .slider-next {
        display: none;
    }
}

@media (max-width: 1100px) {
	
	
}

@media (max-width: 768px) {
	
	
}

@media (max-width: 480px) {
	
}

@media (max-width: 420px) {
	
}