.second-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section */
.second-hero {
    background: linear-gradient(135deg, rgba(18, 37, 56, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%),
        url('https://media.cgtrader.com/variants/D7bUe5HQJ5prAhcVQty7N9Ts/78add9c2f02fbd73a43ffb3970be38683c5f15eff6ca849dc78c644f4ff9ce1b/00001.webp') center/cover no-repeat;
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Animated Background Shapes */
.second-hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.second-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129, 139, 149, 0.35) 0%, rgba(129, 139, 149, 0.15) 40%, transparent 70%);
    filter: blur(30px);
    animation: float 18s infinite ease-in-out;
    box-shadow: 0 0 60px rgba(129, 139, 149, 0.3);
}

.second-hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
    background: radial-gradient(circle, rgba(129, 139, 149, 0.4) 0%, rgba(129, 139, 149, 0.2) 40%, transparent 70%);
}

.second-hero-shape-2 {
    width: 500px;
    height: 500px;
    top: 30%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 25s;
    background: radial-gradient(circle, rgba(255, 252, 255, 0.3) 0%, rgba(255, 252, 255, 0.15) 40%, transparent 70%);
    box-shadow: 0 0 80px rgba(255, 252, 255, 0.25);
}

.second-hero-shape-3 {
    width: 700px;
    height: 700px;
    bottom: -200px;
    left: 50%;
    animation-delay: -10s;
    animation-duration: 30s;
    background: radial-gradient(circle, rgba(129, 139, 149, 0.35) 0%, rgba(129, 139, 149, 0.18) 40%, transparent 70%);
}

.second-hero-shape-4 {
    width: 400px;
    height: 400px;
    top: 60%;
    left: 20%;
    animation-delay: -15s;
    animation-duration: 18s;
    background: radial-gradient(circle, rgba(255, 252, 255, 0.25) 0%, rgba(255, 252, 255, 0.12) 40%, transparent 70%);
    box-shadow: 0 0 70px rgba(255, 252, 255, 0.2);
}

.second-hero-shape-5 {
    width: 550px;
    height: 550px;
    top: 10%;
    right: 30%;
    animation-delay: -8s;
    animation-duration: 22s;
    background: radial-gradient(circle, rgba(129, 139, 149, 0.38) 0%, rgba(129, 139, 149, 0.2) 40%, transparent 70%);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    25% {
        transform: translate(80px, -80px) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translate(-60px, 60px) scale(0.85);
        opacity: 0.9;
    }

    75% {
        transform: translate(60px, 80px) scale(1.15);
        opacity: 0.95;
    }
}

/* Animated Grid Pattern */
.second-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(129, 139, 149, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(129, 139, 149, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 15s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.second-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(129, 139, 149, 0.3) 0%, rgba(129, 139, 149, 0.1) 40%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(129, 139, 149, 0.3) 0%, rgba(129, 139, 149, 0.1) 40%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.second-hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(129, 139, 149, 0.2) 50%, rgba(129, 139, 149, 0.15) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
    z-index: 0;
    animation: slideIn 12s ease-in-out infinite;
    box-shadow: -20px 0 40px rgba(129, 139, 149, 0.2);
}

@keyframes slideIn {

    0%,
    100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateX(-30px) translateY(30px) scale(1.02);
        opacity: 1;
    }
}

.second-hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
}

.second-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #FFFCFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.second-hero-subtitle {
    font-size: 24px;
    margin-bottom: 35px;
    color: #FFFCFF;
    font-weight: 400;
    line-height: 1.5;
}

.second-hero-text {
    margin-bottom: 45px;
    max-width: 850px;
}

.second-hero-text p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #FFFCFF;
    opacity: 0.95;
}

/* Buttons */
.second-btn {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.15s ease-out;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.second-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease-out, height 0.3s ease-out;
}

.second-btn:hover::before {
    width: 300px;
    height: 300px;
}

.second-btn-primary {
    background: linear-gradient(135deg, #F6851D 0%, #D9731A 50%, #122538 100%);
    color: #fff;
    box-shadow: 0 6px 25px rgba(246, 133, 29, 0.4), 0 0 20px rgba(246, 133, 29, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.second-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.second-btn-primary:hover::after {
    left: 100%;
}

.second-btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(246, 133, 29, 0.5), 0 0 30px rgba(246, 133, 29, 0.3);
    background: linear-gradient(135deg, #FF9A2E 0%, #F6851D 50%, #122538 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transition: all 0.15s ease-out;
}

.second-btn-full {
    width: 100%;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.second-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.second-section-title {
    font-size: 46px;
    font-weight: 700;
    color: #122538;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.second-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #818B95, #122538);
    border-radius: 3px;
}

.second-section-title-light {
    color: #fff;
}

.second-section-title-light::after {
    background: linear-gradient(90deg, #818B95, #FFFCFF);
}

.second-section-subtitle {
    font-size: 18px;
    color: #818B95;
    margin-top: 25px;
    font-weight: 400;
}

.second-section-subtitle-light {
    color: #FFFCFF;
    opacity: 0.9;
}

/* About Section */
.second-about {
    background: linear-gradient(180deg, #fff 0%, #FFFCFF 100%);
    padding: 40px 0;
}

.second-about-content {
    max-width: 1400px;
    margin: 0 auto;
}

.second-about .second-section-header {
    margin-bottom: 60px;
}

.second-about-content {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.second-about-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.second-about-button-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.second-about-toggle-btn {
    background: linear-gradient(135deg, #818B95 0%, #122538 100%);
    color: #fff;
    border: none;
    padding: 18px 45px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(129, 139, 149, 0.3);
    animation: pulseButton 2s ease-in-out infinite;
    position: relative;
}

.second-about-toggle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(135deg, #F6851D 0%, #818B95 100%);
    opacity: 0;
    z-index: -1;
    animation: pulseRing 2s ease-in-out infinite;
}

.second-about-toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(129, 139, 149, 0.4);
    animation: none;
}

.second-about-toggle-btn:hover::before {
    animation: none;
}

@keyframes pulseButton {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(129, 139, 149, 0.3), 0 0 0 0 rgba(246, 133, 29, 0.4);
    }

    50% {
        box-shadow: 0 4px 15px rgba(129, 139, 149, 0.3), 0 0 0 10px rgba(246, 133, 29, 0);
    }
}

@keyframes pulseRing {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.6;
    }

    100% {
        width: 150%;
        height: 150%;
        opacity: 0;
    }
}

.second-about-text {
    position: relative;
    width: 100%;
    min-height: 400px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.second-about-text.second-about-text-visible {
    opacity: 1;
    visibility: visible;
}

.second-about-item {
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid rgba(129, 139, 149, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    position: absolute;
    width: 280px;
    height: 200px;
    box-shadow: 0 4px 12px rgba(129, 139, 149, 0.15);
    display: flex;
    flex-direction: column;
}

.second-about-item-center {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0) !important;
    z-index: 5;
}

.second-about-item-center.second-about-item-visible {
    transform: translate(-50%, -50%) scale(1) !important;
    opacity: 1 !important;
}

.second-about-item:hover {
    border-color: #818B95;
    box-shadow: 0 6px 20px rgba(129, 139, 149, 0.2);
}

.second-about-text.second-about-text-visible .second-about-item:hover:not(.second-about-item-center) {
    box-shadow: 0 6px 20px rgba(129, 139, 149, 0.2);
}

.second-about-item-center:hover {
    box-shadow: 0 6px 20px rgba(129, 139, 149, 0.2);
}

.second-about-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #122538;
    margin-bottom: 10px;
    line-height: 1.3;
}

.second-about-item p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    color: #122538;
    text-align: left;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    max-height: 100%;
}

/* Services Section */
.second-services {
    background-color: #FFFCFF;
}

/* Text Block Section */
.second-text-block {
    background: linear-gradient(180deg, #FFFCFF 0%, #fff 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.second-text-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #818B95, transparent);
    opacity: 0.3;
}

.second-text-block .second-section-header {
    margin-bottom: 35px;
}

.second-text-block-content {
    max-width: 1200px;
    margin: 0 auto;
}

.second-text-tabs {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.second-text-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #f8f9fa;
    border-bottom: 2px solid rgba(129, 139, 149, 0.15);
    padding: 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.second-text-tabs-nav::-webkit-scrollbar {
    height: 6px;
}

.second-text-tabs-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.second-text-tabs-nav::-webkit-scrollbar-thumb {
    background: #818B95;
    border-radius: 3px;
}

.second-text-tab-btn {
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 14px;
    font-weight: 500;
    color: #818B95;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

.second-text-tab-btn:hover {
    background: rgba(18, 37, 56, 0.05);
    color: #122538;
}

.second-text-tab-btn.active {
    color: #122538;
    background: #fff;
    border-bottom-color: #122538;
    font-weight: 600;
}

.second-text-tabs-content {
    position: relative;
    min-height: 200px;
}

.second-text-tab-pane {
    display: none;
    padding: 30px 35px;
    animation: fadeIn 0.3s ease;
}

.second-text-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.second-text-tab-pane p {
    font-size: 15px;
    line-height: 1.8;
    color: #122538;
    margin: 0;
    text-align: left;
}

.second-text-tab-pane p a {
    color: #122538;
    text-decoration: none;
    border-bottom: 2px solid #818B95;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

.second-text-tab-pane p a:hover {
    color: #F6851D;
    border-bottom-color: #F6851D;
    padding-bottom: 3px;
}

.second-text-tab-pane p a:active {
    color: #818B95;
    border-bottom-color: #818B95;
}

.second-services-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.second-capability-item {
    background: linear-gradient(135deg, #fff 0%, #FFFCFF 100%);
    border-radius: 20px;
    padding: 40px 35px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(129, 139, 149, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(18, 37, 56, 0.08);
}

.second-capability-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(246, 133, 29, 0.05) 0%, rgba(129, 139, 149, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.second-capability-item:hover::before {
    opacity: 1;
}

.second-capability-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(18, 37, 56, 0.2);
    border-color: rgba(246, 133, 29, 0.4);
}

.second-capability-number {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.second-capability-value {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #F6851D 0%, #122538 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.second-capability-item:hover .second-capability-value {
    transform: scale(1.1);
    background: linear-gradient(135deg, #F6851D 0%, #818B95 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.second-capability-label {
    font-size: 18px;
    font-weight: 600;
    color: #818B95;
    text-transform: lowercase;
    transition: color 0.3s ease;
}

.second-capability-item:hover .second-capability-label {
    color: #F6851D;
}

.second-capability-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.second-capability-item h3 {
    font-size: 24px;
    color: #122538;
    margin-bottom: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.second-capability-item:hover h3 {
    color: #F6851D;
}

.second-capability-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #122538;
    margin: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.second-capability-item:hover p {
    opacity: 1;
}

/* Advantages Section */
.second-advantages {
    background: linear-gradient(180deg, #fff 0%, #FFFCFF 100%);
}

.second-advantages-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.second-advantage-wrapper {
    position: relative;
}

.second-brick-animation {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 35px;
    background: linear-gradient(135deg, #F6851D 0%, #D9731A 50%, #C16515 100%);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    opacity: 0;
    z-index: 10;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.second-brick-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 20%,
            transparent 40%,
            rgba(0, 0, 0, 0.1) 50%,
            transparent 60%,
            rgba(255, 255, 255, 0.1) 80%,
            transparent 100%),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 8px,
            rgba(0, 0, 0, 0.05) 8px,
            rgba(0, 0, 0, 0.05) 9px);
    border-radius: 2px;
    pointer-events: none;
}

.second-brick-animation::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.second-brick-animation.animate {
    opacity: 1;
    animation: brickFall 1.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}

@keyframes brickFall {
    0% {
        top: -100px;
        transform: translateX(-50%) rotate(0deg);
        opacity: 1;
    }

    90% {
        transform: translateX(-50%) rotate(5deg);
    }

    100% {
        top: 0;
        transform: translateX(-50%) rotate(0deg);
        opacity: 0;
    }
}

.second-advantage-item {
    padding: 35px;
    background: linear-gradient(135deg, #FFFCFF 0%, #fff 100%);
    border-left: 5px solid #818B95;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(20px);
    pointer-events: none;
}

.second-advantage-item.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    pointer-events: auto;
    animation: cardAppear 0.5s ease-out forwards;
}

@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.second-advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(129, 139, 149, 0.1) 0%, transparent 70%);
    transform: translate(30px, -30px);
    transition: transform 0.4s ease;
}

.second-advantage-item:hover::before {
    transform: translate(0, 0);
}

.second-advantage-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateX(8px) translateY(-3px);
    border-left-color: #122538;
}


.second-advantage-item h3 {
    font-size: 23px;
    color: #122538;
    margin-bottom: 15px;
    font-weight: 600;
}

.second-advantage-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #122538;
}

/* Process Section */
.second-process {
    background: linear-gradient(135deg, #122538 0%, #000 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.second-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(129, 139, 149, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(129, 139, 149, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.second-process-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.second-process-step {
    position: relative;
    padding: 45px 35px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.second-process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F6851D, #818B95);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.second-process-step:hover::before {
    transform: scaleX(1);
}

.second-process-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(246, 133, 29, 0.1) 0%, rgba(129, 139, 149, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 20px;
    pointer-events: none;
}

.second-process-step:hover::after {
    opacity: 1;
}

.second-process-step:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(246, 133, 29, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(246, 133, 29, 0.2);
}

.second-step-icon {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.second-step-number {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #F6851D 0%, #818B95 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.second-step-icon::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(246, 133, 29, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: scale(0.8);
    opacity: 0.5;
}

.second-process-step:hover .second-step-icon::before {
    transform: scale(1.2);
    opacity: 0.8;
}

.second-process-step:hover .second-step-number {
    transform: scale(1.15);
    filter: brightness(1.2);
}

.second-step-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: rgba(246, 133, 29, 0.4);
    font-weight: 300;
    transition: all 0.4s ease;
    z-index: 10;
}

.second-process-step:last-child .second-step-arrow {
    display: none;
}

.second-process-step:hover .second-step-arrow {
    color: #F6851D;
    transform: translateY(-50%) translateX(5px);
    font-size: 40px;
}

.second-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.second-step-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.second-process-step:hover .second-step-content h3 {
    color: #F6851D;
}

.second-step-content p {
    font-size: 16px;
    line-height: 1.85;
    color: #FFFCFF;
    opacity: 0.85;
    flex: 1;
    transition: opacity 0.3s ease;
}

.second-process-step:hover .second-step-content p {
    opacity: 1;
}


/* Animations */
.second-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.second-fade-in.second-visible {
    opacity: 1;
    transform: translateY(0);
}

.second-slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.second-slide-in-left.second-visible {
    opacity: 1;
    transform: translateX(0);
}

.second-slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.second-slide-in-right.second-visible {
    opacity: 1;
    transform: translateX(0);
}

.second-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.second-scale-in.second-visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
    .second-hero-title {
        font-size: 48px;
    }

    .second-section-title {
        font-size: 40px;
    }

}

@media (max-width: 768px) {
    .second-hero {
        padding: 80px 0;
        min-height: auto;
    }

    .second-hero-shape {
        filter: blur(30px);
    }

    .second-hero-shape-1,
    .second-hero-shape-3,
    .second-hero-shape-5 {
        display: none;
    }

    .second-hero-grid {
        background-size: 30px 30px;
        opacity: 0.3;
    }

    .second-hero-title {
        font-size: 38px;
    }

    .second-hero-subtitle {
        font-size: 20px;
    }

    .second-section-title {
        font-size: 34px;
    }

    .second-about {
        padding: 35px 0;
    }

    .second-about .second-section-header {
        margin-bottom: 25px;
    }

    .second-about-content {
        min-height: 300px;
    }

    .second-about-item {
        width: 240px;
        height: 180px;
        padding: 15px;
    }

    .second-about-item h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .second-about-item p {
        font-size: 12px;
    }


    .second-services-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .second-capability-item {
        padding: 35px 28px;
    }

    .second-capability-value {
        font-size: 48px;
    }

    .second-capability-label {
        font-size: 16px;
    }

    .second-capability-item h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .second-capability-item p {
        font-size: 14px;
    }

    .second-text-block {
        padding: 35px 0;
    }

    .second-text-block .second-section-header {
        margin-bottom: 25px;
    }

    .second-text-tab-btn {
        padding: 14px 18px;
        font-size: 13px;
    }

    .second-text-tab-pane {
        padding: 25px 25px;
    }

    .second-text-tab-pane p {
        font-size: 14px;
        line-height: 1.75;
    }

    .second-advantages-content {
        grid-template-columns: 1fr;
    }

    .second-process-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .second-step-arrow {
        display: none;
    }

    section {
        padding: 70px 0;
    }

}

@media (max-width: 480px) {
    .second-container {
        padding: 0 20px;
    }

    .second-hero {
        padding: 60px 0;
    }

    .second-hero-shape {
        filter: blur(25px);
        animation-duration: 15s;
    }

    .second-hero-shape-4 {
        display: none;
    }

    .second-hero-grid {
        display: none;
    }

    .second-about {
        padding: 30px 0;
    }

    .second-about .second-section-header {
        margin-bottom: 20px;
    }

    .second-about-text {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .second-about-item {
        padding: 12px;
    }

    .second-about-item h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .second-about-item p {
        font-size: 11px;
        line-height: 1.5;
    }

    .second-about-content {
        min-height: 250px;
    }

    .second-about-item {
        width: 200px;
        height: 160px;
        padding: 12px;
    }

    .second-about-item p {
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }

    .second-text-block {
        padding: 30px 0;
    }

    .second-text-block .second-section-header {
        margin-bottom: 20px;
    }

    .second-text-tabs-nav {
        gap: 0;
    }

    .second-text-tab-btn {
        padding: 12px 14px;
        font-size: 12px;
    }

    .second-text-tab-pane {
        padding: 20px 18px;
        min-height: 150px;
    }

    .second-text-tab-pane p {
        font-size: 13px;
        line-height: 1.7;
    }

    section {
        padding: 50px 0;
    }

    .second-hero-title {
        font-size: 30px;
    }

    .second-section-title {
        font-size: 28px;
    }

    .second-services-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .second-capability-item {
        padding: 30px 22px;
    }

    .second-capability-value {
        font-size: 42px;
    }

    .second-capability-label {
        font-size: 15px;
    }

    .second-capability-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .second-capability-item p {
        font-size: 13px;
    }

}

/* Footer */
.second-footer {
    background: linear-gradient(180deg, rgba(18, 37, 56, 0.95) 0%, rgba(10, 22, 34, 0.98) 100%);
    color: #fff;
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.second-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F6851D 30%, #F6851D 70%, transparent);
    box-shadow: 0 0 20px rgba(246, 133, 29, 0.5);
}

.second-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(246, 133, 29, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(246, 133, 29, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.second-footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 45px;
    position: relative;
    z-index: 1;
}

.second-footer-section {
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.second-footer-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 45px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.second-footer-title::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #F6851D, transparent);
    border-radius: 3px;
    opacity: 0.6;
}

.second-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #F6851D, #F6851D, transparent);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(246, 133, 29, 0.6);
}

.second-footer-contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.second-footer-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 25px 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.second-footer-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 133, 29, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.second-footer-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #F6851D 0%, rgba(246, 133, 29, 0.6) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 10px rgba(246, 133, 29, 0.8);
}

.second-footer-link:hover::before {
    width: 300px;
    height: 300px;
}

.second-footer-link:hover::after {
    transform: scaleY(1);
}

.second-footer-link:hover {
    color: #fff;
    background: linear-gradient(145deg, rgba(246, 133, 29, 0.25) 0%, rgba(246, 133, 29, 0.15) 100%);
    border-color: #F6851D;
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(246, 133, 29, 0.5),
        0 0 30px rgba(246, 133, 29, 0.3),
        inset 0 0 20px rgba(246, 133, 29, 0.1);
}

.second-footer-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(246, 133, 29, 0.35) 0%, rgba(246, 133, 29, 0.2) 100%);
    border: 2px solid rgba(246, 133, 29, 0.5);
    border-radius: 14px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(246, 133, 29, 0.3);
}

.second-footer-link:hover .second-footer-icon {
    background: linear-gradient(145deg, #F6851D 0%, rgba(246, 133, 29, 0.85) 100%);
    border-color: #F6851D;
    transform: scale(1.2) rotate(8deg);
    box-shadow:
        0 8px 25px rgba(246, 133, 29, 0.6),
        0 0 20px rgba(246, 133, 29, 0.4);
}

/* WhatsApp Icon */
.second-footer-link-whatsapp .second-footer-icon::before {
    content: '';
    width: 22px;
    height: 22px;
    border: 2.5px solid #fff;
    border-radius: 50%;
    position: absolute;
    box-sizing: border-box;
}

.second-footer-link-whatsapp .second-footer-icon::after {
    content: '';
    width: 11px;
    height: 2.5px;
    background: #fff;
    position: absolute;
    bottom: 8px;
    right: 8px;
    transform: rotate(45deg);
    border-radius: 1px;
}

/* Email Icon */
.second-footer-link-email .second-footer-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 14px solid #fff;
    position: absolute;
    top: 7px;
}

.second-footer-link-email .second-footer-icon::after {
    content: '';
    width: 18px;
    height: 13px;
    border: 2.5px solid #fff;
    border-top: none;
    position: absolute;
    top: 13px;
    box-sizing: border-box;
    border-radius: 0 0 3px 3px;
}

/* Phone Icon */
.second-footer-link-phone .second-footer-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2.5px solid #fff;
    border-radius: 5px;
    position: absolute;
    box-sizing: border-box;
}

.second-footer-link-phone .second-footer-icon::after {
    content: '';
    width: 9px;
    height: 9px;
    border: 2.5px solid #fff;
    border-top: none;
    border-left: none;
    position: absolute;
    top: 2px;
    right: 2px;
    border-radius: 0 0 5px 0;
    box-sizing: border-box;
}

.second-footer-text {
    flex: 1;
    text-align: left;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .second-footer {
        padding: 70px 0 50px;
    }

    .second-footer-content {
        gap: 35px;
    }

    .second-footer-title {
        font-size: 26px;
        margin-bottom: 35px;
        letter-spacing: 2px;
        padding-bottom: 20px;
    }

    .second-footer-title::before {
        width: 70px;
        height: 3px;
        top: -12px;
    }

    .second-footer-title::after {
        width: 90px;
        height: 4px;
    }

    .second-footer-contacts {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 35px;
    }

    .second-footer-link {
        font-size: 16px;
        padding: 20px 25px;
        gap: 18px;
    }

    .second-footer-link:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .second-footer-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 12px;
    }

    .second-footer-link:hover .second-footer-icon {
        transform: scale(1.15) rotate(6deg);
    }

    .second-footer-text {
        font-size: 15px;
    }
}