/* ==========================================================================
   HOMEPAGE REDESIGN — DEDICATED PREMIUM STYLES
   ========================================================================== */

/* Typography & Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #37C028 0%, #10b981 100%);
    --secondary-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 2px 8px rgba(0, 0, 0, 0.02);
    --hover-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 8px 16px rgba(15, 23, 42, 0.04);
}

/* ==========================================================================
   COMMON COMPONENTS
   ========================================================================== */

.gradient-text {
    background: linear-gradient(90deg, #37C028 0%, #10b981 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.hp-services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(55, 192, 40, 0.08);
    color: #166534;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.825rem;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(55, 192, 40, 0.15);
}

.hp-services-badge .icon-sm {
    width: 14px;
    height: 14px;
}

.hp-services-title {
    font-size: clamp(2rem, 3.5vw + 0.5rem, 2.75rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hp-services-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}

/* ==========================================================================
   INTRO SECTION
   ========================================================================== */

.hp-intro-section {
    padding: 6rem 0;
    background: radial-gradient(circle at top right, rgba(55, 192, 40, 0.03), transparent 40%);
}

.hp-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hp-intro-title {
    font-size: clamp(2.25rem, 4vw + 0.5rem, 3.25rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hp-intro-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 1.5rem;
}

.hp-intro-desc strong {
    color: #0f172a;
    font-weight: 600;
}

.hp-intro-buttons {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
}

.hp-intro-buttons .btn-green {
    background-color: #37C028;
    color: #ffffff;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(55, 192, 40, 0.2);
}

.hp-intro-buttons .btn-green:hover {
    background-color: #2da320;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 192, 40, 0.3);
}

.hp-intro-buttons .btn-secondary {
    border: 1px solid #cbd5e1;
    color: #334155;
    background: transparent;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hp-intro-buttons .btn-secondary:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
}

.hp-intro-visual {
    position: relative;
}

.hp-visual-container {
    position: relative;
    padding: 1.5rem;
}

.hp-visual-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.hp-visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.hp-visual-card.card-1 {
    top: 15%;
    left: -10%;
    border-left: 4px solid #37C028;
}

.hp-visual-card.card-2 {
    bottom: 15%;
    right: -5%;
    border-left: 4px solid #3b82f6;
}

.hp-visual-card .card-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.hp-visual-card .card-lbl {
    font-size: 0.775rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

@media (max-width: 1024px) {
    .hp-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hp-intro-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   INTERACTIVE SERVICES EXPLORER
   ========================================================================== */

.hp-services-explorer-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 6rem 0;
}

.hp-explorer-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    min-height: 580px;
}

/* Left Navigation List */
.hp-explorer-nav {
    background: #f8fafc;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hp-explorer-tab {
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.hp-explorer-tab {
    font-size: 0.9rem;
    font-weight: 700;
    color: #94a3b8;
    margin-right: 1.25rem;
    transition: color 0.3s;
}

.tab-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-right: 1.25rem;
    transition: color 0.3s;
}

.hp-explorer-tab .tab-title {
    font-size: 0.975rem;
    font-weight: 700;
    color: #475569;
    flex: 1;
    transition: color 0.3s;
    line-height: 1.3;
}

.hp-explorer-tab .tab-arrow {
    width: 16px;
    height: 16px;
    color: #94a3b8;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}


/* Active Navigation Tab */
.hp-explorer-tab.active {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.hp-explorer-tab.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 4px;
    background: #37C028;
    border-radius: 0 4px 4px 0;
}

.hp-explorer-tab.active {
    color: #37C028;
}

.tab-num {
    color: white;
}

.hp-explorer-tab.active .tab-title {
    color: #0f172a;
}

.hp-explorer-tab.active .tab-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #37C028;
}

.hp-explorer-tab:hover:not(.active) {
    background: rgba(15, 23, 42, 0.02);
}

.hp-explorer-tab:hover:not(.active) .tab-title {
    color: #0f172a;
}

/* Right Content Area */
.hp-explorer-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hp-explorer-pane {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.hp-explorer-pane.active {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pane-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.775rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.badge-ecommerce {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.badge-logistics {
    background: rgba(6, 182, 212, 0.1);
    color: #0891b2;
}

.badge-business {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.badge-analytics {
    background: rgba(236, 72, 153, 0.1);
    color: #db2777;
}

.badge-devops {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.badge-software {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.badge-ai {
    background: rgba(55, 192, 40, 0.1);
    color: #16a34a;
}

.pane-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.pane-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2.25rem;
}

.pane-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.pane-features h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.pane-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pane-features ul li {
    font-size: 0.95rem;
    color: #334155;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.pane-features ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #37C028;
    font-weight: bold;
}

/* Tab metrics */
.pane-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.pane-stat-box {
    display: flex;
    flex-direction: column;
}

.pane-stat-box .stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1.1;
}

.pane-stat-box .stat-label {
    font-size: 0.825rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Footer link button */
.btn-pane-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #101f44;
    color: #ffffff;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 0.925rem;
}

.btn-pane-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-pane-link:hover {
    background: #090c13;
    box-shadow: 0 4px 15px rgba(55, 192, 40, 0.3);
    color: #ffffff;
}

.btn-pane-link:hover svg {
    transform: translateX(4px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Explorer Section */
@media (max-width: 1024px) {
    .hp-explorer-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hp-explorer-nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 1.25rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .hp-explorer-tab {
        flex-shrink: 0;
        width: auto;
        padding: 0.85rem 1.25rem;
    }

    .hp-explorer-tab .tab-num {
        margin-right: 0.5rem;
    }

    .hp-explorer-tab .tab-arrow {
        display: none;
    }

    .hp-explorer-tab.active::before {
        left: 15%;
        bottom: 0;
        top: auto;
        height: 3px;
        width: 70%;
        border-radius: 4px 4px 0 0;
    }

    .hp-explorer-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pane-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hp-explorer-content {
        padding: 1.75rem;
    }

    .pane-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   INDUSTRIES WE SERVE
   ========================================================================== */

.hp-industries-section {
    background: #ffffff;
    padding: 6rem 0;
}

.hp-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hp-industry-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hp-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(55, 192, 40, 0.15);
}

.hp-industry-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(55, 192, 40, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #10b981;
}

.hp-industry-icon svg {
    width: 24px;
    height: 24px;
}

.hp-industry-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.hp-industry-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hp-industry-usecases {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    border-top: 1px dashed #e2e8f0;
    padding-top: 1.25rem;
}

.hp-industry-usecases li {
    font-size: 0.85rem;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.625rem;
    line-height: 1.4;
}

.hp-industry-usecases li:last-child {
    margin-bottom: 0;
}

.hp-industry-usecases li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #37C028;
    font-weight: bold;
    font-size: 1rem;
    top: -2px;
}

@media (max-width: 1024px) {
    .hp-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hp-industries-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   THE PROBLEM WE SOLVE
   ========================================================================== */

.hp-problem-section {
    background: #f8fafc;
    padding: 6rem 0;
}

.hp-problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hp-problem-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    background: #ffffff;
    padding: 2.25rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
}

.hp-problem-item:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-2px);
}

.hp-problem-before,
.hp-problem-after {
    padding: 1.5rem;
    border-radius: 16px;
}

.hp-problem-before {
    background: rgba(239, 68, 68, 0.015);
    border-left: 4px solid #ef4444;
}

.hp-problem-after {
    background: rgba(55, 192, 40, 0.015);
    border-left: 4px solid #37C028;
}

.hp-problem-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.hp-label-before {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.hp-label-after {
    background: rgba(55, 192, 40, 0.1);
    color: #166534;
}

.hp-problem-before p,
.hp-problem-after p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.hp-problem-before strong {
    color: #ef4444;
}

.hp-problem-after strong {
    color: #37C028;
}

.hp-problem-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #94a3b8;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.hp-problem-arrow svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .hp-problem-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .hp-problem-arrow {
        transform: rotate(90deg);
        margin: 0.5rem auto;
    }
}

/* ==========================================================================
   TECHNOLOGY STACK
   ========================================================================== */

.hp-techstack-section {
    background: #ffffff;
    padding: 6rem 0;
}

.hp-tech-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hp-tech-category {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.hp-tech-category:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-color: rgba(55, 192, 40, 0.1);
}

.hp-tech-cat-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.75rem;
}

.hp-tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.hp-tech-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-size: 0.825rem;
    font-weight: 500;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.hp-tech-pill:hover {
    border-color: #37C028;
    color: #37C028;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(55, 192, 40, 0.1);
}

@media (max-width: 1024px) {
    .hp-tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hp-tech-categories {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   DEVELOPMENT PROCESS
   ========================================================================== */

.hp-process-section {
    background: #0f172a;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hp-process-section .hp-process-title {
    color: #ffffff;
}

.hp-process-section .hp-services-desc {
    color: #94a3b8;
}

.hp-process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(55, 192, 40, 0.15);
    color: #4ade80;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.825rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(55, 192, 40, 0.2);
}

.hp-process-badge .icon-sm {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.hp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.hp-process-step {
    text-align: center;
}

.hp-step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #37C028, #10b981);
    box-shadow: 0 8px 20px rgba(55, 192, 40, 0.2);
    position: relative;
}

.hp-process-step:nth-child(2) .hp-step-number {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.hp-process-step:nth-child(3) .hp-step-number {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}

.hp-process-step:nth-child(4) .hp-step-number {
    background: linear-gradient(135deg, #ec4899, #db2777);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.2);
}

.hp-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.hp-step-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .hp-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hp-process-grid {
        grid-template-columns: 1fr;
    }
}



/* ==========================================================================
   WHY PARTNER WITH US
   ========================================================================== */

.hp-why-section {
    background: #ffffff;
    padding: 6rem 0;
}

.hp-why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.hp-why-visual {
    position: relative;
}

.hp-why-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

.hp-why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.hp-why-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.hp-why-card:hover {
    background: #ffffff;
    box-shadow: var(--card-shadow);
    border-color: rgba(55, 192, 40, 0.1);
}

.hp-why-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.hp-why-card-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .hp-why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hp-why-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hp-why-features {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   TRANSFORM & CTA
   ========================================================================== */

.hp-transform-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
}

.hp-transform-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hp-transform-title {
    font-size: clamp(2rem, 3.5vw + 0.5rem, 2.75rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hp-transform-desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hp-transform-box .btn-green {
    background-color: #37C028;
    color: #ffffff;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(55, 192, 40, 0.25);
    transition: all 0.3s;
    display: inline-block;
}

.hp-transform-box .btn-green:hover {
    background-color: #2da320;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 192, 40, 0.35);
}

/* ==========================================================================
   ENTRANCE ANIMATIONS & TRIGGER CLASSES
   ========================================================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hp-intro-grid.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hp-explorer-container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hp-process-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hp-industry-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}