/*
Theme Name: Custom Theme
Description: A fast, SEO-optimized WordPress theme.
Version: 1.4
Text Domain: custom-theme
*/

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #000;
    overflow-x: hidden;
}

a {
    color: #000000;
    text-decoration: underline;
}

a:hover {
    color: #7D7D81;
    text-decoration: underline;
}

.skip-link.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link.screen-reader-text:focus {
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 3px;
    clip: auto !important;
    clip-path: none;
    color: #000000;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 6px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 7px;
    width: auto;
    z-index: 100000;
}

.site-header {
    position: relative;
    z-index: 30;
    width: 100%;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8% 10px 8%;
    max-width: 1250px;
    margin: 0 auto;
    gap: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
}

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

.logo-text {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #000;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.nav-links ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-links ul li {
    position: relative;
}

.nav-links ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 19px;
    font-weight: 500;
}

.nav-links ul li a:hover {
    color: #7D7D81;
}

.nav-links ul li.menu-item-has-children > a i {
    font-size: 14px;
    margin-left: 5px;
}

.nav-links ul li > a.dropdown-trigger:not([href]) {
    cursor: default;
}

.nav-links ul .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    width: max-content;
    z-index: 100;
    padding-top: 15px;
}

@media (min-width: 1025px) {
    .nav-links ul li:hover > .sub-menu {
        display: block;
    }
}

.nav-links ul .sub-menu .sub-menu-inner {
    background-color: #fff;
    box-shadow: 0px 8px 24px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 10px 0;
    overflow: hidden;
}

.nav-links ul .sub-menu ul {
    display: block;
}

.nav-links ul .sub-menu li {
    width: 100%;
}

.nav-links ul .sub-menu li a {
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

.nav-links ul .sub-menu li a:hover {
    color: #7D7D81;
    background-color: #f8f8f8;
}

.lang-select {
    padding: 6px 8px;
    border: 1px solid #000;
    border-radius: 6px;
    font-size: 16px;
    background-color: transparent;
    min-width: 100px;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1100;
    padding: 0;
    margin-left: 5px;
}

/* When the menu is open, fix the toggle button so it stays visible while
   the user scrolls through the nav panel on mobile.                       */
@media (max-width: 1024px) {
    .menu-toggle.active {
        position: fixed;
        top: 22px;
        right: 5%;
    }
}

.hamburger-bar {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    left: 0;
}

.hamburger-bar:nth-child(1) { top: 0; }
.hamburger-bar:nth-child(2) { top: 9px; }
.hamburger-bar:nth-child(3) { top: 18px; }

.menu-toggle.active .hamburger-bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active .hamburger-bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .hamburger-bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 1024px) {
    .header-inner { padding: 15px 5%; }
    .menu-toggle { display: block; }
    .logo-text { font-size: 22px; letter-spacing: -0.5px; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: #ffffff;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    .nav-links::before {
        content: "";
        height: 60px;
        background: #f8f8f8;
        width: 100%;
        display: block;
    }
    .nav-links.active { right: 0; }
    .nav-links ul {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
    }
    .nav-links ul li { width: 100%; }
    .nav-links ul li a {
        padding: 15px 25px;
        color: #000000;
        border-bottom: 1px solid #eee;
        width: 100%;
        font-size: 19px;
        display: block;
        text-decoration: none;
    }
    .nav-links ul li:hover > .sub-menu { display: none; }
    .nav-links ul .sub-menu {
        display: none;
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        background-color: #fafafa;
        width: 100%;
    }
    .nav-links ul li.open > .sub-menu { display: block; }
    .nav-links ul .sub-menu .sub-menu-inner {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
    .nav-links ul .sub-menu li a {
        padding-left: 45px;
        border-bottom: 1px solid #eee;
    }
}

.site-footer {
    padding: 35px 20px;
    text-align: center;
    width: 100%;
}

.footer-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
}

.footer-links ul li:not(:last-child)::after {
    content: "|";
    color: rgba(255,255,255,0.4);
    font-size: 16px;
    margin-left: 12px;
}

.copyright-bar {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #f2f2f2;
}

.copyright-bar p {
    color: #444;
    font-size: 15px;
    margin: 0;
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: -80px;
    width: 55px;
    height: 55px;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 9999;
    transition: all 0.4s;
}

#scrollTopBtn.visible { right: 25px; }

.hero-shape-wrapper {
    position: relative;
    background-color: #ffffff;
    width: 100%;
    overflow: hidden;
    min-height: 600px;
}

@media (min-width: 1025px) {
    .hero-shape-wrapper::after {
        content: '';
        position: absolute;
        top: 120px;
        right: -100px;
        width: 750px;
        height: 850px;
        background: linear-gradient(135deg, #a6b4b7 0%, #6ab6bd 100%); /* fallback, overridden by customizer */
        border-radius: 180px;
        transform: rotate(-20deg);
        z-index: 1;
        pointer-events: none;
    }
    .hero-mockup-img {
        position: absolute;
        top: 130px;
        right: 10%;
        width: 360px;
        height: auto;
        object-fit: contain;
        z-index: 5;
        pointer-events: none;
        display: block;
    }
    .mobile-mockup { display: none; }
}

.main-wrapper {
    position: relative;
    z-index: 10;
    padding: 20px 4% 0 4%;
}

.hero-card {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    padding: 100px 20px 80px 20px;
}

.hero-card h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    z-index: 15;
    max-width: 580px;
    line-height: 1.1;
}

.hero-card p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 45px;
    color: #555;
    position: relative;
    z-index: 15;
    max-width: 500px;
}

.btn-download {
    position: relative;
    z-index: 15;
    background: linear-gradient(135deg, #a6b4b7 0%, #6ab6bd 100%); /* fallback, overridden by customizer */
    border: none;
    width: fit-content;
    padding: 18px 45px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.btn-download:hover {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .hero-mockup-img { display: none; }
    .hero-card {
        text-align: center;
        padding: 40px 10px;
    }
    .hero-card h1 {
        font-size: 32px;
        max-width: 100%;
        margin: 0 auto 20px auto;
    }
    .hero-card p {
        font-size: 18px;
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
    .btn-download { margin: 0 auto 40px auto; }
    .mobile-mockup {
        display: block;
        width: 80%;
        max-width: 300px;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
        position: relative;
        z-index: 5;
    }
}

.content-section {
    max-width: 1100px;
    margin: 40px auto 0 auto;
    text-align: center;
    padding: 0 20px;
    line-height: 1.5;
}

.content-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.content-section p {
    font-size: 22px;
    color: #555;
    margin-bottom: 25px;
}

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 20px;
    margin: 20px auto 50px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.feature-item {
    flex: 0 1 calc(50% - 20px);
    min-width: 140px;
    max-width: 180px;
    text-align: center;
}

@media (min-width: 768px) {
    .feature-item { flex: 1; }
}

.feature-icon-wrapper {
    background-color: #f6f6f6;
    border-radius: 40px;
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 12px;
    box-shadow: 0 8px 10px -5px rgba(0,0,0,0.15);
}

.feature-icon-wrapper img {
    width: 95px;
    height: 95px;
    object-fit: contain;
}

.feature-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
}

.faq-section {
    background-color: #ffffff;
    padding: 10px 8% 80px 8%;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.faq-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #222;
    text-align: center;
    letter-spacing: -1px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: none;
    padding: 0;
}

.faq-item:hover {
    border-color: #6ab6bd;
    background: #fff;
}

.faq-number {
    display: none;
}

.faq-question-text {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.faq-question-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    text-align: left;
}

.faq-answer-box {
    padding: 0 25px 20px 25px;
    text-align: left;
}

.faq-answer-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    text-align: left;
}


/* ══════════════════════════════════════════════════════════════════════════
   Grey "Detailed Features" section — exactly matches main.html
   ══════════════════════════════════════════════════════════════════════════ */
.grey-content-section {
    background-color: #f9f9f9;
    padding: 60px 8% 100px 8%;
    text-align: left;
    margin-top: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.grey-content-section .grey-content-inner {
    max-width: 1100px;
    margin: 0 auto 35px auto;
    box-sizing: border-box;
}

.grey-content-section .grey-content-inner:last-child {
    margin-bottom: 0;
}

.grey-content-section .grey-content-inner h2,
.grey-content-section > h2 {
    font-size: 52px;
    font-weight: 700;
    color: #333;
    margin-top: 50px;
    margin-bottom: 50px;
    line-height: 1.1;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
}

.grey-content-section .grey-content-inner h3,
.grey-content-section > h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
}

.grey-content-section .grey-content-inner p,
.grey-content-section > p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.grey-content-section > h2 {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    margin-top: 35px;
    text-align: center;
}
.grey-content-section > h2:first-child { margin-top: 0; }

.grey-content-section > p {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
}

.grey-content-section ul,
.grey-content-section ol,
.grey-content-section .grey-content-inner ul,
.grey-content-section .grey-content-inner ol {
    list-style-position: outside;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #555;
}

.grey-content-section ul li,
.grey-content-section ol li,
.grey-content-section .grey-content-inner ul li,
.grey-content-section .grey-content-inner ol li {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 4px;
}

.requirements-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
}

.req-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
    text-align: left;
    border: 1px solid #eee;
}

.req-table th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 700;
    padding: 12px 15px;
    border: 1px solid #eee;
    font-size: 15px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.req-table td {
    padding: 12px 15px;
    border: 1px solid #eee;
    word-break: break-word;
    overflow-wrap: break-word;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.wp-block-table,
.post-text table,
.page-content table,
.grey-content-section table,
.content-section table,
.entry-content table {
    width: 100%;
    overflow-x: auto;
    display: block;
    margin: 30px 0;
}

.wp-block-table table,
.post-text table table,
.page-content table table,
.grey-content-section table table,
.content-section table table,
.entry-content table table,
.post-text > table,
.page-content > table,
.grey-content-section > table,
.grey-content-section .grey-content-inner > table,
.content-section > table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
    text-align: left;
    border: 1px solid #eee;
    font-family: Arial, Helvetica, sans-serif;
    display: table;
    margin: 0;
}

.wp-block-table figure,
.wp-block-table figcaption { margin: 0; padding: 0; }

.wp-block-table th,
.post-text th,
.page-content th,
.grey-content-section th,
.grey-content-section .grey-content-inner th,
.content-section th,
.entry-content th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 700;
    padding: 12px 15px;
    border: 1px solid #eee;
    font-size: 15px;
    text-align: left;
    word-break: break-word;
    overflow-wrap: break-word;
}

.wp-block-table td,
.post-text td,
.page-content td,
.grey-content-section td,
.grey-content-section .grey-content-inner td,
.content-section td,
.entry-content td {
    padding: 12px 15px;
    border: 1px solid #eee;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
}

.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
    border-color: #eee;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.faq-question-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    user-select: none;
    gap: 15px;
    margin-bottom: 0;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: #6ab6bd;
    color: #fff;
}

.faq-answer-box {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 30px;
    position: relative;
}

.faq-item.active .faq-answer-box {
    max-height: 500px;
    padding: 0 30px 30px 30px;
}

.faq-answer-box::before {
    content: none;
}

.faq-answer-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.blog-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 25px;
}

.archive-title {
    margin-top: 10px;
    margin-bottom: 30px;
}

.blog-post {
    margin-bottom: 60px;
}

.blog-post-link {
    display: flex;
    gap: 40px;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
    width: 100%;
}

.blog-post-link:hover { text-decoration: none; }

.blog-post-link:hover .blog-image-container { transform: scale(1.03); }

.blog-post-link:hover .blog-title::after { width: 100%; }

.blog-image-container {
    flex: 0 0 320px;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-info {
    flex: 1;
    text-align: left;
}

.blog-cat {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.8px;
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
}

.blog-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
}

.blog-excerpt {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
}

.blog-date {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

.no-posts {
    font-size: 18px;
    color: #555;
    text-align: center;
    padding: 60px 0;
}

.pagination {
    margin: 40px 0 60px 0;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    position: static;
    height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    overflow: visible;
}

.pagination .nav-links::before { display: none; }

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination .page-numbers:hover {
    border-color: #009696;
    color: #009696;
    text-decoration: none;
}

.pagination .page-numbers.current {
    background-color: #009696;
    border-color: #009696;
    color: #ffffff;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    width: auto;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .blog-post-link {
        flex-direction: column;
        gap: 20px;
    }
    .blog-image-container {
        flex: none;
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .blog-post-link { gap: 25px; }
    .blog-image-container { flex: 0 0 280px; }
    .blog-container { padding: 0 40px; }
}

.post-container {
    max-width: 1000px;
    margin: 20px auto 40px;
    padding: 0 25px;
}

.post-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
    line-height: 1.2;
}

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

.post-date,
.post-modified {
    font-size: 13px;
    color: #999;
}

.post-modified {
    font-style: italic;
}

.post-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #009696;
    background-color: #f0fafa;
    padding: 3px 10px;
    border-radius: 20px;
}

.post-image-wrapper { margin-bottom: 20px; }

.post-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.post-text {
    font-size: 17px;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.6;
}

.post-text p {
    margin-bottom: 18px;
}

.post-text img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 6px;
}

.post-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0 5px 0;
    color: #222;
}

.post-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0 3px 0;
    color: #333;
}

.post-text ul {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 5px;
}

.post-text ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 3px;
    font-size: 16px;
    color: #333333;
}

.post-text ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.post-navigation {
    margin: 15px 0 0 0;
    padding: 15px 0 0 0;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: static;
    height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    overflow: visible;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
}

.post-navigation .nav-links::before { display: none; }

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation a {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-decoration: none;
    color: #333;
}

.post-navigation a:hover {
    color: #009696;
    text-decoration: none;
}

.post-navigation .nav-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
}

.post-navigation .nav-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: inherit;
}

@media (max-width: 600px) {
    .post-meta { gap: 8px; }
    .post-navigation .nav-links { flex-direction: column; }
    .post-navigation .nav-next { text-align: left; }
}

.comment-section-wrapper {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.comment-title {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.comment-list {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
}

.comment-list li {
    margin-bottom: 25px;
}

.comment-body {
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 20px 25px;
}

.comment-author-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.comment-avatar img {
    border-radius: 50%;
    display: block;
}

.comment-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.comment-author-name {
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.comment-date {
    font-size: 12px;
    color: #999;
}

.comment-content {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

.comment-content p { margin-bottom: 8px; }

.comment-awaiting-moderation {
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin-bottom: 8px;
}

.comment-reply a {
    font-size: 13px;
    color: #009696;
    text-decoration: none;
    font-weight: 600;
}

.comment-reply a:hover { text-decoration: underline; }

.comment-list .children {
    list-style: none;
    padding-left: 40px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .comment-list .children { padding-left: 20px; }
}

.comment-box {
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 25px;
}

.form-group { margin-bottom: 15px; }

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.required { color: #cc0000; }

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 15px;
}

.form-textarea {
    height: 160px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
}

.checkbox-group input { margin-top: 3px; }

.submit-btn {
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
}

.page-container {
    max-width: 1250px;
    margin: 30px auto 40px;
    padding: 0 8%;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.2;
}

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

.page-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #000;
}

.page-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333333;
}

.page-content ul,
.page-content ol {
    list-style-position: inside;
    color: #333333;
    margin-bottom: 20px;
}

.post-text ul,
.post-text ol {
    margin-bottom: 20px;
}

.download-box {
    text-align: center;
    margin: 30px 0;
    width: 100%;
}

.available-label {
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.dl-btn {
    display: block;
    width: 100%;
    max-width: 550px;
    margin: 10px auto;
    padding: 14px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 6px;
    border-width: 1px;
    border-style: solid;
}

.dl-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #000000;
    text-decoration: none;
}

.dl-btn.secondary {
    background-color: #ffffff;
    color: #006b6b;
    border-color: #006b6b;
}

.wp-block-button .wp-block-button__link,
.wp-block-button__link {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 6px !important;
    border: 2px solid #009696;
    background-color: #009696;
    color: #ffffff !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wp-block-button .wp-block-button__link:hover,
.wp-block-button__link:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #000000 !important;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    text-decoration: none;
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background-color: #ffffff;
    color: #009696 !important;
    border-color: #009696;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

.wp-block-buttons {
    margin-bottom: 20px;
}

.home .hero-shape-wrapper {
    margin-top: -70px;
    padding-top: 70px;
}
.feature-card-section {
    background: radial-gradient(circle, #013636 0%, #001a1a 100%);
    border-radius: 10px;
    padding: 40px 60px 60px 60px;
    color: #ffffff;
    text-align: center;
    margin: 0 auto 60px auto;
    max-width: 920px;
    box-sizing: border-box;
}

.feature-card-section h2,
.content-section .feature-card-section h2 {
    font-family: Arial, Helvetica, sans-serif !important;
    color: #ffffff !important;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 22px 0;
    line-height: 1.15;
    letter-spacing: 0;
}

.feature-card-section p,
.content-section .feature-card-section p {
    font-family: Arial, Helvetica, sans-serif !important;
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 400;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 38px auto;
    line-height: 1.45;
    text-align: center;
}

.feature-card-section img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .feature-card-section {
        padding: 50px 25px 45px 25px;
    }
    .feature-card-section h2,
    .content-section .feature-card-section h2 {
        font-size: 32px;
    }
    .feature-card-section p,
    .content-section .feature-card-section p {
        font-size: 18px;
        font-weight: 400;
    }
}
/* ── Info Blocks Grid ─────────────────────────────────────────────────────── */
.info-blocks-section {
    max-width: 1150px;
    margin: 60px auto;
    padding: 0 20px;
}

.info-blocks-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.info-blocks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.info-block-card {
    background-color: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 18px;
    padding: 38px 30px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

.info-block-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #009696;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-block-card:hover {
    transform: translateY(-6px);
    border-color: #e2e8ed;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.06);
}

.info-block-card:hover::before {
    opacity: 1;
}

.info-block-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px 0;
    line-height: 1.35;
    letter-spacing: -0.3px;
    font-family: Arial, Helvetica, sans-serif;
}

.info-block-card p {
    font-size: 15.5px;
    color: #5c6b73;
    line-height: 1.65;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
    .info-blocks-container {
        grid-template-columns: 1fr;
    }

    .info-blocks-heading {
        font-size: 26px;
    }

    .info-block-card {
        padding: 28px 22px;
    }
}
/* ── End Info Blocks Grid ─────────────────────────────────────────────────── */
