/* Timeline Diagram */
.timeline-diagram {
    position: relative;
    width: 100%;
    height: 700px;
    margin: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.center-circle {
    width: 180px;
    height: 180px;
    background: var(--gradient-dark);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.2);
    animation: centerPulse 4s ease-in-out infinite;
}

.center-content {
    text-align: center;
    color: var(--text-primary);
}

.center-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    color: var(--accent-color);
}

.center-icon svg {
    width: 100%;
    height: 100%;
}

.center-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Timeline Steps */
.timeline-step {
    position: absolute;
    width: 280px;
    opacity: 0;
    transform: scale(0.8);
    animation: stepFadeIn 1s ease forwards;
    z-index: 3;
}

.timeline-step.step-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0.5s;
}

.timeline-step.step-2 {
    top: 20px;
    right: 20px;
    animation-delay: 0.8s;
}

.timeline-step.step-3 {
    bottom: 20px;
    right: 20px;
    animation-delay: 1.1s;
}

.timeline-step.step-4 {
    bottom: 20px;
    left: 20px;
    animation-delay: 1.4s;
}

.step-circle {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 4;
}

.step-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-bg);
}

.step-content {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.step-content:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 6;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.detail-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.step-content:hover .detail-item {
    color: var(--text-primary);
}

/* Timeline Connections */
.timeline-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    stroke-dasharray: 5, 5;
    animation: dashMove 2s linear infinite;
    opacity: 0.3;
}

.connection-dot {
    filter: drop-shadow(0 0 10px #00ff88);
    opacity: 0.7;
}

/* Timeline Stats */
.timeline-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 2s forwards;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Animations */
@keyframes centerPulse {
    0%, 100% {
        box-shadow: 0 0 50px rgba(0, 255, 136, 0.2);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 0 80px rgba(0, 255, 136, 0.4);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes stepFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes dashMove {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 20;
    }
}

/* Interactive Hover Effects */
.timeline-step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.6);
}

.timeline-step:hover .step-number {
    animation: numberBounce 0.6s ease;
}

@keyframes numberBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Connection Line Activation */
.timeline-step:hover ~ .timeline-connections .connection-line,
.timeline-step:hover + .timeline-connections .connection-line {
    opacity: 1;
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { 
        opacity: 0.3; 
        filter: drop-shadow(0 0 5px #00ff88);
    }
    50% { 
        opacity: 1; 
        filter: drop-shadow(0 0 15px #00ff88);
    }
}

/* Responsive Design for Timeline */
@media (max-width: 1024px) {
    .timeline-diagram {
        height: 500px;
    }
    
    .center-circle {
        width: 150px;
        height: 150px;
    }
    
    .center-icon {
        width: 40px;
        height: 40px;
    }
    
    .timeline-step {
        width: 250px;
    }
    
    .timeline-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        /* padding: 80px 0; */
    }
    
    .timeline-diagram {
        height: auto;
        flex-direction: column;
        gap: 2rem;
        position: static;
    }
    
    .timeline-center {
        position: static;
        transform: none;
        margin-bottom: 2rem;
    }
    
    .center-circle {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .timeline-step {
        position: static;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        opacity: 1;
        transform: scale(1);
    }
    
    .timeline-connections {
        display: none;
    }
    
    .timeline-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .timeline-container {
        padding: 0 1rem;
    }
    
    .step-content {
        padding: 1.25rem;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        font-size: 1.2rem;
    }
    
    .center-circle {
        width: 100px;
        height: 100px;
    }
    
    .center-text {
        font-size: 0.875rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .laptop-mockup {
        width: 350px;
        height: 220px;
    }
}

/* Tablet Navigation */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .phone {
        display: none;
    }
}

/* Dropdown Mobile Responsiveness */
@media (max-width: 1024px) {
    .dropdown-menu {
        min-width: 500px;
    }
    
    .dropdown-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .dropdown-section:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        width: 100%;
        margin-top: 0;
        border-radius: 12px;
        padding: 1rem;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dropdown-section:last-child {
        grid-column: span 1;
    }
    
    .dropdown-link {
        padding: 0.75rem;
        font-size: 1rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        display: flex !important;
        flex-direction: column;
        padding: 0 1rem;
        position: relative;
        gap: 0.75rem;
    }
    
    .nav-left {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .nav-center {
        display: flex !important;
        justify-content: center;
        width: 100%;
    }
    
    .nav-center .phone-numbers {
        display: flex !important;
        flex-direction: column;
        gap: 0.75rem;
        justify-content: center;
        align-items: center;
    }
    
    .nav-right {
        display: none !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
    }
    
    /* Mobile Dropdown Styles */
    .mobile-dropdown {
        margin: 0.5rem 0;
    }
    
    .mobile-dropdown-toggle {
        width: 100%;
        background: none;
        border: none;
        color: var(--text-secondary);
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 8px;
    }
    
    .mobile-dropdown-toggle:hover {
        color: var(--text-primary);
        background: rgba(0, 255, 136, 0.1);
    }
    
    .mobile-dropdown-icon {
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }
    
    .mobile-dropdown.active .mobile-dropdown-icon {
        transform: rotate(180deg);
    }
    
    .mobile-dropdown-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        margin-top: 0.5rem;
    }
    
    .mobile-dropdown.active .mobile-dropdown-content {
        max-height: 800px;
    }
    
    .mobile-dropdown-section {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-dropdown-section:last-child {
        border-bottom: none;
    }
    
    .mobile-section-title {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--accent-color);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.75rem;
    }
    
    .mobile-dropdown-link {
        display: block;
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.95rem;
        padding: 0.5rem 0;
        transition: all 0.3s ease;
        border-left: 2px solid transparent;
        padding-left: 0.75rem;
    }
    
    .mobile-dropdown-link:hover {
        color: var(--text-primary);
        border-left-color: var(--accent-color);
        padding-left: 1rem;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .phone-numbers {
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }
    
    .nav-center .phone-numbers .phone-link {
        padding: 0.8rem 1rem;
        font-size: 1.3rem;
        font-weight: 800;
        background: rgba(0, 255, 136, 0.15);
        border: 1px solid rgba(0, 255, 136, 0.3);
        border-radius: 10px;
    }
    
    .nav-center .phone-numbers .phone-text {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--text-primary);
    }
    
    .nav-center .phone-numbers .phone-icon {
        font-size: 1.3rem;
        color: var(--accent-green);
    }
    
    .hero {
        padding-top: 180px;
        min-height: 100vh;
    }
    
    .hero-container {
        padding: 0 1rem;
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem !important;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .laptop-mockup {
        width: 280px !important;
        height: 175px !important;
        margin: 0 auto 1.5rem;
    }
    
    .stats-cards {
        flex-direction: column !important;
        gap: 1rem;
        margin: 2rem auto 0;
        max-width: 400px;
    }
    
    .stat-card {
        padding: 1rem;
        min-width: auto !important;
        flex: none !important;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-title {
        font-size: 0.95rem;
    }
    
    .stat-desc {
        font-size: 0.85rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }
    
    .nav-logo {
        font-size: 1.25rem;
    }
    
    .mobile-menu {
        max-width: 100%;
    }
    
    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .mobile-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .phone-numbers {
        gap: 0.5rem;
    }
    
    .phone-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .phone-text {
        font-size: 0.85rem;
    }
    
    .phone-icon {
        font-size: 0.85rem;
    }
    
    .hero {
        /* padding-top: 15px; */
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 260px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .laptop-mockup {
        width: 250px !important;
        height: 155px !important;
    }
    
    .stats-cards {
        max-width: 350px !important;
    }
    
    .stat-card {
        padding: 0.875rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-title {
        font-size: 0.9rem;
    }
    
    .stat-desc {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .laptop-mockup {
        width: 250px;
        height: 150px;
    }
    
    .code-lines span {
        font-size: 1.2rem;
    }
}

/* Approach Section */
.approach-section {
    padding: 30px 0;
    background: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    z-index: -1;
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-title .title-line {
    display: block;
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    margin-top: 4rem;
}

.process-card {
    position: relative;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.process-card:nth-child(1) { animation: fadeInUp 0.8s ease 0.4s forwards; }
.process-card:nth-child(2) { animation: fadeInUp 0.8s ease 0.6s forwards; }
.process-card:nth-child(3) { animation: fadeInUp 0.8s ease 0.8s forwards; }
.process-card:nth-child(4) { animation: fadeInUp 0.8s ease 1.0s forwards; }
.process-card:nth-child(5) { animation: fadeInUp 0.8s ease 1.2s forwards; }

.process-card.large-card {
    grid-column: span 2;
    grid-row: span 1;
}

.process-card.cta-card {
    background: var(--gradient-dark);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 20px;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover .card-glow {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 255, 136, 0.1);
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-content a {
    text-decoration: none;
}

.card-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.process-card:hover .icon-wrapper {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    transform: scale(1.1);
}

.process-card:hover .icon-wrapper svg {
    transform: scale(1.1);
}

.card-step {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: auto;
    font-size: 0.95rem;
}

.card-features {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-bg);
    flex-shrink: 0;
}

.card-arrow {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.card-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.process-card:hover .card-arrow {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translate(5px, -5px);
    opacity: 1;
}

.process-card:hover .card-arrow svg {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* CTA Card Specific Styles */
.cta-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cta-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2rem;
    flex: 1;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: var(--primary-bg);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: var(--shadow-glow);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.6);
}

.cta-btn:hover svg {
    transform: translateX(3px);
}

/* Step Numbers */
.process-card::before {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    left: 2rem;
    background: var(--gradient-primary);
    color: var(--primary-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
    z-index: 3;
}

.process-card.cta-card::before {
    display: none;
}

/* Responsive Design for Approach Section */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .process-card.large-card {
        grid-column: span 2;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .approach-section {
        /* padding: 80px 0; */
    }
    
    .approach-container {
        padding: 0 1rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-card.large-card {
        grid-column: span 1;
    }
    
    .process-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .card-title {
        font-size: 1.125rem;
    }
    
    .cta-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .process-card {
        padding: 1.25rem;
    }
    
    .card-arrow {
        top: 1.25rem;
        right: 1.25rem;
        width: 35px;
        height: 35px;
    }
    
    .process-card::before {
        left: 1.25rem;
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .icon-wrapper svg {
        width: 24px;
        height: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInCode {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes particlesFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --accent-color: #00ff88;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    --shadow-glow: 0 0 30px rgba(0, 255, 136, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 0.5fr 1fr 0.5fr;
    align-items: center;
    gap: 1rem;
}

.nav-left {
    justify-self: start;
}

.nav-center {
    justify-self: center;
}

.nav-center .phone-numbers {
    display: none;
}

.nav-right {
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}


.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 2.2rem;
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent-color);
    font-weight: 900;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 2rem 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 255, 136, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dropdown-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.dropdown-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-link:hover::before {
    left: 100%;
}

.dropdown-link:hover {
    color: var(--text-primary);
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(5px);
}

.dropdown-link:hover {
    background: rgba(0, 255, 136, 0.15);
    border-left: 3px solid var(--accent-color);
    padding-left: 0.75rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    font-weight: 600;
}

.lang-active {
    color: var(--accent-color);
}

.lang-inactive {
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-inactive:hover {
    color: var(--text-secondary);
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: flex-end;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    font-size: 1.1rem;
}

.phone-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.phone-link:hover::before {
    left: 100%;
}

.phone-link:hover {
    color: var(--text-primary);
    background: rgba(0, 255, 136, 0.25);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.phone-icon {
    font-size: 1.1rem;
    color: var(--accent-green);
    animation: phoneRing 2s ease-in-out infinite;
}

.phone-link:hover .phone-icon {
    animation: phoneRingFast 0.5s ease-in-out infinite;
}

.phone-text {
    font-size: 1.1rem;
    font-weight: 700;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

@keyframes phoneRingFast {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-5deg) scale(1.1); }
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(0, 255, 136, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-form-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.benefit-icon {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.phone-input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phone-input-wrapper:focus-within {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.1);
}

.country-code {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 255, 136, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.code-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.phone-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.phone-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-green) 0%, #00cc6a 100%);
    border: none;
    border-radius: 12px;
    padding: 1.25rem 2rem;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.btn-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.privacy-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.5;
}

.privacy-link {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #00cc6a;
    text-decoration: underline;
}

/* Contact Form Responsive */
@media (max-width: 1024px) {
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-form-title {
        font-size: 2.2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 20px 0;
    }
    
    .contact-form-container {
        padding: 0 1rem;
    }
    
    .contact-form-title {
        font-size: 1.8rem;
    }
    
    .contact-form-description {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .phone-input-wrapper {
        flex-direction: column;
    }
    
    .country-code {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
    }
}

.cta-button {
    background: var(--gradient-primary);
    color: var(--primary-bg);
    border: none;
    padding: 0.75rem 3.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.cta-button.nav-cta {
    background: linear-gradient(135deg, var(--accent-color), #00cc6a);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 12px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    z-index: 1001;
    position: relative;
    width: auto;
    min-width: 60px;
    height: 48px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    transform: scale(1.05);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 2rem;
    padding: 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--accent-color);
}

.mobile-nav {
    padding: 2rem 0;
}

.mobile-nav-link {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    color: var(--accent-color);
    background: rgba(0, 255, 136, 0.1);
    padding-left: 2.5rem;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover::before {
    width: 4px;
}

.mobile-menu-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-language-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mobile-lang-active {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.mobile-lang-inactive {
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.mobile-lang-inactive:hover {
    color: var(--text-secondary);
}

.mobile-phones {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-phone-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    transition: left 0.6s ease;
}

.mobile-phone-link:hover::before {
    left: 100%;
}

.mobile-phone-link:hover {
    color: var(--accent-color);
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.mobile-cta-button {
    background: var(--gradient-primary);
    color: var(--primary-bg);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    width: 100%;
    max-width: 280px;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 240px;
    /* margin-top: 100px; */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 136, 0.08) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 255, 136, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.05), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 255, 136, 0.1), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particlesFloat 15s linear infinite;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease 0.5s forwards;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

.title-line:first-child {
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.7s forwards;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-bg);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease 0.8s forwards;
}

.laptop-mockup {
    position: relative;
    width: 400px;
    height: 250px;
    background: var(--gradient-dark);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-card);
    margin: 0 auto 2rem;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.screen-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    justify-content: center;
}

.code-lines span {
    display: block;
    color: var(--accent-color);
    font-family: 'Monaco', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-20px);
}

.code-lines span:nth-child(1) { animation: slideInCode 0.8s ease 2s forwards; }
.code-lines span:nth-child(2) { animation: slideInCode 0.8s ease 2.3s forwards; }
.code-lines span:nth-child(3) { animation: slideInCode 0.8s ease 2.6s forwards; }

.stats-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat-card:nth-child(1) { animation: fadeInUp 0.8s ease 2.2s forwards; }
.stat-card:nth-child(2) { animation: fadeInUp 0.8s ease 2.5s forwards; }

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}


.stat-plus {
    color: var(--accent-color);
}

.stat-label {
    flex: 1;
}

.stat-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Hero Section Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        max-width: 1200px;
        gap: 3rem;
        padding: 1.5rem 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .laptop-mockup {
        width: 350px;
        height: 220px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1.5rem;
        margin-top: 50px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    .laptop-mockup {
        width: 320px;
        height: 200px;
        margin: 0 auto 1.5rem;
    }
    
    .stats-cards {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .stat-card {
        flex: 1;
        min-width: 280px;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 30px 0;
    background: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.06) 0%, transparent 50%);
    z-index: -1;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Portfolio Filter */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--primary-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    /* margin-bottom: 4rem; */
}

.portfolio-item {
    opacity: 0;
    transform: translateY(40px);
    animation: portfolioFadeIn 0.8s ease forwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }

.project-card {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 255, 136, 0.1);
}

/* Project Image */
.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.project-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.preview-mockup {
    width: 100%;
    max-width: 280px;
    height: 200px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.4s ease;
}

.project-card:hover .preview-mockup {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.screen-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-header {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    color: white;
}

.header-logo {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.header-nav {
    display: flex;
    gap: 0.5rem;
}

.header-nav span {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1px;
}

.content-body {
    flex: 1;
    padding: 1rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.content-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2d3436;
    line-height: 1.2;
}

.content-subtitle {
    font-size: 0.8rem;
    color: #636e72;
    margin-bottom: 0.5rem;
}

.content-stats {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.stat-item {
    text-align: center;
}

.content-features {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.feature-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.feature-line {
    height: 4px;
    flex: 1;
    border-radius: 2px;
    margin: 0.25rem 0;
}

.content-image {
    margin-top: auto;
}

.image-placeholder {
    width: 100%;
    height: 60px;
    border-radius: 8px;
}

.content-products {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.product-card {
    width: 50px;
    height: 40px;
    border-radius: 6px;
}

.content-chart {
    display: flex;
    align-items: end;
    gap: 0.25rem;
    margin-top: auto;
    height: 40px;
}

.chart-bar {
    width: 12px;
    border-radius: 2px 2px 0 0;
}

/* Project Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.project-card:hover .overlay-content {
    transform: translateY(0);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.view-project-btn {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.view-project-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.6);
}

.view-project-btn svg {
    width: 24px;
    height: 24px;
    color: var(--primary-bg);
}

/* Project Info */
.project-info {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-meta {
    flex: 1;
}

.project-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.project-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.project-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.project-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.project-card:hover .project-arrow {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translate(3px, -3px);
    opacity: 1;
}

.project-card:hover .project-arrow svg {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Portfolio Footer */
.portfolio-footer {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.load-more-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--primary-bg);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
}

.load-more-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
    transform: rotate(90deg);
}

/* Animations */
@keyframes portfolioFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Portfolio */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }
    
    .project-image {
        height: 240px;
    }
    
    .preview-mockup {
        max-width: 240px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        /* padding: 80px 0; */
    }
    
    .portfolio-container {
        padding: 0 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .portfolio-filter {
        gap: 0.5rem;
        margin: 2rem 0 3rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .preview-mockup {
        max-width: 200px;
        height: 140px;
    }
    
    .project-info {
        padding: 1.25rem;
    }
    
    .project-title {
        font-size: 1rem;
    }
    
    .project-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .project-image {
        height: 180px;
    }
    
    .preview-mockup {
        max-width: 180px;
        height: 120px;
    }
    
    .project-info {
        padding: 1rem;
    }
    
    .project-arrow {
        width: 35px;
        height: 35px;
    }
    
    .project-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .view-project-btn {
        width: 50px;
        height: 50px;
    }
    
    .view-project-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Browser Mockup Styles */
.browser-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e1e5e9;
}

.browser-header {
    display: flex;
    align-items: center;
    height: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    padding: 0 16px;
    position: relative;
}

.browser-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.browser-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.btn-close {
    background: #ff5f57;
}

.btn-minimize {
    background: #ffbd2e;
}

.btn-maximize {
    background: #28ca42;
}

.browser-address {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    color: #6c757d;
    min-width: 120px;
    text-align: center;
}

.browser-content {
    width: 100%;
    height: calc(100% - 40px);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #f8f9fa;
}

/* Project-specific backgrounds */
.portfolio-item:nth-child(1) .browser-content {
    background-image: url('../photos/pochta.png');
}

.portfolio-item:nth-child(2) .browser-content {
    background-image: url('../photos/unisavdo.png');
}

/* Floating Elements Styles */
.floating-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-ring {
    position: absolute;
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    animation: floatRing 15s ease-in-out infinite;
}

.floating-ring:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-ring:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

.floating-ring:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 5%;
    animation-delay: 10s;
}

.stat-card {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    max-width: 280px;
    pointer-events: auto;
    animation: floatCard 8s ease-in-out infinite;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-plus {
    color: #ffffff;
    font-size: 2rem;
}

.stat-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.stat-desc {
    color: #a0a0a0;
    font-size: 0.875rem;
    line-height: 1.4;
}

@keyframes floatRing {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    /* margin: 3rem 0; */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Card Base Styles */
.pricing-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    height: auto;
    min-height: 400px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #0a0a0a;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.business-card {
    border-color: rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

.business-card::before {
    opacity: 0.3;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #00ff88;
}

.badge-icon {
    font-size: 1rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.pricing-subtitle {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Pricing Price */
.pricing-price {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1rem;
    color: #a0a0a0;
    font-weight: 500;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ff88;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-period {
    color: #a0a0a0;
    font-size: 0.875rem;
}

/* Pricing Features */
.pricing-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0a0a0a;
    flex-shrink: 0;
}

.feature-item span {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
}

.pricing-footer a {
    text-decoration: none;
}

.pricing-btn {
    width: 100%;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

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

.pricing-btn:hover::before {
    left: 100%;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #333333;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.pricing-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.pricing-note {
    color: #a0a0a0;
    font-size: 0.875rem;
}

/* Card Specific Styles */
.starter-card .pricing-btn {
    background: #000000;
}

.enterprise-card .pricing-btn {
    background: #000000;
}

/* Additional Info Section */
.pricing-additional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.additional-card {
    text-align: center;
    padding: 2rem;
    background: rgba(17, 17, 17, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.2);
    background: rgba(17, 17, 17, 0.8);
}

.additional-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.additional-card h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.additional-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-section {
        /* padding: 80px 0; */
    }
    
    .pricing-container {
        padding: 0 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        /* margin: 3rem 0; */
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .business-card {
        transform: none;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-additional {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .additional-card {
        padding: 1.5rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

/* Testimonial Card Base */
.testimonial-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.1);
}

/* Featured Card */
.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(17, 17, 17, 0.9) 50%);
    border-color: rgba(0, 255, 136, 0.15);
}

.testimonial-card.featured::before {
    opacity: 0.3;
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.client-avatar {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 255, 136, 0.3);
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ff88, transparent, #00ff88) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.client-position {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #ffd700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(0, 255, 136, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: serif;
}

.testimonial-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card.featured .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Testimonial Stats (for featured card) */
.testimonial-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #00ff88;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #a0a0a0;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.trust-item {
    text-align: center;
    padding: 1rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ff88;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.trust-label {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.trust-stars {
    color: #ffd700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .client-avatar {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-card.featured .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 20%, rgba(0, 255, 136, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 60% 80%, rgba(0, 255, 136, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-buttons a {
    text-decoration: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

/* FAQ Item */
.faq-item {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
}

.faq-item.active {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(17, 17, 17, 0.95);
}

/* FAQ Question */
.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

/* FAQ Icon */
.faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon .plus,
.faq-icon .minus {
    position: absolute;
    font-size: 1.25rem;
    font-weight: 300;
    color: #00ff88;
    transition: all 0.3s ease;
}

.faq-icon .minus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon {
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
    transform: rotate(180deg);
}

.faq-item.active .faq-icon .plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon .minus {
    opacity: 1;
    transform: rotate(0deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer-content {
    padding: 2rem;
}

.faq-answer p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-answer li {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.faq-answer li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: 600;
}

.faq-answer strong {
    color: #00ff88;
    font-weight: 600;
}

/* FAQ Contact */
.faq-contact {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.contact-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-content p {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50px;
    color: #00ff88;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
}

.contact-btn.telegram:hover {
    background: rgba(0, 136, 204, 0.2);
    border-color: rgba(0, 136, 204, 0.4);
    color: #0088cc;
}

.contact-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.4);
    color: #25d366;
}

.contact-btn.email:hover {
    background: rgba(234, 67, 53, 0.2);
    border-color: rgba(234, 67, 53, 0.4);
    color: #ea4335;
}

.btn-icon {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        /* padding: 80px 0; */
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 3rem 0;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 1.5rem;
    }
    
    .faq-contact {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .contact-content h3 {
        font-size: 1.25rem;
    }
    
    .contact-content p {
        font-size: 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
a
/* ===== CONTACTS SECTION ===== */
.contacts-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.contacts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(0, 255, 136, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contacts-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 4rem;
    padding: 1.5rem 0;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
    transform: scale(1.05);
}

.contact-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    font-weight: 500;
    color: #00ff88;
    margin-bottom: 0.25rem;
}

.contact-details span {
    font-size: 0.875rem;
    color: #a0a0a0;
}

/* Social Links */
.social-links {
    margin-top: 1rem;
}

.social-links h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.social-btn:hover {
    transform: translateX(4px);
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
}

.social-btn.telegram:hover {
    border-color: rgba(0, 136, 204, 0.4);
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.social-btn.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.social-btn.instagram:hover {
    border-color: rgba(225, 48, 108, 0.4);
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.form-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 136, 0.4);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.submit-btn {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    border: none;
    border-radius: 12px;
    color: #000000;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contacts-section {
        /* padding: 80px 0; */
    }
    
    .contacts-container {
        padding: 0 1rem;
    }
    
    .contacts-content {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .submit-btn {
        grid-column: span 1;
    }
    
    .social-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .social-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Main Footer Content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Company Info */
.company-info {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.company-description {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.company-stats {
    display: flex;
    gap: 1.5rem;
}

.company-stats .stat-item {
    text-align: center;
}

.company-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.company-stats .stat-label {
    font-size: 0.8rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Titles */
.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Contact Column */
.contact-column {
    gap: 2rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
    transform: scale(1.05);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-details a,
.contact-details span {
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #00ff88;
}

/* Footer Social */
.footer-social {
    margin-top: 1rem;
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 136, 0.3);
}

.social-link.telegram:hover {
    border-color: rgba(0, 136, 204, 0.4);
    color: #0088cc;
}

.social-link.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.4);
    color: #25d366;
}

.social-link.instagram:hover {
    border-color: rgba(225, 48, 108, 0.4);
    color: #e1306c;
}

.social-link.linkedin:hover {
    border-color: rgba(0, 119, 181, 0.4);
    color: #0077b5;
}

/* Newsletter */
.footer-newsletter {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.newsletter-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.newsletter-info p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(0, 255, 136, 0.4);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.newsletter-form input::placeholder {
    color: #666666;
}

.newsletter-form button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    border: none;
    border-radius: 12px;
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.copyright p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00ff88;
}

.footer-badge span {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        min-width: 350px;
    }
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .company-info {
        grid-column: span 2;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .newsletter-form {
        min-width: auto;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }
    
    .company-info {
        grid-column: span 1;
        margin-bottom: 1rem;
    }
    
    .company-stats {
        justify-content: space-between;
    }
    
    .footer-contact-info {
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* ===== GLOBAL RESPONSIVE TUNING (ALL SECTIONS) ===== */
.approach-container,
.timeline-container,
.contact-form-container,
.portfolio-container,
.pricing-container,
.testimonials-container,
.faq-container,
.contacts-container,
.footer-container,
.nav-container {
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
}

.hero-title {
    font-size: clamp(2rem, 5.2vw, 4.5rem);
}

.section-title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
}

.hero-description,
.section-description {
    font-size: clamp(0.95rem, 1.6vw, 1.125rem);
}

@media (max-width: 1200px) {
    .hero {
        min-height: auto;
    }

    .hero-container {
        gap: 2rem;
    }

    .process-grid,
    .portfolio-grid,
    .pricing-grid,
    .testimonials-grid,
    .faq-grid,
    .contacts-content,
    .contact-form-content {
        gap: 1.25rem;
    }

    .portfolio-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-container,
    .contact-form-content,
    .contacts-content,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .portfolio-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
    }

    .filter-btn {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 96px;
        padding-bottom: 56px;
    }

    .section-header {
        margin-bottom: 2.25rem;
    }

    .process-grid,
    .portfolio-grid,
    .pricing-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item,
    .pricing-card,
    .testimonial-card,
    .faq-item,
    .contact-card,
    .process-card {
        padding: 1.2rem;
    }

    .hero-buttons,
    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary,
    .pricing-btn,
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .hero-title,
    .section-title {
        line-height: 1.15;
    }

    .portfolio-filter {
        margin: 0 -0.25rem;
        padding: 0 0.25rem 0.5rem;
    }

    .contact-form-wrapper {
        padding: 1rem;
    }

    .footer-bottom-links {
        gap: 0.75rem;
    }
}

@media (max-width: 380px) {
    .section-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .card-title,
    .pricing-title,
    .contact-details h3 {
        font-size: 1rem;
    }

    .hero-buttons,
    .contact-buttons {
        gap: 0.6rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        font-size: 0.9rem;
    }
}

/* ===== NAVBAR + FOOTER FINAL ADAPTIVE FIXES ===== */
@media (max-width: 1024px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar .nav-container {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .navbar .nav-left {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .navbar .nav-center,
    .navbar .nav-right {
        display: none !important;
    }

    .navbar .mobile-menu-toggle {
        display: flex !important;
        width: 48px;
        min-width: 48px;
        height: 44px;
        padding: 10px;
    }

    .navbar .nav-logo {
        font-size: 1.6rem;
        line-height: 1;
    }

    .mobile-menu {
        width: min(92vw, 380px);
    }

    .mobile-menu-header {
        padding: 1rem 1rem 0.75rem;
    }

    .mobile-nav {
        padding: 1rem 0;
    }

    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.9rem 1rem;
    }

    .mobile-dropdown-toggle {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    .mobile-menu-footer {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar .nav-logo {
        font-size: 1.35rem;
    }

    .navbar .mobile-menu-toggle {
        width: 44px;
        min-width: 44px;
        height: 40px;
        padding: 8px;
    }

    .navbar .hamburger-line {
        width: 20px;
        height: 2px;
    }

    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }

    .mobile-dropdown-link {
        font-size: 0.9rem;
        padding: 0.45rem 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2.5rem 0;
    }

    .footer-column,
    .company-info,
    .contact-column {
        min-width: 0;
        width: 100%;
        padding-right: 0;
        margin-bottom: 0;
    }

    .company-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .company-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .footer-title {
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.55rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        word-break: break-word;
    }

    .footer-section .contact-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 0.75rem;
    }

    .footer-section .contact-icon {
        width: 36px;
        height: 36px;
    }

    .newsletter-content {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        gap: 1.25rem;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: none;
        min-width: 0;
        gap: 0.75rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.75rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .navbar .nav-container,
    .footer-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .navbar .nav-logo {
        font-size: 1.2rem;
    }

    .mobile-menu-header {
        padding: 0.85rem 0.75rem 0.65rem;
    }

    .mobile-logo {
        font-size: 1.2rem;
    }

    .mobile-nav-link {
        font-size: 0.95rem;
        padding: 0.8rem 0.75rem;
    }

    .mobile-dropdown-section {
        padding: 0.75rem;
    }

    .footer-main {
        padding: 2rem 0;
        gap: 1.25rem;
    }

    .company-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-newsletter {
        padding: 2rem 0;
    }

    .newsletter-info h3 {
        font-size: 1.2rem;
    }

    .newsletter-info p,
    .copyright p,
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .navbar .nav-logo {
        font-size: 1.05rem;
    }

    .navbar .mobile-menu-toggle {
        width: 40px;
        min-width: 40px;
        height: 36px;
    }

    .navbar .hamburger-line {
        width: 18px;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-links a,
    .contact-details a,
    .contact-details span {
        font-size: 0.85rem;
    }
}