
body { font-family: 'Inter', sans-serif; }
.gradient-text {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-bg {
    background: linear-gradient(to bottom right, #f0fdf4, #fff);
}
/* Step Connector Styles */
.step-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    transform: translateY(-50%);
    z-index: -1;
}
@media (max-width: 768px) {
    .step-connector::after {
        display: none;
    }
}
/* Feature Bubble Connector Styles */
.feature-bubble-left::after, .feature-bubble-right::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #e5e7eb;
    transform: translateY(-50%);
    z-index: 0;
}
.feature-bubble-left::after {
    left: 100%;
}
.feature-bubble-right::after {
    right: 100%;
}
/* Mobil (768px altı) cihazlarda çizgileri gizle */
@media (max-width: 768px) {
    .feature-bubble-left::after, .feature-bubble-right::after {
        display: none;
    }
}

section {scroll-margin-top: 40px;}