/*
Theme Name: Blocksy Child
Template: blocksy
Description: Child theme for Tekarab homepage customization
Version: 1.0.0
Text Domain: blocksy-child
*/

/* ========================================
   RESET / BASE
   ======================================== */

html {
    margin: 0;
    padding: 0;
}

body.tekarab-homepage-body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
}

body.tekarab-homepage-body .ct-container,
body.tekarab-homepage-body #main-container,
body.tekarab-homepage-body main.site-main,
body.tekarab-homepage-body article,
body.tekarab-homepage-body .hero-section,
body.tekarab-homepage-body .entry-content,
body.tekarab-homepage-body .content-area {
    margin: 0;
    padding: 0;
    max-width: none;
}

body.tekarab-homepage-body .site-content,
body.tekarab-homepage-body .site-main,
body.tekarab-homepage-body .content-area,
body.tekarab-homepage-body .entry-content {
    width: 100%;
}

body.tekarab-homepage-body .ct-content-block,
body.tekarab-homepage-body .ct-section-spacing,
body.tekarab-homepage-body .ct-container-full {
    margin: 0;
    padding: 0;
}

.tekarab-site-shell {
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
}

.tekarab-main-content {
    display: block;
}

/* ========================================
   HEADER
   ======================================== */

.tekarab-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

.tekarab-header .header-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tekarab-header .logo-nav-group {
    display: flex;
    align-items: center;
    gap: 26px;
    min-width: 0;
}

.tekarab-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1d4ed8;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.tekarab-logo:hover {
    color: #1d4ed8;
    text-decoration: none;
}

.tekarab-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.tekarab-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.tekarab-nav .nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.tekarab-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #2f3b4c;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.15;
    padding: 10px 0;
    letter-spacing: -0.015em;
    transition: color 0.15s ease, opacity 0.15s ease;
    white-space: nowrap;
}

.tekarab-nav .nav-link:hover {
    color: #111827;
    text-decoration: none;
}

.tekarab-nav .nav-toggle {
    font-size: 10px;
    color: #9ca3af;
    line-height: 1;
    transform: translateY(1px);
    transition: color 0.15s ease, transform 0.15s ease;
}

.tekarab-nav .nav-item:hover .nav-toggle,
.tekarab-nav .nav-item.active .nav-toggle {
    color: #2563eb;
}

.tekarab-signup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    border: none;
    box-shadow: none;
    transition: background 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
}

.tekarab-signup-btn:hover {
    background: #1d4ed8;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ========================================
   DROPDOWN
   ======================================== */

.tekarab-nav .dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 210px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    overflow: hidden;
    z-index: 1001;
}

.tekarab-nav .nav-item:hover .dropdown,
.tekarab-nav .nav-item.active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tekarab-nav .dropdown-link {
    display: block;
    padding: 11px 16px;
    color: #4b5563;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.tekarab-nav .dropdown-link:last-child {
    border-bottom: none;
}

.tekarab-nav .dropdown-link:hover {
    background: #f8fafc;
    color: #2563eb;
    text-decoration: none;
    padding-left: 20px;
}

/* ========================================
   HERO
   ======================================== */

.tekarab-hero {
    padding: 52px 20px 34px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e5e7eb;
}

.tekarab-hero .hero-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.tekarab-hero .hero-title {
    margin: 0 0 14px;
    color: #111827;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.tekarab-hero .hero-subtitle {
    max-width: 820px;
    margin: 0 auto 24px;
    color: #6b7280;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

/* ========================================
   SEARCH
   ======================================== */

.tekarab-hero .search-container {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}

.tekarab-hero .search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.tekarab-hero .search-input {
    width: 100%;
    min-height: 52px;
    padding: 0 48px 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    color: #111827;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.tekarab-hero .search-input::placeholder {
    color: #9ca3af;
}

.tekarab-hero .search-input:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.tekarab-hero .search-icon {
    position: absolute;
    right: 16px;
    font-size: 16px;
    color: #6b7280;
    pointer-events: none;
}

.tekarab-hero .search-suggestions {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    max-height: 0;
    overflow: hidden;
    z-index: 30;
    transition: max-height 0.15s ease;
}

.tekarab-hero .search-suggestions.active {
    max-height: 320px;
    overflow-y: auto;
}

.tekarab-hero .suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.12s ease;
}

.tekarab-hero .suggestion-item:last-child {
    border-bottom: none;
}

.tekarab-hero .suggestion-item:hover {
    background: #f8fafc;
    text-decoration: none;
}

.tekarab-hero .suggestion-icon {
    min-width: 20px;
    font-size: 16px;
    line-height: 1;
}

.tekarab-hero .suggestion-content {
    flex: 1;
    min-width: 0;
}

.tekarab-hero .suggestion-title {
    color: #111827;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.tekarab-hero .suggestion-desc {
    margin-top: 2px;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
}

/* ========================================
   TOOLS SECTION
   ======================================== */

.tekarab-tools-section {
    padding: 26px 20px 36px;
    background: #ffffff;
}

.tekarab-tools-section .tools-header {
    max-width: 1380px;
    margin: 0 auto 20px;
}

.tekarab-tools-section .tools-header h2 {
    margin: 0 0 4px;
    color: #111827;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.tekarab-tools-section .tools-header p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

.tekarab-tools-section .tools-grid {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 14px;
}

.tekarab-tools-section .tool-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.tekarab-tools-section .tool-card:hover {
    background: #f8fafc;
    border-color: #2563eb;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

.tekarab-tools-section .tool-icon {
    display: block;
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 1;
}

.tekarab-tools-section .tool-title {
    margin: 0 0 4px;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.tekarab-tools-section .tool-desc {
    margin: 0;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .tekarab-header .header-inner {
        padding: 0 18px;
    }

    .tekarab-header .logo-nav-group {
        gap: 34px;
    }

    .tekarab-nav {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .tekarab-header .header-inner {
        min-height: auto;
        padding: 14px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .tekarab-header .logo-nav-group {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .tekarab-nav {
        flex-wrap: wrap;
        gap: 14px 16px;
    }

    .tekarab-hero {
        padding: 38px 16px 28px;
    }

    .tekarab-hero .hero-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .tekarab-hero .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .tekarab-hero .search-input {
        min-height: 48px;
        font-size: 14px;
    }

    .tekarab-tools-section {
        padding: 22px 16px 30px;
    }

    .tekarab-tools-section .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .tekarab-logo {
        font-size: 17px;
    }

    .tekarab-logo img {
        width: 34px;
        height: 34px;
    }

    .tekarab-nav {
        gap: 12px;
    }

    .tekarab-nav .nav-link {
        font-size: 13px;
    }

    .tekarab-signup-btn {
        min-height: 38px;
        padding: 0 16px;
        font-size: 13px;
    }

    .tekarab-hero {
        padding: 30px 14px 22px;
    }

    .tekarab-hero .hero-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .tekarab-hero .hero-subtitle {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .tekarab-tools-section .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .tekarab-tools-section .tool-card {
        padding: 14px 12px;
    }

    .tekarab-tools-section .tool-icon {
        font-size: 28px;
    }

    .tekarab-tools-section .tools-header h2 {
        font-size: 20px;
    }
}
/* ========================================
   EXTRA SECTIONS
   ======================================== */

.tekarab-section-inner {
    max-width: 1380px;
    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-heading p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

.tekarab-category-section,
.tekarab-benefits-section {
    padding: 8px 20px 34px;
    background: #ffffff;
}

.tekarab-category-section .tekarab-section-inner,
.tekarab-benefits-section .tekarab-section-inner {
    padding: 22px 24px 24px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

/* CATEGORY CARDS */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.category-card {
    display: block;
    padding: 18px 18px 17px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.category-card:hover {
    background: #f8fbff;
    border-color: #bfdbfe;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
    text-decoration: none;
}

.category-label {
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.category-meta {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

/* BENEFITS */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.benefit-card {
    padding: 20px 20px 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.benefit-card:hover {
    border-color: #dbeafe;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

.benefit-card h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.benefit-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */

.tekarab-footer {
    margin-top: 8px;
    background: #0f172a;
    color: #cbd5e1;
    border-top: 1px solid #1e293b;
}

.tekarab-footer-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 34px 20px 24px;
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-logo:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-logo img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-brand p {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    flex: 1;
    max-width: 720px;
}

.footer-links-column h4 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links-column a {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
}

.footer-links-column a:hover {
    color: #ffffff;
    text-decoration: none;
}

.tekarab-footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 14px 20px 16px;
    text-align: center;
}

.tekarab-footer-bottom p {
    margin: 0;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tekarab-footer-inner {
        flex-direction: column;
    }

    .footer-links-group {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .tekarab-category-section,
    .tekarab-benefits-section {
        padding: 6px 16px 26px;
    }

    .tekarab-category-section .tekarab-section-inner,
    .tekarab-benefits-section .tekarab-section-inner {
        padding: 18px 18px 18px;
        border-radius: 14px;
    }

    .section-heading {
        margin-bottom: 16px;
    }

    .section-heading h2 {
        font-size: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .tekarab-footer-inner {
        padding: 28px 16px 20px;
    }

    .footer-links-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .category-grid,
    .footer-links-group {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 19px;
    }

    .section-heading p,
    .benefit-card p,
    .footer-brand p,
    .footer-links-column a {
        font-size: 13px;
    }

    .category-card,
    .benefit-card {
        padding: 16px;
    }
}
/* ========================================
   FREE TOOLS PAGE
   ======================================== */

.tekarab-free-tools-hero {
    padding: 26px 20px 18px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.tekarab-free-tools-hero .tekarab-section-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.free-tools-hero-copy {
    max-width: 720px;
}

.free-tools-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.free-tools-hero-copy h1 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.025em;
}

.free-tools-hero-copy p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
    max-width: 760px;
}

.free-tools-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(92px, 1fr));
    gap: 10px;
    min-width: 300px;
}

.free-tools-stat-card {
    padding: 12px 12px 11px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: left;
}

.free-tools-stat-card strong {
    display: block;
    margin-bottom: 2px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
}

.free-tools-stat-card span {
    display: block;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.tekarab-free-tools-categories,
.tekarab-free-tools-listing,
.tekarab-major-platforms-section {
    padding: 24px 20px 34px;
    background: #ffffff;
}

.free-tools-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.free-tools-category-card {
    display: block;
    padding: 20px 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.free-tools-category-card:hover {
    background: #f8fbff;
    border-color: #bfdbfe;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
    text-decoration: none;
}

.free-tools-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 22px;
    line-height: 1;
}

.free-tools-category-title {
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.free-tools-category-text {
    display: block;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.free-tools-groups {
    display: grid;
    gap: 18px;
}

.free-tools-group {
    padding: 22px 22px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.free-tools-group-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.free-tools-group-head h3 {
    margin: 0;
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.free-tools-group-head a {
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.free-tools-group-head a:hover {
    color: #1d4ed8;
    text-decoration: none;
}

.free-tools-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.free-tools-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #0f172a;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.free-tools-mini-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
    text-decoration: none;
}

.free-tools-mini-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 18px;
    line-height: 1;
}

.free-tools-mini-card strong {
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.major-platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.major-platform-card {
    display: block;
    padding: 22px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.major-platform-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.08);
    transform: translateY(-3px);
    text-decoration: none;
}

.major-platform-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 24px;
    line-height: 1;
}

.major-platform-name {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.major-platform-desc {
    display: block;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 1200px) {
    .free-tools-mini-grid,
    .major-platforms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .tekarab-free-tools-hero .tekarab-section-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .free-tools-hero-stats {
        min-width: 0;
        width: 100%;
    }

    .free-tools-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .tekarab-free-tools-hero,
    .tekarab-free-tools-categories,
    .tekarab-free-tools-listing,
    .tekarab-major-platforms-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .free-tools-hero-copy h1 {
        font-size: 26px;
    }

    .free-tools-hero-copy p {
        font-size: 14px;
    }

    .free-tools-group {
        padding: 18px;
    }

    .free-tools-group-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .free-tools-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .free-tools-hero-stats,
    .free-tools-category-grid,
    .free-tools-mini-grid,
    .major-platforms-grid {
        grid-template-columns: 1fr;
    }

    .tekarab-free-tools-hero {
        padding-top: 22px;
        padding-bottom: 16px;
    }

    .free-tools-hero-copy h1 {
        font-size: 24px;
    }

    .free-tools-stat-card,
    .free-tools-category-card,
    .major-platform-card {
        padding: 16px 14px;
    }

    .free-tools-mini-card {
        padding: 14px 12px;
    }
}
/* ========================================
   IMAGE TOOLS PAGE
   ======================================== */

.tekarab-category-hero {
    padding: 28px 20px 18px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.tekarab-category-hero .tekarab-section-inner {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
}

.category-hero-copy {
    max-width: 820px;
}

.category-hero-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-hero-copy h1 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.025em;
}

.category-hero-copy p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.category-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    max-width: 340px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.tekarab-category-tools-section,
.tekarab-category-feature-section,
.tekarab-category-platform-link {
    padding: 24px 20px 34px;
    background: #ffffff;
}

.category-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.category-tool-card {
    display: block;
    padding: 20px 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.category-tool-card:hover {
    background: #f8fbff;
    border-color: #bfdbfe;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
    text-decoration: none;
}

.category-tool-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 22px;
    line-height: 1;
}

.category-tool-card h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.category-tool-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.category-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.category-feature-card {
    padding: 20px 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.category-feature-card h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.category-feature-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.category-platform-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #dbe3ee;
    border-radius: 16px;
}

.category-platform-copy {
    max-width: 760px;
}

.category-platform-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-platform-copy h2 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.category-platform-copy p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.category-platform-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    background: #2563eb;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: background 0.15s ease, transform 0.15s ease;
}

.category-platform-button:hover {
    background: #1d4ed8;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .tekarab-category-hero .tekarab-section-inner,
    .category-platform-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-hero-badges {
        justify-content: flex-start;
        max-width: none;
    }

    .category-tools-grid,
    .category-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .tekarab-category-hero,
    .tekarab-category-tools-section,
    .tekarab-category-feature-section,
    .tekarab-category-platform-link {
        padding-left: 16px;
        padding-right: 16px;
    }

    .category-hero-copy h1 {
        font-size: 26px;
    }

    .category-tool-card,
    .category-feature-card,
    .category-platform-card {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .category-tools-grid,
    .category-feature-grid {
        grid-template-columns: 1fr;
    }

    .tekarab-category-hero {
        padding-top: 24px;
        padding-bottom: 16px;
    }

    .category-hero-copy h1 {
        font-size: 24px;
    }

    .category-hero-copy p,
    .category-tool-card p,
    .category-feature-card p,
    .category-platform-copy p {
        font-size: 13px;
    }

    .category-platform-button {
        width: 100%;
    }
}
.category-empty-state {
    padding: 28px 24px;
    background: #ffffff;
    border: 1px dashed #d1d5db;
    border-radius: 14px;
}

.category-empty-state h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
}

.category-empty-state p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}
/* ========================================
   GENERIC TOOL PAGE TEMPLATE
   ======================================== */

.tekarab-tool-main {
    background: #f8fafc;
}

.tekarab-tool-shell {
    padding: 24px 20px 48px;
}

.tekarab-tool-shell-inner {
    max-width: 1380px;
    margin: 0 auto;
}

.tekarab-tool-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.5;
}

.tekarab-tool-breadcrumb a {
    color: #64748b;
    text-decoration: none;
}

.tekarab-tool-breadcrumb a:hover {
    color: #2563eb;
    text-decoration: none;
}

.tekarab-tool-header {
    margin-bottom: 20px;
}

.tekarab-tool-page-title {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.tekarab-tool-page-subtitle {
    margin: 0;
    max-width: 820px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.tekarab-tool-content-area {
    width: 100%;
    min-width: 0;
}

.tekarab-tool-content-area > *:first-child {
    margin-top: 0 !important;
}

.tekarab-tool-content-area .tkb-wrap {
    padding: 0 !important;
    background: transparent !important;
}

.tekarab-tool-content-area .tkb-inner {
    max-width: 100% !important;
    margin: 0 !important;
}

.tekarab-tool-content-area .wp-block-group,
.tekarab-tool-content-area .wp-block-columns,
.tekarab-tool-content-area .wp-block-column {
    max-width: 100%;
}

@media (max-width: 768px) {
    .tekarab-tool-shell {
        padding: 18px 16px 36px;
    }

    .tekarab-tool-page-title {
        font-size: 26px;
    }

    .tekarab-tool-page-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tekarab-tool-shell {
        padding: 16px 14px 30px;
    }

    .tekarab-tool-page-title {
        font-size: 23px;
    }

    .tekarab-tool-breadcrumb {
        font-size: 12px;
        gap: 6px;
    }
}
/* ========================================
   GENERIC TOOL PAGE TEMPLATE
   ======================================== */

.tekarab-tool-main {
    background: #f8fafc;
}

.tekarab-tool-shell {
    padding: 18px 20px 48px;
}

.tekarab-tool-shell-inner {
    max-width: 1380px;
    margin: 0 auto;
}

.tekarab-tool-content-area {
    width: 100%;
    min-width: 0;
}

.tekarab-tool-content-area > *:first-child {
    margin-top: 0 !important;
}

.tekarab-tool-content-area .tkb-wrap {
    padding: 0 !important;
    background: transparent !important;
}

.tekarab-tool-content-area .tkb-inner {
    max-width: 1160px !important;
    margin: 0 auto !important;
}

.tekarab-tool-content-area .wp-block-group,
.tekarab-tool-content-area .wp-block-columns,
.tekarab-tool-content-area .wp-block-column {
    max-width: 100%;
}

@media (max-width: 768px) {
    .tekarab-tool-shell {
        padding: 16px 16px 36px;
    }

    .tekarab-tool-content-area .tkb-inner {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .tekarab-tool-shell {
        padding: 14px 14px 30px;
    }
}
/* ========================================
   GENERIC TOOL PAGE TEMPLATE
   ======================================== */

.tekarab-tool-page-body .ct-breadcrumbs,
.tekarab-tool-page-body .yoast-breadcrumb,
.tekarab-tool-page-body .rank-math-breadcrumb,
.tekarab-tool-page-body .aioseo-breadcrumbs,
.tekarab-tool-page-body nav[aria-label="breadcrumb"],
.tekarab-tool-page-body nav[aria-label="Breadcrumb"],
.tekarab-tool-page-body .breadcrumbs,
.tekarab-tool-page-body .breadcrumb,
.tekarab-tool-page-body .page-title,
.tekarab-tool-page-body .entry-title,
.tekarab-tool-page-body .hero-section[data-type="type-1"],
.tekarab-tool-page-body .ct-page-title,
.tekarab-tool-page-body .ct-breadcrumbs-container {
    display: none !important;
}

.tekarab-tool-main {
    background: #f8fafc;
}

.tekarab-tool-shell {
    padding: 18px 20px 48px;
}

.tekarab-tool-shell-inner {
    max-width: 1380px;
    margin: 0 auto;
}

.tekarab-tool-content-area {
    width: 100%;
    min-width: 0;
}

.tekarab-tool-content-area > *:first-child {
    margin-top: 0 !important;
}

.tekarab-tool-content-area .tkb-wrap {
    padding: 0 !important;
    background: transparent !important;
}

.tekarab-tool-content-area .tkb-inner {
    max-width: 1160px !important;
    margin: 0 auto !important;
}

.tekarab-tool-content-area .wp-block-group,
.tekarab-tool-content-area .wp-block-columns,
.tekarab-tool-content-area .wp-block-column {
    max-width: 100%;
}

@media (max-width: 768px) {
    .tekarab-tool-shell {
        padding: 16px 16px 36px;
    }

    .tekarab-tool-content-area .tkb-inner {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .tekarab-tool-shell {
        padding: 14px 14px 30px;
    }
}