/*
 * Pages Redesign CSS — Portfolio, Team, Blog, Shop, Contact
 * @package Kroxia
 */

/* =========================================================
   SHARED
   ========================================================= */

.krx-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--kroxia-primary, #f97316);
    background: rgba(249,115,22,.1);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.krx-page-hero {
    padding: 80px 0 60px;
    text-align: center;
}

.krx-page-hero h1 {
    font-family: var(--kroxia-font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    color: var(--kroxia-text, #1e293b);
    line-height: 1.1;
    margin: 0 0 16px;
}

.krx-page-hero p {
    font-size: 1.05rem;
    color: var(--kroxia-text-muted, #64748b);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.krx-accent { color: var(--kroxia-primary, #f97316); }

.krx-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.krx-filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 600;
    border: 1.5px solid var(--kroxia-border-color, #e2e8f0);
    background: transparent;
    color: var(--kroxia-text-muted, #64748b);
    cursor: pointer;
    transition: .2s;
}

.krx-filter-btn:hover,
.krx-filter-btn.active {
    background: var(--kroxia-primary, #f97316);
    border-color: var(--kroxia-primary, #f97316);
    color: #fff;
}

/* =========================================================
   PORTFOLIO PAGE
   ========================================================= */

.krx-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.krx-port-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--kroxia-border-color, #e2e8f0);
    transition: .3s;
}

.krx-port-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.krx-port-card__img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #1e293b;
}

.krx-port-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
    opacity: .9;
}

.krx-port-card:hover .krx-port-card__img img { transform: scale(1.05); }

.krx-port-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b, #334155);
    font-size: 3rem;
}

.krx-port-card__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(249,115,22,.9);
    padding: 4px 10px;
    border-radius: 6px;
}

.krx-port-card__arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background .2s;
}

.krx-port-card__arrow:hover { background: var(--kroxia-primary, #f97316); }

.krx-port-card__body { padding: 20px; }

.krx-port-card__location {
    font-size: .75rem;
    font-weight: 600;
    color: var(--kroxia-primary, #f97316);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.krx-port-card__title {
    font-family: var(--kroxia-font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--kroxia-text, #1e293b);
    margin: 0 0 10px;
}

.krx-port-card__result {
    font-size: .82rem;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 6px;
}

.krx-port-card__result svg { flex-shrink: 0; }

/* =========================================================
   TEAM PAGE
   ========================================================= */

.krx-team-hero {
    padding: 80px 0 56px;
    text-align: center;
}

.krx-dept-section { margin-bottom: 56px; }

.krx-dept-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.krx-dept-line {
    width: 28px;
    height: 3px;
    background: var(--kroxia-primary, #f97316);
    border-radius: 2px;
    flex-shrink: 0;
}

.krx-dept-name {
    font-family: var(--kroxia-font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--kroxia-text, #1e293b);
    margin: 0;
}

.krx-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.krx-team-card {
    text-align: center;
}

.krx-team-card__photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--kroxia-bg-secondary, #f8fafc);
}

.krx-team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.krx-team-card__avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--kroxia-primary, #f97316), #ea580c);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--kroxia-font-heading);
}

.krx-team-card__name {
    font-family: var(--kroxia-font-heading);
    font-size: .95rem;
    font-weight: 800;
    color: var(--kroxia-text, #1e293b);
    margin: 0 0 4px;
}

.krx-team-card__role {
    font-size: .8rem;
    color: var(--kroxia-text-muted, #64748b);
    margin: 0 0 4px;
}

.krx-team-card__age {
    font-size: .78rem;
    font-weight: 600;
    color: var(--kroxia-primary, #f97316);
    margin: 0;
}

.krx-hiring-banner {
    background: var(--kroxia-primary, #f97316);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 80px;
}

.krx-hiring-banner h2 {
    font-family: var(--kroxia-font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    margin: 0 0 12px;
    color: #fff;
}

.krx-hiring-banner p {
    font-size: 1rem;
    color: rgba(255,255,255,.85);
    margin: 0 0 28px;
}

.krx-hiring-banner a {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: .2s;
}

.krx-hiring-banner a:hover {
    background: #fff;
    color: var(--kroxia-primary, #f97316);
}

/* =========================================================
   BLOG PAGE
   ========================================================= */

.krx-blog-hero {
    padding: 72px 0 40px;
    text-align: center;
}

.krx-blog-hero h1 {
    font-family: var(--kroxia-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--kroxia-text, #1e293b);
    line-height: 1.15;
    margin: 0 0 14px;
}

.krx-blog-hero p {
    font-size: 1rem;
    color: var(--kroxia-text-muted, #64748b);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.krx-blog-search {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--kroxia-border-color, #e2e8f0);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    max-width: 460px;
    margin: 0 auto 32px;
    transition: border-color .2s, box-shadow .2s;
}

.krx-blog-search:focus-within {
    border-color: var(--kroxia-primary, #f97316);
    box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}

.krx-blog-search svg {
    margin-left: 16px;
    color: var(--kroxia-text-muted, #64748b);
    flex-shrink: 0;
}

.krx-blog-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: .9rem;
    background: transparent;
    color: var(--kroxia-text, #1e293b);
}

.krx-blog-search input::placeholder { color: var(--kroxia-text-muted, #64748b); }

/* Category pills */
.krx-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
}

.krx-cat-pill {
    padding: 7px 18px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    border: 1.5px solid var(--kroxia-border-color, #e2e8f0);
    background: transparent;
    color: var(--kroxia-text-muted, #64748b);
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
    display: inline-block;
}

.krx-cat-pill:hover,
.krx-cat-pill.active {
    background: var(--kroxia-primary, #f97316);
    border-color: var(--kroxia-primary, #f97316);
    color: #fff;
}

/* Featured post */
.krx-featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--kroxia-border-color, #e2e8f0);
    margin-bottom: 48px;
    min-height: 340px;
}

.krx-featured-post__img {
    position: relative;
    min-height: 300px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.krx-featured-post__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.krx-featured-post__img-placeholder {
    color: rgba(255,255,255,.5);
}

.krx-featured-post__body {
    padding: 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.krx-featured-post__tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.krx-featured-tag {
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(249,115,22,.1);
    color: var(--kroxia-primary, #f97316);
}

.krx-featured-tag--alt {
    background: #f1f5f9;
    color: var(--kroxia-text-muted, #64748b);
}

.krx-featured-post__title {
    font-family: var(--kroxia-font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--kroxia-text, #1e293b);
    margin: 0 0 12px;
    line-height: 1.3;
}

.krx-featured-post__title a {
    color: inherit;
    text-decoration: none;
}

.krx-featured-post__title a:hover { color: var(--kroxia-primary, #f97316); }

.krx-featured-post__excerpt {
    font-size: .9rem;
    color: var(--kroxia-text-muted, #64748b);
    line-height: 1.7;
    margin: 0 0 20px;
}

.krx-featured-post__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .8rem;
    color: var(--kroxia-text-muted, #64748b);
}

.krx-featured-post__meta img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.krx-featured-post__meta-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--kroxia-primary, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
    flex-shrink: 0;
}

.krx-featured-post__read {
    margin-left: auto;
    font-size: .85rem;
    font-weight: 700;
    color: var(--kroxia-primary, #f97316);
    text-decoration: none;
}

.krx-featured-post__read:hover { text-decoration: underline; }

/* Blog grid */
.krx-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.krx-blog-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--kroxia-border-color, #e2e8f0);
    background: #fff;
    transition: .3s;
    display: flex;
    flex-direction: column;
}

.krx-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,.08);
}

.krx-blog-card__img {
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.krx-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform .5s;
}

.krx-blog-card:hover .krx-blog-card__img img { transform: scale(1.05); }

.krx-blog-card__img-icon {
    color: rgba(255,255,255,.7);
    position: relative;
    z-index: 1;
}

.krx-blog-card__cat {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: .7rem;
    font-weight: 700;
    background: var(--kroxia-primary, #f97316);
    color: #fff;
    padding: 3px 10px;
    border-radius: 50px;
    z-index: 2;
}

.krx-blog-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.krx-blog-card__title {
    font-family: var(--kroxia-font-heading);
    font-size: .95rem;
    font-weight: 800;
    color: var(--kroxia-text, #1e293b);
    margin: 0 0 12px;
    line-height: 1.4;
    flex: 1;
}

.krx-blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.krx-blog-card__title a:hover { color: var(--kroxia-primary, #f97316); }

.krx-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .75rem;
    color: var(--kroxia-text-muted, #64748b);
    margin-top: auto;
}

.krx-blog-card__meta-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--kroxia-primary, #f97316);
    color: #fff;
    font-weight: 700;
    font-size: .7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.krx-blog-card__meta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.krx-blog-card__meta-sep { color: var(--kroxia-border-color, #e2e8f0); }

/* Newsletter */
.krx-newsletter {
    text-align: center;
    padding: 56px 20px;
    border-top: 1px solid var(--kroxia-border-color, #e2e8f0);
}

.krx-newsletter h3 {
    font-family: var(--kroxia-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--kroxia-text, #1e293b);
    margin: 0 0 8px;
}

.krx-newsletter p {
    font-size: .875rem;
    color: var(--kroxia-text-muted, #64748b);
    margin: 0 0 24px;
}

.krx-newsletter-form {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto 12px;
    border: 1.5px solid var(--kroxia-border-color, #e2e8f0);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.krx-newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: .875rem;
    background: transparent;
}

.krx-newsletter-form button {
    padding: 12px 24px;
    background: var(--kroxia-primary, #f97316);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: .875rem;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.krx-newsletter-form button:hover { background: #ea580c; }

.krx-newsletter-note {
    font-size: .78rem;
    color: var(--kroxia-text-muted, #64748b);
}

/* Gradient colors for blog card backgrounds */
.krx-blog-grad-1 { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.krx-blog-grad-2 { background: linear-gradient(135deg, #f97316, #ef4444); }
.krx-blog-grad-3 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.krx-blog-grad-4 { background: linear-gradient(135deg, #10b981, #3b82f6); }
.krx-blog-grad-5 { background: linear-gradient(135deg, #f59e0b, #f97316); }
.krx-blog-grad-6 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }

/* =========================================================
   SHOP PAGE
   ========================================================= */

.krx-shop-hero {
    padding: 56px 0 40px;
    text-align: left;
}

.krx-shop-hero h1 {
    font-family: var(--kroxia-font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--kroxia-text, #1e293b);
    margin: 0 0 12px;
}

.krx-shop-hero p {
    font-size: .95rem;
    color: var(--kroxia-text-muted, #64748b);
    margin: 0;
    max-width: 580px;
}

.krx-shop-trust-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--kroxia-border-color, #e2e8f0);
    margin-bottom: 28px;
    font-size: .82rem;
    color: var(--kroxia-text-muted, #64748b);
}

.krx-shop-trust-bar strong { color: var(--kroxia-text, #1e293b); }

.krx-shop-trust-bar-right {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f59e0b;
    font-weight: 600;
}

.krx-shop-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--kroxia-border-color, #e2e8f0);
}

.krx-shop-tab {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    border: 1.5px solid var(--kroxia-border-color, #e2e8f0);
    background: transparent;
    color: var(--kroxia-text-muted, #64748b);
    cursor: pointer;
    transition: .2s;
}

.krx-shop-tab:hover,
.krx-shop-tab.active {
    background: var(--kroxia-primary, #f97316);
    border-color: var(--kroxia-primary, #f97316);
    color: #fff;
}

.krx-shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.krx-pkg-card {
    border-radius: 16px;
    border: 1px solid var(--kroxia-border-color, #e2e8f0);
    overflow: hidden;
    background: #fff;
    transition: .3s;
    display: flex;
    flex-direction: column;
}

.krx-pkg-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    transform: translateY(-4px);
}

.krx-pkg-card--popular {
    border-color: var(--kroxia-primary, #f97316);
}

.krx-pkg-ribbon {
    padding: 10px 20px;
    font-size: .78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--kroxia-bg-secondary, #f8fafc);
    border-bottom: 1px solid var(--kroxia-border-color, #e2e8f0);
    color: var(--kroxia-text-muted, #64748b);
}

.krx-pkg-card--popular .krx-pkg-ribbon {
    background: linear-gradient(135deg, var(--kroxia-primary, #f97316), #ea580c);
    color: #fff;
    border-bottom-color: transparent;
}

.krx-pkg-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.krx-pkg-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

.krx-pkg-price {
    font-family: var(--kroxia-font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--kroxia-text, #1e293b);
}

.krx-pkg-card--popular .krx-pkg-price {
    color: var(--kroxia-primary, #f97316);
}

.krx-pkg-period {
    font-size: .8rem;
    color: var(--kroxia-text-muted, #64748b);
}

.krx-pkg-name {
    font-family: var(--kroxia-font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--kroxia-text, #1e293b);
    margin: 0 0 8px;
}

.krx-pkg-desc {
    font-size: .85rem;
    color: var(--kroxia-text-muted, #64748b);
    margin: 0 0 16px;
    line-height: 1.6;
}

.krx-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.krx-pkg-features li {
    font-size: .84rem;
    color: var(--kroxia-text, #1e293b);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid var(--kroxia-bg-secondary, #f8fafc);
}

.krx-pkg-features li:last-child { border-bottom: none; }

.krx-pkg-check {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.krx-pkg-card--popular .krx-pkg-check {
    color: var(--kroxia-primary, #f97316);
}

.krx-pkg-rating {
    font-size: .8rem;
    color: var(--kroxia-text-muted, #64748b);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.krx-pkg-rating span { color: #f59e0b; }

.krx-pkg-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
    border: 1.5px solid var(--kroxia-border-color, #e2e8f0);
    background: transparent;
    color: var(--kroxia-text, #1e293b);
    text-decoration: none;
    text-align: center;
}

.krx-pkg-card--popular .krx-pkg-cta {
    background: linear-gradient(135deg, var(--kroxia-primary, #f97316), #ea580c);
    border-color: transparent;
    color: #fff;
}

.krx-pkg-cta:hover {
    background: var(--kroxia-primary, #f97316);
    border-color: var(--kroxia-primary, #f97316);
    color: #fff;
}

.krx-pkg-card--popular .krx-pkg-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249,115,22,.4);
}

/* Shop hidden tab panels */
.krx-tab-panel { display: none; }
.krx-tab-panel.active { display: block; }

/* Shop trust row */
.krx-shop-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid var(--kroxia-border-color, #e2e8f0);
}

.krx-shop-trust-item {
    text-align: center;
}

.krx-shop-trust-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.krx-shop-trust-title {
    font-family: var(--kroxia-font-heading);
    font-size: .95rem;
    font-weight: 700;
    color: var(--kroxia-text, #1e293b);
    margin: 0 0 6px;
}

.krx-shop-trust-desc {
    font-size: .8rem;
    color: var(--kroxia-text-muted, #64748b);
    margin: 0;
    line-height: 1.5;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.krx-contact-hero {
    padding: 72px 0 56px;
    text-align: center;
}

.krx-contact-hero h1 {
    font-family: var(--kroxia-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--kroxia-text, #1e293b);
    margin: 0 0 14px;
    line-height: 1.15;
}

.krx-contact-hero h1 em {
    font-style: normal;
    color: var(--kroxia-primary, #f97316);
}

.krx-contact-hero p {
    font-size: 1rem;
    color: var(--kroxia-text-muted, #64748b);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.krx-contact-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.krx-stat-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--kroxia-border-color, #e2e8f0);
    font-size: .82rem;
    font-weight: 600;
    color: var(--kroxia-text, #1e293b);
    background: #fff;
}

.krx-stat-sep {
    color: var(--kroxia-border-color, #e2e8f0);
    font-size: 1.2rem;
}

/* Contact method cards */
.krx-contact-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.krx-method-card {
    border-radius: 16px;
    border: 1px solid var(--kroxia-border-color, #e2e8f0);
    padding: 24px 20px;
    background: #fff;
    text-align: center;
    transition: .3s;
}

.krx-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,.08);
}

.krx-method-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #fff;
}

.krx-method-icon--email { background: #3b82f6; }
.krx-method-icon--whatsapp { background: #25D366; }
.krx-method-icon--video { background: #6366f1; }
.krx-method-icon--meeting { background: #8b5cf6; }

.krx-method-title {
    font-family: var(--kroxia-font-heading);
    font-size: .9rem;
    font-weight: 700;
    color: var(--kroxia-text, #1e293b);
    margin: 0 0 4px;
}

.krx-method-value {
    font-size: .8rem;
    color: var(--kroxia-text-muted, #64748b);
    margin: 0 0 14px;
    line-height: 1.5;
}

.krx-method-link {
    font-size: .82rem;
    font-weight: 700;
    color: var(--kroxia-primary, #f97316);
    text-decoration: none;
}

.krx-method-link:hover { text-decoration: underline; }

/* Two column reach+form */
.krx-contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 60px;
}

.krx-reach-us h2 {
    font-family: var(--kroxia-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--kroxia-text, #1e293b);
    margin: 8px 0 24px;
}

.krx-reach-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.krx-reach-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(249,115,22,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kroxia-primary, #f97316);
    flex-shrink: 0;
}

.krx-reach-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--kroxia-text-muted, #64748b);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 2px;
}

.krx-reach-value {
    font-size: .88rem;
    font-weight: 600;
    color: var(--kroxia-text, #1e293b);
    text-decoration: none;
    display: block;
}

.krx-reach-value:hover { color: var(--kroxia-primary, #f97316); }

.krx-after-contact {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--kroxia-border-color, #e2e8f0);
}

.krx-after-contact h4 {
    font-family: var(--kroxia-font-heading);
    font-size: .9rem;
    font-weight: 700;
    color: var(--kroxia-text, #1e293b);
    margin: 0 0 16px;
}

.krx-after-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: .83rem;
    color: var(--kroxia-text-muted, #64748b);
}

.krx-after-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--kroxia-primary, #f97316);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.krx-social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.krx-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--kroxia-border-color, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kroxia-text-muted, #64748b);
    text-decoration: none;
    transition: .2s;
}

.krx-social-btn:hover {
    background: var(--kroxia-primary, #f97316);
    border-color: var(--kroxia-primary, #f97316);
    color: #fff;
}

/* Contact form card */
.krx-contact-form-card {
    background: #fff;
    border: 1px solid var(--kroxia-border-color, #e2e8f0);
    border-radius: 20px;
    padding: 36px;
}

.krx-contact-form-card h3 {
    font-family: var(--kroxia-font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--kroxia-text, #1e293b);
    margin: 0 0 24px;
}

.krx-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.krx-form-group { margin-bottom: 0; }

.krx-form-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--kroxia-text, #1e293b);
    display: block;
    margin-bottom: 6px;
}

.krx-form-input,
.krx-form-select,
.krx-form-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--kroxia-border-color, #e2e8f0);
    border-radius: 10px;
    font-size: .875rem;
    color: var(--kroxia-text, #1e293b);
    background: var(--kroxia-bg, #fff);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}

.krx-form-input:focus,
.krx-form-select:focus,
.krx-form-textarea:focus {
    border-color: var(--kroxia-primary, #f97316);
    box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}

.krx-form-textarea { resize: vertical; min-height: 110px; }

.krx-form-full { margin-bottom: 14px; }

.krx-form-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--kroxia-primary, #f97316), #ea580c);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.krx-form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249,115,22,.35);
}

.krx-form-privacy {
    font-size: .75rem;
    color: var(--kroxia-text-muted, #64748b);
    margin-top: 12px;
    text-align: center;
}

.krx-form-privacy a { color: var(--kroxia-primary, #f97316); }

/* Offices */
.krx-offices-section {
    padding: 56px 0;
    background: var(--kroxia-bg-secondary, #f8fafc);
}

.krx-offices-header {
    text-align: center;
    margin-bottom: 36px;
}

.krx-offices-header h2 {
    font-family: var(--kroxia-font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--kroxia-text, #1e293b);
    margin: 8px 0 0;
}

.krx-offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.krx-office-card {
    background: #fff;
    border: 1px solid var(--kroxia-border-color, #e2e8f0);
    border-radius: 16px;
    padding: 28px;
}

.krx-office-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.krx-office-flag {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--kroxia-bg-secondary, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.krx-office-country {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--kroxia-primary, #f97316);
    margin-bottom: 2px;
}

.krx-office-city {
    font-family: var(--kroxia-font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--kroxia-text, #1e293b);
    margin: 0;
}

.krx-office-detail {
    font-size: .84rem;
    color: var(--kroxia-text-muted, #64748b);
    margin: 0 0 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.krx-office-detail svg { flex-shrink: 0; margin-top: 2px; }

.krx-office-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 9px 20px;
    border: 1.5px solid var(--kroxia-border-color, #e2e8f0);
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--kroxia-text, #1e293b);
    text-decoration: none;
    transition: .2s;
}

.krx-office-btn:hover {
    border-color: var(--kroxia-primary, #f97316);
    color: var(--kroxia-primary, #f97316);
}

/* FAQ */
.krx-faq-section {
    padding: 64px 0;
}

.krx-faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.krx-faq-header h2 {
    font-family: var(--kroxia-font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--kroxia-text, #1e293b);
    margin: 8px 0 0;
}

.krx-faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.krx-faq-item {
    border: 1px solid var(--kroxia-border-color, #e2e8f0);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.krx-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--kroxia-font-heading);
    font-size: .92rem;
    font-weight: 700;
    color: var(--kroxia-text, #1e293b);
    gap: 12px;
    transition: color .2s;
}

.krx-faq-question:hover { color: var(--kroxia-primary, #f97316); }

.krx-faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--kroxia-border-color, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .2s;
    font-size: 1rem;
    line-height: 1;
    color: var(--kroxia-text-muted, #64748b);
}

.krx-faq-item.open .krx-faq-icon {
    background: var(--kroxia-primary, #f97316);
    border-color: var(--kroxia-primary, #f97316);
    color: #fff;
    transform: rotate(45deg);
}

.krx-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.krx-faq-item.open .krx-faq-answer { max-height: 400px; }

.krx-faq-answer-inner {
    padding: 0 20px 18px;
    font-size: .875rem;
    color: var(--kroxia-text-muted, #64748b);
    line-height: 1.7;
}

/* Contact CTA */
.krx-contact-cta {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 72px 20px;
    text-align: center;
}

.krx-contact-cta h2 {
    font-family: var(--kroxia-font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px;
}

.krx-contact-cta p {
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    margin: 0 0 28px;
}

.krx-contact-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--kroxia-primary, #f97316);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: .2s;
}

.krx-contact-cta a:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,.4);
}

/* Trust badges row */
.krx-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 48px 0;
    border-top: 1px solid var(--kroxia-border-color, #e2e8f0);
}

.krx-trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
}

.krx-trust-badge-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(249,115,22,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.krx-trust-badge-title {
    font-family: var(--kroxia-font-heading);
    font-size: .88rem;
    font-weight: 700;
    color: var(--kroxia-text, #1e293b);
    margin: 0 0 2px;
}

.krx-trust-badge-desc {
    font-size: .78rem;
    color: var(--kroxia-text-muted, #64748b);
    margin: 0;
    line-height: 1.4;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
    .krx-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .krx-team-grid { grid-template-columns: repeat(3, 1fr); }
    .krx-contact-methods { grid-template-columns: repeat(2, 1fr); }
    .krx-trust-badges { grid-template-columns: repeat(2, 1fr); }
    .krx-shop-trust { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .krx-page-hero { padding: 56px 0 40px; }
    .krx-portfolio-grid,
    .krx-blog-grid,
    .krx-shop-grid { grid-template-columns: 1fr; }
    .krx-team-grid { grid-template-columns: repeat(2, 1fr); }
    .krx-featured-post { grid-template-columns: 1fr; }
    .krx-featured-post__img { min-height: 220px; }
    .krx-contact-two-col { grid-template-columns: 1fr; }
    .krx-offices-grid { grid-template-columns: 1fr; }
    .krx-trust-badges { grid-template-columns: 1fr 1fr; }
    .krx-shop-trust { grid-template-columns: repeat(2, 1fr); }
    .krx-form-row { grid-template-columns: 1fr; }
    .krx-contact-form-card { padding: 24px; }
}

@media (max-width: 480px) {
    .krx-team-grid { grid-template-columns: repeat(2, 1fr); }
    .krx-contact-methods { grid-template-columns: 1fr 1fr; }
    .krx-trust-badges { grid-template-columns: 1fr; }
}
