/* =========================================================
   INNER PAGES — SHARED CSS
   Covers: all service pages, about, resources pages
   Components: page-hero, service-overview-card, platform-card,
               deliverable-card, seo-pillar, video-type-card,
               process-step-vertical, faq, best-for, content-list,
               feature-item--card
   ========================================================= */

/* =========================================================
   1. PAGE HERO — enhanced
   ========================================================= */
.page-hero {
    padding: calc(var(--nav-height) + var(--space-9)) 0 var(--space-9);
    background: var(--color-tint-light);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 101, 61, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 35%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 101, 61, 0.04) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: var(--text-h1);
    margin-bottom: var(--space-4);
    max-width: 800px;
    letter-spacing: -0.02em;
}

.page-hero>.container>p,
.page-hero p {
    font-size: var(--text-body-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
    max-width: 640px;
}

.page-hero__ctas {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-5);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--color-primary);
    font-weight: 500;
    transition: opacity var(--transition-fast);
}

.breadcrumb a:hover {
    opacity: 0.75;
}

.breadcrumb .sep {
    color: var(--color-border);
    font-size: 14px;
}

/* =========================================================
   2. SERVICE OVERVIEW CARDS (Marketing index)
   ========================================================= */
.service-overview-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-8);
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    margin-bottom: var(--space-6);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-slow);
    border-radius: 0 0 0 var(--radius-lg);
}

.service-overview-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.service-overview-card:hover::before {
    transform: scaleY(1);
}

.service-overview-card--alt {
    background: var(--color-tint-light);
}

.service-overview-card__content .tag {
    margin-bottom: var(--space-4);
    display: inline-flex;
}

.service-overview-card__content h3 {
    font-size: var(--text-h3);
    margin-bottom: var(--space-4);
    color: var(--color-text-primary);
}

.service-overview-card__content>p {
    font-size: var(--text-body);
    color: var(--color-text-secondary);
    max-width: none;
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.service-overview-card__icon-wrap {
    width: 120px;
    height: 120px;

    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition-base);
}

.service-overview-card--alt .service-overview-card__icon-wrap {
    background-color:#00653d;
}

.service-overview-card:hover .service-overview-card__icon-wrap {
    background: var(--color-tint-mid);
}

.service-overview-card__icon-wrap svg {
    width: 52px;
    height: 52px;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    fill: none;
}

/* Best For block */
.best-for {
    background: var(--color-off-white);
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-5);
    margin: var(--space-5) 0;
    border-left: 3px solid var(--color-primary);
}

.service-overview-card--alt .best-for {
    background: var(--color-white);
}

.best-for__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.best-for ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: 0;
    margin: 0;
    list-style: none;
}

.best-for ul li {
    font-size: 13px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    line-height: 1.5;
}

.best-for ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

/* =========================================================
   3. PLATFORM CARDS (Paid Advertising)
   ========================================================= */
/* =========================================================
   3. PLATFORM CARDS
   ========================================================= */
.platform-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-7);
}

.platform-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-7);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.platform-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: var(--color-tint-mid);
}

.platform-card:hover::before {
    transform: scaleX(1);
}

.platform-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

/* Icon matches index.php service-card__icon style */
.platform-card__icon {
    width: 64px;
    height: 64px;

    color: var(--color-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition-base), transform var(--transition-base);
}

.platform-card:hover .platform-card__icon {
    transform: scale(1.05);
}

.platform-card__icon svg,
.platform-card__icon i {
    width: 28px !important;
    height: 28px !important;
    stroke: #ffffff !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    fill: none !important;
}

.platform-card h3 {
    font-size: var(--text-h4);
    color: var(--color-text-primary);
    font-weight: 700;
}

.platform-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: none;
    margin-top: var(--space-3);
}

/* =========================================================
   4. DELIVERABLE CARDS
   ========================================================= */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-7);
}

.deliverable-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-7);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.deliverable-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.deliverable-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
    border-color: var(--color-tint-mid);
}

.deliverable-card:hover::before {
    transform: scaleX(1);
}

/* Icon matches index.php service-card__icon style */
.deliverable-card__icon {
    width: 64px;
    height: 64px;

    color: var(--color-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    transition: transform var(--transition-base);
}

.deliverable-card:hover .deliverable-card__icon {
    transform: scale(1.05);
}

.deliverable-card__icon svg,
.deliverable-card__icon i {
    width: 28px !important;
    height: 28px !important;
    stroke: #ffffff !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    fill: none !important;
}

.deliverable-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.deliverable-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.deliverable-card ul li {
    font-size: 14px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
}

.deliverable-card ul li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: var(--color-tint-mid);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a6b3c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 1px;
    flex-shrink: 0;
}

/* =========================================================
   5. PROCESS STEPS VERTICAL
   ========================================================= */
.process-steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: var(--space-7);
    position: relative;
}

.process-steps-vertical::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-tint-mid);
    z-index: 0;
}

.process-step-vertical {
    display: flex;
    gap: var(--space-6);
    padding-bottom: var(--space-7);
    position: relative;
    z-index: 1;
}

.process-step-vertical:last-child {
    padding-bottom: 0;
}

.process-step-vertical__num {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--color-white), 0 0 0 6px var(--color-tint-mid);
}

.process-step-vertical__content {
    padding-top: var(--space-3);
    flex: 1;
}

.process-step-vertical__content h4 {
    font-size: var(--text-h4);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.process-step-vertical__content p {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: none;
}

/* =========================================================
   6. SEO PILLARS / NUMBERED CONTENT SECTIONS
   ========================================================= */
.seo-pillars {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.seo-pillar {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--space-6);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.seo-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary) 0%, #00875a 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-pillar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 101, 61, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.seo-pillar:hover {
    box-shadow: 0 24px 48px rgba(0, 101, 61, 0.12), 0 8px 16px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px) translateX(4px);
    border-color: rgba(0, 101, 61, 0.2);
}

.seo-pillar:hover::before {
    transform: scaleY(1);
}

.seo-pillar:hover::after {
    opacity: 1;
}

.seo-pillar__num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00875a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.35s ease, filter 0.35s ease;
    opacity: 0.85;
}

.seo-pillar:hover .seo-pillar__num {
    transform: scale(1.08);
    opacity: 1;
}

.seo-pillar__content h3 {
    font-size: 1.35rem;
    margin-bottom: var(--space-4);
    color: var(--color-text-primary);
    transition: color 0.3s ease;
    position: relative;
    padding-left: var(--space-5);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.seo-pillar__content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, var(--color-primary) 0%, #00875a 100%);
    border-radius: 2px;
    opacity: 0.6;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.seo-pillar:hover .seo-pillar__content h3 {
    color: var(--color-primary);
}

.seo-pillar:hover .seo-pillar__content h3::before {
    opacity: 1;
    height: 32px;
}

.seo-pillar__content p {
    font-size: 15px;
    max-width: none;
    line-height: 1.85;
    color: var(--color-text-secondary);
}

/* Content list (used inside seo pillars) */
.seo-pillar__checklist {
    list-style: none;
    padding: 0;
    margin: var(--space-5) 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.seo-pillar__checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--color-tint-light) 0%, rgba(0, 101, 61, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.seo-pillar__checklist-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 101, 61, 0.08) 0%, rgba(0, 101, 61, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.seo-pillar__checklist-item:hover {
    border-color: rgba(0, 101, 61, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 101, 61, 0.1);
}

.seo-pillar__checklist-item:hover::before {
    opacity: 1;
}

.seo-pillar__checklist-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00875a 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 101, 61, 0.2);
}

.seo-pillar__checklist-item:hover .seo-pillar__checklist-icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 4px 12px rgba(0, 101, 61, 0.3);
}

.seo-pillar__checklist-icon svg {
    width: 14px !important;
    height: 14px !important;
    stroke: white !important;
    stroke-width: 2.5 !important;
    fill: none !important;
}

.seo-pillar__checklist-text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.65;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Fallback for old class names */
.content-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.content-list li {
    font-size: 14px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    line-height: 1.6;
    padding: var(--space-3) var(--space-4);
    background: var(--color-tint-light);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
    transition: all 0.3s ease;
}

.content-list li:hover {
    background: var(--color-tint-mid);
    transform: translateX(4px);
}

.content-list li::before {
    display: none;
}

/* Old content-list styling for backward compatibility */
.seo-pillar .content-list {
    list-style: none;
    padding: 0;
    margin: var(--space-5) 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-3);
}

.seo-pillar .content-list li {
    font-size: 14px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    line-height: 1.6;
    padding: var(--space-4);
    background: var(--color-tint-light);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.seo-pillar .content-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-tint-mid) 0%, var(--color-tint-light) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.seo-pillar .content-list li:hover {
    border-color: var(--color-tint-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 101, 61, 0.08);
    background: transparent;
}

.seo-pillar .content-list li:hover::before {
    opacity: 1;
}

/* =========================================================
   7. VIDEO TYPE CARDS
   ========================================================= */
.video-type-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-7);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.video-type-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.video-type-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: var(--color-tint-mid);
}

.video-type-card:hover::after {
    transform: scaleX(1);
}

/* .video-type-card__icon {
    width: 52px;
    height: 52px;
   border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    transition: background var(--transition-base);
} */

.video-type-card:hover .video-type-card__icon {
    background: var(--color-tint-mid);
}

.video-type-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    fill: none;
}

.video-type-card h3 {
    font-size: var(--text-h4);
    margin-bottom: var(--space-3);
    color: var(--color-text-primary);
}

.video-type-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    max-width: none;
    line-height: 1.7;
}

/* =========================================================
   8. FAQ ACCORDION
   ========================================================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-card);
}

.faq-item__q {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    transition: background var(--transition-fast);
    user-select: none;
}

.faq-item__q::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300653D' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item__q:hover {
    background: var(--color-tint-light);
}

.faq-item.open .faq-item__q {
    background: var(--color-tint-light);
    color: var(--color-primary);
}

.faq-item.open .faq-item__q::after {
    transform: rotate(180deg);
}

.faq-item__a {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    padding: 0 var(--space-6);
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms ease, padding 400ms ease;
}

.faq-item.open .faq-item__a {
    max-height: 400px;
    padding: var(--space-4) var(--space-6) var(--space-6);
}

/* =========================================================
   9. FEATURE ITEM — CARD VARIANT
   ========================================================= */
.feature-item--card {
    display: flex;
    gap: var(--space-5);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all var(--transition-base);
}

.feature-item--card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
    border-color: var(--color-tint-mid);
}

.feature-item--card .feature-item__icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item--card h4 {
    font-size: 15px;
    margin-bottom: var(--space-2);
}

.feature-item--card p {
    font-size: 13px;
    max-width: none;
    line-height: 1.65;
}

/* =========================================================
   10. TECH STACK GRID
   ========================================================= */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.tech-stack-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    transition: all var(--transition-base);
}

.tech-stack-item:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-tint-mid);
    transform: translateY(-2px);
}

.tech-stack-item__icon {
    width: 40px;
    height: 40px;
    /* background: var(--color-tint-light); */
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition-base);
}

.tech-stack-item:hover .tech-stack-item__icon {
    background: var(--color-tint-mid);
}

.tech-stack-item__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    fill: none;
}

.tech-stack-item__name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 2px;
}

.tech-stack-item__desc {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* =========================================================
   11. SERVICE FEATURE BLOCK (AI services)
   ========================================================= */
.service-feature-block {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-5) var(--space-6);
    margin: var(--space-5) 0;
}

.service-feature-block__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

/* =========================================================
   12. HIGHLIGHT CALLOUT (AI services — key insight block)
   ========================================================= */
.highlight-callout {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: var(--space-5) var(--space-6);
    margin-top: var(--space-5);
}

.highlight-callout h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.highlight-callout p {
    font-size: 14px;
    color: var(--color-text-secondary);
    max-width: none;
    line-height: 1.7;
}

/* =========================================================
   13. USE CASE CARDS (AI in Action)
   ========================================================= */
.use-case-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-7);
    transition: all var(--transition-base);
}

.use-case-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: var(--color-tint-mid);
}

.use-case-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.use-case-card__icon {
    width: 48px;
    height: 48px;
    background: var(--color-tint-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition-base);
}

.use-case-card:hover .use-case-card__icon {
    background: var(--color-tint-mid);
}

.use-case-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    fill: none;
}

.use-case-card h3 {
    font-size: var(--text-h4);
    color: var(--color-text-primary);
}

.use-case-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    max-width: none;
}

/* =========================================================
   14. RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .service-overview-card {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .service-overview-card__icon-wrap {
        width: 80px;
        height: 80px;
        order: -1;
    }

    .service-overview-card__icon-wrap svg {
        width: 36px;
        height: 36px;
    }

    .platform-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-pillar {
        grid-template-columns: 56px 1fr;
    }

    .seo-pillar__num {
        font-size: 1.75rem;
    }

    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero__ctas {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .service-overview-card {
        padding: var(--space-6);
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .seo-pillar {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        border-radius: 16px;
    }

    .seo-pillar:hover {
        transform: translateY(-2px);
    }

    .seo-pillar__num {
        font-size: 2.5rem;
        margin-bottom: var(--space-3);
    }

    .seo-pillar__content h3 {
        font-size: 1.2rem;
        padding-left: var(--space-4);
    }

    .seo-pillar__content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .seo-pillar__checklist {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .seo-pillar__checklist-item {
        padding: 14px 16px;
    }

    .process-steps-vertical::before {
        left: 23px;
    }

    .process-step-vertical__num {
        width: 48px;
        height: 48px;
        font-size: 15px;
    }

    .faq-item__q {
        font-size: 14px;
        padding: var(--space-4) var(--space-5);
    }

    .faq-item.open .faq-item__a {
        padding: var(--space-3) var(--space-5) var(--space-5);
    }

    .tech-stack-grid {
        grid-template-columns: 1fr;
    }

    .tech-stack-item {
        padding: var(--space-4);
    }

    /* Platform cards: 1-col at mobile */
    .platform-cards {
        grid-template-columns: 1fr;
    }

    /* Page hero split: stack on mobile */
    .page-hero__grid {
        grid-template-columns: 1fr;
        padding: 0;
        min-height: auto;
        gap: var(--space-5);
    }

    .page-hero__right {
        justify-content: center;
    }

    /* Hero CTA row */
    .page-hero__cta-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    /* Vision cards (about page) */
    .vision-card {
        padding: var(--space-6) var(--space-5);
        min-height: auto;
    }

    /* Use-case cards */
    .use-case-card {
        padding: var(--space-6);
    }
}

@media (max-width: 480px) {
    .page-hero h1,
    .page-hero--split h1 {
        font-size: 1.55rem;
    }

    .page-hero p,
    .page-hero__desc {
        font-size: 1rem;
    }

    .page-hero {
        padding: calc(var(--nav-height) + var(--space-7)) 0 var(--space-6);
    }

    .page-hero__ctas .btn {
        width: 100%;
        justify-content: center;
    }

    /* Hide the right visual panel on very small phones */
    .page-hero__right {
        display: none;
    }

    .service-overview-card {
        padding: var(--space-5);
    }

    .vision-card {
        padding: var(--space-5) var(--space-4);
    }

    .faq-item__q {
        font-size: 13px;
        padding: var(--space-3) var(--space-4);
    }

    .deliverable-card,
    .platform-card {
        padding: var(--space-5);
    }
}

/* =========================================================
   HERO REDESIGN — SPLIT LAYOUT (Light Theme)
   Applies to all inner-page heroes
   ========================================================= */

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatIconAlt {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

@keyframes heroHighlightIn {
    to {
        background-size: 100% 100%;
    }
}

/* Split hero wrapper */
.page-hero--split {
    padding: calc(var(--nav-height) + var(--space-8)) 0 var(--space-8);
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative bg dots */
.page-hero--split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0, 101, 61, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.page-hero--split .container {
    position: relative;
    z-index: 1;
}

/* 2-column grid */
.page-hero__grid {
    max-width: var(--max-width);
    padding: 0 var(--space-8);
    display: grid;
    grid-template-columns: 55% 45%;
    gap: var(--space-8);
    align-items: center;
    min-height: 460px;
}

/* LEFT COLUMN */
.page-hero__left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.page-hero__left .breadcrumb {
    animation: fadeUp 0.4s ease both;
    animation-delay: 0s;
}

.page-hero__left .section-eyebrow {
    animation: fadeUp 0.4s ease both;
    animation-delay: 0.08s;
}

.page-hero--split h1 {
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
    max-width: 640px;
    line-height: 1.2;
    animation: fadeUp 0.4s ease both;
    animation-delay: 0.16s;
}

/* Animated highlight on key H1 word */
.hero-highlight {
    background: linear-gradient(transparent 62%, rgba(0, 101, 61, 0.18) 38%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    animation: heroHighlightIn 0.7s ease forwards;
    animation-delay: 0.6s;
    padding-bottom: 2px;
}

.page-hero--split>.container>.page-hero__grid>.page-hero__left>p,
.page-hero__desc {
    font-size: var(--text-body-lg);
    color: var(--color-text-secondary);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: var(--space-5);
    animation: fadeUp 0.4s ease both;
    animation-delay: 0.24s;
}

/* Trust badges row */
.page-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    animation: fadeUp 0.4s ease both;
    animation-delay: 0.32s;
}

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-tint-light);
    border: 1px solid var(--color-tint-mid);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    white-space: nowrap;
}

.page-hero__badge::before {
    content: '✦';
    font-size: 9px;
    opacity: 0.7;
}

/* CTA row */
.page-hero__cta-row {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    animation: fadeUp 0.4s ease both;
    animation-delay: 0.4s;
}

/* RIGHT COLUMN */
.page-hero__right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp 0.5s ease both;
    animation-delay: 0.28s;
}

/* =========================================================
   ICON COMPOSITIONS — CSS-only, per-page
   ========================================================= */
.hero-icon-comp {
    position: relative;
    width: 360px;
    height: 360px;
    flex-shrink: 0;
}

/* Individual chip */
.hero-icon-chip {
    position: absolute;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
    white-space: nowrap;
}

.hero-icon-chip svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

/* Chip variants */
.hero-icon-chip--lg {
    border-radius: 24px;
    padding: 20px 24px;
    font-size: 14px;
    box-shadow: 0 12px 40px rgba(0, 101, 61, 0.12);
    border-color: var(--color-tint-mid);
    background: var(--color-tint-light);
}

.hero-icon-chip--sq {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    padding: 0;
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
}

.hero-icon-chip--sq svg {
    width: 28px;
    height: 28px;
}

.hero-icon-chip--accent {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.hero-icon-chip--accent svg {
    stroke: #fff;
}

/* Central orb */
.hero-icon-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-tint-light) 0%, transparent 70%);
}

/* Float animations applied per chip */
.float-1 {
    animation: floatIcon 3.5s ease-in-out infinite;
}

.float-2 {
    animation: floatIconAlt 4s ease-in-out infinite 0.5s;
}

.float-3 {
    animation: floatIcon 3.8s ease-in-out infinite 1s;
}

.float-4 {
    animation: floatIconAlt 4.2s ease-in-out infinite 0.2s;
}

.float-5 {
    animation: floatIcon 3.2s ease-in-out infinite 0.8s;
}

/* =========================================================
   ABOUT PAGE — STAT CARD GRID (right panel)
   ========================================================= */
.hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    width: 340px;
}

.hero-stat-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 0.5s ease both;
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 101, 61, 0.1);
}

.hero-stat-card:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-stat-card:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-stat-card:nth-child(3) {
    animation-delay: 0.5s;
}

.hero-stat-card:nth-child(4) {
    animation-delay: 0.6s;
}

.hero-stat-card__icon {
    width: 36px;
    height: 36px;
    background: var(--color-tint-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
}

.hero-stat-card__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    fill: none;
}

.hero-stat-card__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-card__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* =========================================================
   CONTACT PAGE — HERO CONTACT CARD (right panel)
   ========================================================= */
.hero-contact-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
    width: 320px;
    animation: fadeUp 0.5s ease both;
    animation-delay: 0.3s;
}

.hero-contact-card__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
}

.hero-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-3) 0;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

a.hero-contact-item:hover .hero-contact-item__value {
    color: var(--color-primary);
}

.hero-contact-item__icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #00653D 0%, #009955 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 101, 61, 0.25);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

a.hero-contact-item:hover .hero-contact-item__icon {
    box-shadow: 0 8px 20px rgba(0, 101, 61, 0.38);
    transform: scale(1.08);
}

.hero-contact-item__icon svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
}

.hero-contact-item__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.hero-contact-item__value {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.5;
    transition: color 0.2s ease;
}

.hero-contact-card__hours {
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* =========================================================
   HERO RESPONSIVE (1024px and below)
   ========================================================= */
@media (max-width: 1024px) {
    .page-hero__grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: var(--space-7);
        min-height: auto;
    }

    .page-hero__right {
        justify-content: flex-start;
    }

    /* At 1024px convert floating chips to a tidy flex grid */
    .hero-icon-comp {
        height: auto;
        width: 100%;
        max-width: 480px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
        padding: 8px 0 4px;
    }

    .hero-icon-orb {
        display: none;
    }

    .hero-icon-chip {
        position: static;
        transform: none !important;
        animation: none;
        font-size: 13px;
        padding: 12px 16px;
        flex: 0 1 auto;
    }

    .hero-stat-grid {
        width: 100%;
        max-width: 400px;
    }

    .hero-contact-card {
        width: 100%;
        max-width: 400px;
    }
}

/* =========================================================
   HERO RESPONSIVE (768px and below)
   ========================================================= */
@media (max-width: 768px) {
    .page-hero--split {
        padding: calc(var(--nav-height) + var(--space-6)) 0 var(--space-6);
    }

    .page-hero--split h1 {
        font-size: 1.75rem;
    }

    .page-hero__desc {
        font-size: var(--text-body);
    }

    .page-hero__cta-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .page-hero__badges {
        gap: var(--space-2);
    }

    /* Convert absolute-positioned chips into a 2-col flex grid */
    .hero-icon-comp {
        height: auto;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        padding: 8px 0 4px;
    }

    .hero-icon-orb {
        display: none;
    }

    .hero-icon-chip {
        position: static;
        transform: none !important;
        animation: none;
        font-size: 12px;
        padding: 10px 14px;
        flex: 0 1 auto;
    }

    .hero-stat-grid {
        max-width: 100%;
    }

    .hero-stat-card__number {
        font-size: 1.6rem;
    }

    /* Left-align process step text on mobile */
    .htl-step__body {
        text-align: center;
        padding: 0 16px;
    }

    .htl-step__body p {
        max-width: none;
        margin: 0;
    }
}

/* =========================================================
   HERO RESPONSIVE (575px and below)
   ========================================================= */
@media (max-width: 575px) {
    .page-hero--split h1 {
        font-size: 1.55rem;
    }

    .page-hero__desc {
        font-size: 0.95rem;
    }

    /* Compact badge pills so they wrap 2-per-row instead of stacking */
    .page-hero__badges {
        gap: 6px;
    }

    .page-hero__badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .hero-icon-comp {
        height: 180px;
    }

    .hero-icon-chip {
        font-size: 11px;
        padding: 10px 12px;
    }

    .hero-icon-chip--lg {
        font-size: 12px;
        padding: 12px 14px;
    }

    /* Stats: 1-col on small phones */
    .hero-stat-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .hero-stat-card {
        padding: var(--space-4);
    }

    .hero-stat-card__number {
        font-size: 1.4rem;
    }

    .hero-stat-card__label {
        font-size: 11px;
    }
}

/* =========================================================
   PROCESS TRACK RESPONSIVE (768px and below — mobile only)
   ========================================================= */
@media (max-width: 768px) {
    .htl-track {
        flex-direction: column;
        align-items: center;
        gap: var(--space-6);
    }

    .htl-step {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .htl-connector {
        display: none;
    }

    .htl-circle {
        width: 80px;
        height: 80px;
    }

    .htl-circle svg {
        width: 32px;
        height: 32px;
    }

    .htl-step__body {
        padding: 0 8px;
    }

    .htl-step__body h4 {
        font-size: 15px;
    }

    .htl-step__body p {
        font-size: 13px;
        max-width: none;
    }
}

/* =========================================================
   PROCESS TRACK RESPONSIVE (480px and below)
   ========================================================= */
@media (max-width: 480px) {
    .htl-circle {
        width: 70px;
        height: 70px;
    }

    .htl-circle svg {
        width: 28px;
        height: 28px;
    }

    .htl-badge {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .htl-step__body {
        padding: 0;
    }
}

/* =========================================================
   PROCESS WHEEL UI (Scroll-based, Giant-D Semicircle)
   ========================================================= */
.scroll-process-section {
    position: relative;
}

.scroll-process-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.scroll-process-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ── Heading ── */
.scroll-process-heading-wrap {
    padding: 52px 0 28px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* ── Body: left wheel + right content ── */
.scroll-process-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
}

/* ── Left column: Giant D-semicircle ── */
.scroll-process-wheel {
    position: relative;
    overflow: hidden;
    /* clips the left half of the circle */
}

.wheel-circle {
    position: absolute;
    top: 50%;
    border-radius: 50%;
    border: 2px solid rgba(26, 107, 60, 0.28);
    box-shadow: inset 0 0 60px rgba(26, 107, 60, 0.04);
    transition: transform 0.12s linear;
    will-change: transform;
    /* width, height, left set dynamically by process.js */
}

/* ── Nodes on the arc ── */
.wheel-node {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: rotate(var(--angle));
}

.wheel-dot {
    position: absolute;
    top: 50%;
    right: -7px;
    width: 14px;
    height: 14px;
    background: rgba(26, 107, 60, 0.18);
    border: 2px solid rgba(26, 107, 60, 0.35);
    border-radius: 50%;
    margin-top: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wheel-dot-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.wheel-dot-icon svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.wheel-number {
    position: absolute;
    top: 50%;
    right: -72px;
    margin-top: -24px;
    height: 48px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: rgba(26, 107, 60, 0.25);
    letter-spacing: -0.02em;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.wheel-number span {
    display: inline-block;
    will-change: transform;
}

/* Active node */
.wheel-node.active .wheel-dot {
    width: 40px;
    height: 40px;
    right: -20px;
    margin-top: -20px;
    background: var(--color-accent, #1a6b3c);
    border-color: var(--color-accent, #1a6b3c);
    box-shadow: 0 0 0 6px rgba(26, 107, 60, 0.15), 0 4px 16px rgba(26, 107, 60, 0.3);
}

.wheel-node.active .wheel-dot-icon {
    width: 20px;
    height: 20px;
    opacity: 1;
}

.wheel-node.active .wheel-number {
    font-size: 80px;
    color: var(--color-text-primary);
    right: -116px;
    margin-top: -50px;
}

/* ── Right column: step content ── */
.scroll-process-content {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 var(--space-10, 64px) 0 var(--space-6, 32px);
}

.process-step-content {
    position: absolute;
    left: var(--space-6, 32px);
    right: var(--space-10, 64px);
    transform: translateX(40px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
}

.process-step-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.process-step-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent, #1a6b3c);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.process-step-tag::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--color-accent, #1a6b3c);
    border-radius: 2px;
}

.process-step-title {
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--color-text-primary);
    line-height: 1.2;
}

.process-step-desc {
    font-size: clamp(15px, 1.1vw, 18px);
    color: var(--color-text-secondary);
    line-height: 1.75;
    max-width: 500px;
}

/* ── Default: hide medium/small layouts (large screen shows wheel) ── */
.circ-process-wrap,
.circ-process-list { display: none; }

/* ── Responsive: ≤1024px — hide wheel, show circular ring layout ── */
@media (max-width: 1024px) {

    /* Kill sticky scroll + hide entire wheel container */
    .scroll-process-section { height: auto !important; }
    .scroll-process-container { display: none; }

    .scroll-process-heading-wrap {
        padding: 56px 0 24px;
    }

    /* ── Circular ring layout ── */
    .circ-process-wrap {
        display: block;
        position: relative;
        width: min(560px, 80vw);
        aspect-ratio: 1;
        margin: 0 auto 48px;
        padding: 0;
    }

    .circ-process-svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .circ-node {
        position: absolute;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    .circ-node__dot {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--color-accent, #1a6b3c);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        box-shadow: 0 4px 18px rgba(0,101,61,0.30);
        border: 2px solid rgba(255,255,255,0.4);
    }

    .circ-node__dot svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .circ-node__num {
        position: absolute;
        bottom: -5px;
        right: -5px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #fff;
        border: 1.5px solid rgba(0,101,61,0.28);
        color: var(--color-accent, #1a6b3c);
        font-size: 9px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .circ-label {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 1px;
        pointer-events: none;
        white-space: nowrap;
    }

    .circ-label--right {
        left: calc(100% + 10px);
        top: 50%;
        transform: translateY(-50%);
        text-align: left;
    }

    .circ-label--left {
        right: calc(100% + 10px);
        top: 50%;
        transform: translateY(-50%);
        text-align: right;
    }

    .circ-label--top {
        bottom: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .circ-label--bottom {
        top: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .circ-label__step {
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 600;
        color: var(--color-accent, #1a6b3c);
        opacity: 0.75;
    }

    .circ-label__title {
        font-size: 12px;
        font-weight: 700;
        color: var(--color-text-primary, #111827);
        line-height: 1.3;
        display: block;
    }

    .circ-hub {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 84px;
        height: 84px;
        border-radius: 50%;
        background: rgba(0,101,61,0.06);
        border: 2px solid rgba(0,101,61,0.18);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        z-index: 1;
    }

    .circ-hub span {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--color-accent, #1a6b3c);
        line-height: 1.3;
        padding: 0 8px;
    }
}

/* ── Small screen: centered vertical icon cards ── */
@media (max-width: 600px) {
    .scroll-process-heading-wrap {
        padding: 36px 0 8px;
    }

    .circ-process-wrap { display: none; }

    .circ-process-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 16px 0 48px;
        gap: 0;
    }

    .circ-list-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 320px;
    }

    /* Large icon circle */
    .circ-list-item__icon-wrap {
        position: relative;
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }

    .circ-list-item__icon {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: var(--color-accent, #1a6b3c);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 24px rgba(0,101,61,0.28);
    }

    .circ-list-item__icon svg {
        width: 44px;
        height: 44px;
    }

    /* Number badge — top-right, dark circle */
    .circ-list-item__num {
        position: absolute;
        top: 4px;
        right: 4px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #111;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.03em;
        border: 2px solid #fff;
    }

    /* Vertical connector line between items */
    .circ-list-item__line {
        width: 2px;
        height: 40px;
        background: rgba(0,101,61,0.18);
        flex-shrink: 0;
        margin: 10px 0;
    }

    .circ-list-item__title {
        display: block;
        font-size: 16px;
        font-weight: 700;
        color: var(--color-text-primary, #111827);
        margin: 12px 0 6px;
        line-height: 1.3;
    }

    .circ-list-item__desc {
        font-size: 13px;
        line-height: 1.7;
        color: var(--color-text-secondary, #6b7280);
        margin: 0 0 4px;
    }
}

/* =========================================================
   HORIZONTAL TIMELINE PROCESS  (.htl-*)
   ========================================================= */
.htl-section {
    padding: var(--space-16, 80px) 0;
}

.htl-subtext {
    max-width: 560px;
    margin: 0 auto;
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* Track — flex row, fills width */
.htl-track {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 56px;
    position: relative;
}

/* Each step takes equal share */
.htl-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition-delay: var(--delay, 0ms);
    overflow: visible;
}

/* Top row: connector line + circle */
.htl-step__top {
    width: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
}

/* Horizontal line: from right edge of this circle to left edge of next circle */
.htl-connector {
    position: absolute;
    top: 50%;
    left: calc(50% + 45px);   /* right edge of 90px circle */
    right: calc(-50% + 45px); /* left edge of next circle — extends past this step's boundary */
    height: 2px;
    background: var(--color-border, #e5e7eb);
    transform: translateY(-50%);
    z-index: 0;
}

/* Large filled circle */
.htl-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--color-primary, #00653D);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 101, 61, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.htl-circle:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 101, 61, 0.3);
}

.htl-circle svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Numbered badge */
.htl-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    background: #111111;
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    border: 2px solid #fff;
}

/* Step text */
.htl-step__body {
    padding: 0 12px;
}

.htl-step__body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.htl-step__body p {
    font-size: 13.5px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 200px;
    margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .htl-track {
        flex-wrap: wrap;
        gap: 40px 0;
        justify-content: center;
    }

    .htl-step {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .htl-connector {
        display: none;
    }
}

@media (max-width: 575px) {
    .htl-step {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .htl-section {
        padding: var(--space-12, 56px) 0;
    }
}